{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/PVkyUh0ZHlKsxLKSc9Et/SlideShow.js", "ssg:https://framerusercontent.com/modules/kbKFKixxB0ZyheXjb1Fi/AGKJjNP8Oc2nxtojQgva/stylesPresetLink.js", "ssg:https://framerusercontent.com/modules/6fDTbx6LrNo58lIrt4AR/W3KyoAeGYlJRw2mOWFUF/KgCS0AqCE.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{wrap}from\"popmotion\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";/**\n *\n * SLIDESHOW\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Slideshow(props){/**\n     * Properties\n     */ const{slots,startFrom,direction,effectsOptions,autoPlayControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const hasChildren=Children.count(slots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return slots.map(index=>/*#__PURE__*/ createRef());},[slots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null});/* For pausing on hover */ const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* Check if resizing */ const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */ const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */ const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const total=slots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight});}},[hasChildren]);/**\n     * Add refs to all children\n     */ useLayoutEffect(()=>{if(!hasChildren)return;measure();},[hasChildren]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */ let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),intervalControl*1e3);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */ const totalItems=slots===null||slots===void 0?void 0:slots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);/* Check for browser window visibility */ /* Otherwise, it will re-play all the item increments */ const isVisible=usePageVisibility();const factor=isInverted?1:-1;/* The x and y values to start from */ const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */ const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */ const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping */ /* Instead of 0 to a negative full duplicated row, we start with an offset */ const wrappedValue=!isCanvas?useTransform(xOrY,value=>wrap(-childrenSize,-childrenSize*2,value)):0;/* Convert the current item to a wrapping index for dots */ const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point */ /* The subtraction of a full row of children is for overflow */ useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */ if(initialResize.current){xOrY.set((childrenSize+itemOffset)*factor);}/* Subsequent resizes */ if(!initialResize.current&&isResizing){xOrY.set(factor*currentItem*itemWithGap);}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing,]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     */ /* Next and previous function, animates the X */ const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent)return;const controls=animate(xOrY,newPosition(),transitionControl);if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */ const setDelta=delta=>()=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);setCurrentItem(setDelta(isInverted?gotoInverted:goto));};/* Kickstart the auto-playing once we have all the children */ useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */ let childCounter=0;/**\n     * Sizing\n     * */ let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */ for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(slots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===slots.length-1){ref=childrenRef[1];}return /*#__PURE__*/ _jsx(Slide,{ref:childrenRef[childIndex],width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:slots===null||slots===void 0?void 0:slots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */ const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */ const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(slots===null||slots===void 0?void 0:slots.length);i++){dots.push(/*#__PURE__*/ _jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/ _jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:0},onMouseEnter:()=>!effectsHover&&setShouldPlayOnHover(false),onMouseLeave:()=>!effectsHover&&setShouldPlayOnHover(true),children:[/*#__PURE__*/ _jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:0,position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",perspective:effectsPerspective},children:/*#__PURE__*/ _jsx(motion.ul,{ref:parentRef,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&\"preserve-3d\",...style},children:dupedChildren})}),/*#__PURE__*/ _jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\"},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/ _jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/ _jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})}),dots.length>1?/*#__PURE__*/ _jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]})]});};/* Default Properties */ Slideshow.defaultProps={direction:\"left\",startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */ addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */ const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */ const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */ const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */ const Slide=/*#__PURE__*/ forwardRef(function Component(props,ref){var ref1,ref2;const{key,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */ const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent,].map(val=>val-childOffset);/**\n     * Effects\n     */ const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate,]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate,]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity,]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale,]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{ref.current.setAttribute(\"aria-hidden\",!newValue);});},[]);return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:{display:\"contents\"},children:/*#__PURE__*/ cloneElement(child,{ref:ref,key:key+\"child\",style:{...(ref1=child.props)===null||ref1===void 0?void 0:ref1.style,flexShrink:0,width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0}},(ref2=child.props)===null||ref2===void 0?void 0:ref2.children)})});});function Dot({selectedOpacity,opacity:unselectedOpacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item */ /* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */ let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */ if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/ _jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/ _jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:unselectedOpacity},transition:{duration:.3}})});}/* Dot Styles */ const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([]);export const fonts=[];export const css=[\".framer-s432y .framer-styles-preset-aexbeb:not(.rich-text-wrapper), .framer-s432y .framer-styles-preset-aexbeb.rich-text-wrapper a { --framer-link-hover-text-color: var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, #19154e); --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-b1fb229f-a8e6-4640-b958-ea29fe1a7f0e, #19154e); --framer-link-text-decoration: none; }\"];export const className=\"framer-s432y\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (61bac00)\nvar _componentPresets_fonts;import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentPresetsProvider,ControlType,cx,RichText,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as componentPresets from\"https://framerusercontent.com/modules/uuL2Xs8pd1XuziAsBcp3/bxa3RXMuLnPipG4BgDMb/componentPresets.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/zJKdzIEAhOQLbFu5sSmH/3gr1hLTaYwmDRfTB5VF2/A8gV3GXsE.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/upKdnVFm14DOVTmDYIjm/Yrz8R0KO4eHj6f3rLmfN/f_JgQVGd5.js\";import*as sharedStyle8 from\"https://framerusercontent.com/modules/3Iv80onAZjMlML7MXTNA/VxavFk3TK4Fe4i38Bcyi/i59KN99_1.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/o5QlrjFZbGAM00AI1Tse/BMaRBuVIRbO8Tc4qheL2/pbkah0okA.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/kXxyBfFudtee2ShELDpv/5xtkHA0ZTUGhNeLuwiSW/QOCBLMAjr.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/yOQ7Dp75ETAKxIJD0gQx/NTRyCq9eODLQlwmOzD2j/QRIkLSn47.js\";import*as sharedStyle9 from\"https://framerusercontent.com/modules/kbKFKixxB0ZyheXjb1Fi/AGKJjNP8Oc2nxtojQgva/stylesPresetLink.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/4BzZJyc0uKw2qNpWHt1x/IoGpzWIILn2U9neXcwFj/xZndidUCt.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/fF6suLfBroyzjLjEYFwa/ztOvyeDSeQn7GUTEMSHV/YAP816Y5n.js\";import*as sharedStyle7 from\"https://framerusercontent.com/modules/zQ2YbdkpJOm9iyhsGF6r/eAzLutIDLB7e8UoNrxdO/zFV_Olyc4.js\";const cycleOrder=[\"HAtyHEzqu\",\"Vz_vubEAw\",\"zE_cktUCu\"];const serializationHash=\"framer-sL0Wi\";const variantClassNames={HAtyHEzqu:\"framer-v-1y1gde7\",Vz_vubEAw:\"framer-v-fhw4g5\",zE_cktUCu:\"framer-v-13c9szb\"};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 transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};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 humanReadableVariantMap={\"testo libero\":\"zE_cktUCu\",\"Variant 1\":\"HAtyHEzqu\",Importante:\"Vz_vubEAw\"};const getProps=({background,color,height,id,text,titolo,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4;return{...props,ahVK_wok0:(_ref=background!==null&&background!==void 0?background:props.ahVK_wok0)!==null&&_ref!==void 0?_ref:'var(--token-44dd7634-948b-4475-884c-16fbad7c474d, rgb(255, 250, 235)) /* {\"name\":\"Yellow Light\"} */',BcbkogxBq:(_ref1=color!==null&&color!==void 0?color:props.BcbkogxBq)!==null&&_ref1!==void 0?_ref1:\"rgb(0, 0, 0)\",LIDACXY2y:(_ref2=titolo!==null&&titolo!==void 0?titolo:props.LIDACXY2y)!==null&&_ref2!==void 0?_ref2:\"<p>Importante!</p>\",pF_iUvVpw:(_ref3=text!==null&&text!==void 0?text:props.pF_iUvVpw)!==null&&_ref3!==void 0?_ref3:\"<p>Any edits of the Text Styles will apply to all reflective elements across the site.</p>\",variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"HAtyHEzqu\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,LIDACXY2y,pF_iUvVpw,ahVK_wok0,BcbkogxBq,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"HAtyHEzqu\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1y1gde7\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"HAtyHEzqu\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:ahVK_wok0,borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},...addPropertyOverrides({Vz_vubEAw:{\"data-framer-name\":\"Importante\"},zE_cktUCu:{\"data-framer-name\":\"testo libero\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-113y3p\",\"data-styles-preset\":\"QOCBLMAjr\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--variable-reference-BcbkogxBq-KgCS0AqCE))\"},children:\"Avvertenze\"})}),className:\"framer-ied8ki\",layoutDependency:layoutDependency,layoutId:\"AeGAyI46h\",style:{\"--extracted-a0htzi\":\"var(--variable-reference-BcbkogxBq-KgCS0AqCE)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-BcbkogxBq-KgCS0AqCE\":BcbkogxBq},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Vz_vubEAw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-113y3p\",\"data-styles-preset\":\"QOCBLMAjr\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--variable-reference-BcbkogxBq-KgCS0AqCE))\"},children:\"Importante!\"})})},zE_cktUCu:{children:LIDACXY2y,stylesPresetsClassNames:{a:\"framer-styles-preset-pbndum\",h1:\"framer-styles-preset-3nqyhf\",h2:\"framer-styles-preset-1tif1bq\",h3:\"framer-styles-preset-113y3p\",h4:\"framer-styles-preset-1xqegj0\",h5:\"framer-styles-preset-cwjeu\",p:\"framer-styles-preset-21ogod\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"hCS9PbF63\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:pF_iUvVpw,className:\"framer-18e1kx0\",layoutDependency:layoutDependency,layoutId:\"TH9NwEIIV\",style:{\"--framer-paragraph-spacing\":\"0px\"},stylesPresetsClassNames:{a:\"framer-styles-preset-aexbeb\",h1:\"framer-styles-preset-3nqyhf\",h2:\"framer-styles-preset-1tif1bq\",h3:\"framer-styles-preset-13xnbb0\",h4:\"framer-styles-preset-1xqegj0\",h5:\"framer-styles-preset-cwjeu\",p:\"framer-styles-preset-qemwmo\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=['.framer-sL0Wi [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sL0Wi .framer-j7ryox { display: block; }\",\".framer-sL0Wi.framer-1y1gde7 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: auto; justify-content: flex-start; overflow: hidden; padding: 40px 40px 40px 40px; position: relative; width: 600px; will-change: var(--framer-will-change-override, transform); }\",\".framer-sL0Wi .framer-ied8ki { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 410px; word-break: break-word; word-wrap: break-word; }\",\".framer-sL0Wi .framer-18e1kx0 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sL0Wi.framer-1y1gde7 { gap: 0px; } .framer-sL0Wi.framer-1y1gde7 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-sL0Wi.framer-1y1gde7 > :first-child { margin-top: 0px; } .framer-sL0Wi.framer-1y1gde7 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 126\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Vz_vubEAw\":{\"layout\":[\"fixed\",\"auto\"]},\"zE_cktUCu\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"LIDACXY2y\":\"titolo\",\"pF_iUvVpw\":\"text\",\"ahVK_wok0\":\"background\",\"BcbkogxBq\":\"color\"}\n * @framerImmutableVariables true\n */const FramerKgCS0AqCE=withCSS(Component,css,\"framer-sL0Wi\");export default FramerKgCS0AqCE;FramerKgCS0AqCE.displayName=\"Note\";FramerKgCS0AqCE.defaultProps={height:126,width:600};addPropertyControls(FramerKgCS0AqCE,{variant:{options:[\"HAtyHEzqu\",\"Vz_vubEAw\",\"zE_cktUCu\"],optionTitles:[\"Variant 1\",\"Importante\",\"testo libero\"],title:\"Variant\",type:ControlType.Enum},LIDACXY2y:{defaultValue:\"<p>Importante!</p>\",title:\"Titolo\",type:ControlType.RichText},pF_iUvVpw:{defaultValue:\"<p>Any edits of the Text Styles will apply to all reflective elements across the site.</p>\",title:\"Text\",type:ControlType.RichText},ahVK_wok0:{defaultValue:'var(--token-44dd7634-948b-4475-884c-16fbad7c474d, rgb(255, 250, 235)) /* {\"name\":\"Yellow Light\"} */',title:\"Background\",type:ControlType.Color},BcbkogxBq:{defaultValue:\"rgb(0, 0, 0)\",title:\"Color\",type:ControlType.Color}});var _componentPresets_fonts_hCS9PbF63;addFonts(FramerKgCS0AqCE,[...sharedStyle.fonts,...sharedStyle1.fonts,...sharedStyle2.fonts,...sharedStyle3.fonts,...sharedStyle4.fonts,...sharedStyle5.fonts,...sharedStyle6.fonts,...sharedStyle7.fonts,...sharedStyle8.fonts,...sharedStyle9.fonts,...(_componentPresets_fonts_hCS9PbF63=(_componentPresets_fonts=componentPresets.fonts)===null||_componentPresets_fonts===void 0?void 0:_componentPresets_fonts[\"hCS9PbF63\"])!==null&&_componentPresets_fonts_hCS9PbF63!==void 0?_componentPresets_fonts_hCS9PbF63:[]]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKgCS0AqCE\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"126\",\"framerVariables\":\"{\\\"LIDACXY2y\\\":\\\"titolo\\\",\\\"pF_iUvVpw\\\":\\\"text\\\",\\\"ahVK_wok0\\\":\\\"background\\\",\\\"BcbkogxBq\\\":\\\"color\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Vz_vubEAw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zE_cktUCu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"600\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./KgCS0AqCE.map"],
  "mappings": "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",
  "names": ["isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "shouldPlayOnHover", "setShouldPlayOnHover", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "controls", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "ref1", "ref2", "key", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "LayoutGroup", "q", "selectedOpacity", "unselectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "fontStore", "fonts", "css", "className", "_componentPresets_fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "background", "color", "height", "id", "text", "titolo", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "LIDACXY2y", "pF_iUvVpw", "ahVK_wok0", "BcbkogxBq", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "u", "cx", "RichText", "x", "ComponentPresetsProvider", "css", "FramerKgCS0AqCE", "withCSS", "KgCS0AqCE_default", "addPropertyControls", "ControlType", "_componentPresets_fonts_hCS9PbF63", "addFonts", "fonts"]
}
