{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/bRs7tva4DcHPS5NnxgYc/NQ80bJBVJaQUprf4UCTp/CustomCarousel.js", "ssg:https://framerusercontent.com/modules/ZU1l4kMK5zg5yZDOb7hO/fcinqc8O7khC7sBTBMRg/rOIyGIPU1.js", "ssg:https://framerusercontent.com/modules/GTj9nvFjqjJB6P86AxXj/G3fuoCYhFPbv7MNH1PUQ/FlexWrap.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import*as React from\"react\";import{Frame,addPropertyControls,ControlType}from\"framer\";export default function BetterCarousel(props){const{slideFrames,gap,type,dragMode,motion,padding,snapFocus,parentOverflow,showArrows,arrowFill,arrowSize,arrowRadius,arrowGap,arrowPosition,arrowAlign,arrowOffsetX,arrowOffsetY,arrowIconPrev,arrowIconNext}=props;const splideRef=React.useRef(null);const[splideInstance,setSplideInstance]=React.useState(null);const[isDragging,setIsDragging]=React.useState(false);React.useEffect(()=>{if(!document.querySelector('link[href*=\"splide.min.css\"]')){const link=document.createElement(\"link\");link.rel=\"stylesheet\";link.href=\"https://cdn.jsdelivr.net/npm/@splidejs/splide@4.1.4/dist/css/splide.min.css\";document.head.appendChild(link);}const isSplideLoaded=typeof window!==\"undefined\"&&window.Splide;let script;if(!isSplideLoaded){script=document.createElement(\"script\");script.src=\"https://cdn.jsdelivr.net/npm/@splidejs/splide@4.1.4/dist/js/splide.min.js\";document.body.appendChild(script);script.onload=()=>{mountSplide();};}else{mountSplide();}},[]);React.useEffect(()=>{if(window.Splide&&splideRef.current){mountSplide();}},[slideFrames,gap,type,dragMode,motion.speed,motion.momentum,padding.left,padding.right,snapFocus,parentOverflow]);const mountSplide=()=>{if(!window.Splide||!splideRef.current)return;const speed=300+motion.speed*100;let focusValue=false;if(dragMode===\"snap\"&&(type===\"loop\"||type===\"slide\")){focusValue=snapFocus===\"center\"?\"center\":false;}const containerWidth=splideRef.current.clientWidth;const desiredSlideWidth=200;const calculatedPerPage=Math.floor(containerWidth/(desiredSlideWidth+gap));const perPage=calculatedPerPage>0?calculatedPerPage:1;const splide=new window.Splide(splideRef.current,{type:type,drag:dragMode===\"free\"?\"free\":true,autoWidth:true,autoHeight:true,gap:gap+\"px\",speed:speed,pagination:false,arrows:false,focus:focusValue,flickPower:motion.momentum,flickVelocityThreshold:.2,flickMaxPages:1,padding:type===\"slide\"?{left:padding.left+\"px\",right:padding.right+\"px\"}:0,perPage:perPage,perMove:1});splide.mount();splide.on(\"drag\",()=>setIsDragging(true));splide.on(\"dragged\",()=>setIsDragging(false));setSplideInstance(splide);};const slideItems=(slideFrames||[]).map((frame,index)=>/*#__PURE__*/_jsx(\"li\",{className:\"splide__slide\",style:{display:\"inline-block\",overflow:\"visible\",pointerEvents:isDragging?\"none\":\"auto\"},children:frame},index));const renderPlaceholder=()=>{const placeholderWidths=[80,100,185,90,110];return /*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:props.height||\"100%\",backgroundColor:\"#8658d833\",border:\"1px solid #8658D8\",borderRadius:12,display:\"flex\",alignItems:\"center\",justifyContent:\"flex-start\",padding:\"16px\",boxSizing:\"border-box\",overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"ul\",{style:{width:\"100%\",flexGrow:1,margin:0,padding:0,listStyle:\"none\",display:\"flex\",alignItems:\"center\",gap:`${gap}px`},children:placeholderWidths.map((width,index)=>/*#__PURE__*/_jsx(\"li\",{style:{width:`${width}px`,height:\"185px\",backgroundColor:\"#8658D8AA\",borderRadius:8,flexShrink:0}},index))})});};const handlePrev=()=>splideInstance?.go(\"<\");const handleNext=()=>splideInstance?.go(\">\");const ArrowButton=({onClick,icon,style})=>/*#__PURE__*/_jsx(\"button\",{onClick:onClick,style:{background:arrowFill,border:\"none\",width:arrowSize,height:arrowSize,borderRadius:arrowRadius,cursor:\"pointer\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\",padding:0,...style},children:icon?/*#__PURE__*/_jsx(\"img\",{src:icon,style:{width:\"60%\",height:\"60%\",objectFit:\"contain\"}}):null});const getGroupPositionStyles=align=>{const styles={topLeft:{top:arrowOffsetY,left:arrowOffsetX,transform:\"none\"},topCenter:{top:arrowOffsetY,left:\"50%\",transform:\"translateX(-50%)\"},topRight:{top:arrowOffsetY,right:arrowOffsetX,transform:\"none\"},centerLeft:{top:\"50%\",left:arrowOffsetX,transform:\"translateY(-50%)\"},center:{top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\"},centerRight:{top:\"50%\",right:arrowOffsetX,transform:\"translateY(-50%)\"},bottomLeft:{bottom:arrowOffsetY,left:arrowOffsetX,transform:\"none\"},bottomCenter:{bottom:arrowOffsetY,left:\"50%\",transform:\"translateX(-50%)\"},bottomRight:{bottom:arrowOffsetY,right:arrowOffsetX,transform:\"none\"}};return styles[align]||styles[\"centerLeft\"];};return /*#__PURE__*/_jsxs(Frame,{background:\"transparent\",width:props.width,height:props.height||\"auto\",...props,style:{display:\"block\",position:\"relative\",WebkitOverflowScrolling:\"touch\",willChange:\"transform\",overflow:parentOverflow,boxSizing:\"border-box\",width:\"100%\"},children:[slideFrames&&slideFrames.length>0?/*#__PURE__*/_jsx(\"div\",{className:\"splide\",ref:splideRef,style:{width:\"100%\",height:\"auto\",cursor:isDragging?\"grabbing\":\"grab\",overflow:\"visible\"},children:/*#__PURE__*/_jsx(\"div\",{className:\"splide__track\",style:{overflow:\"visible\"},children:/*#__PURE__*/_jsx(\"ul\",{className:\"splide__list\",style:{overflow:\"visible\"},children:slideItems})})}):renderPlaceholder(),showArrows&&arrowPosition===\"space\"&&/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(ArrowButton,{onClick:handlePrev,icon:arrowIconPrev,style:{position:\"absolute\",top:\"50%\",left:arrowOffsetX,transform:\"translateY(-50%)\"}}),/*#__PURE__*/_jsx(ArrowButton,{onClick:handleNext,icon:arrowIconNext,style:{position:\"absolute\",top:\"50%\",right:arrowOffsetX,transform:\"translateY(-50%)\"}})]}),showArrows&&arrowPosition===\"group\"&&/*#__PURE__*/_jsxs(\"div\",{style:{position:\"absolute\",display:\"flex\",flexDirection:\"row\",gap:arrowGap,...getGroupPositionStyles(arrowAlign)},children:[/*#__PURE__*/_jsx(ArrowButton,{onClick:handlePrev,icon:arrowIconPrev}),/*#__PURE__*/_jsx(ArrowButton,{onClick:handleNext,icon:arrowIconNext})]})]});}BetterCarousel.defaultProps={slideFrames:[],gap:16,type:\"loop\",dragMode:\"free\",snapFocus:\"center\",motion:{speed:3,momentum:600},padding:{left:0,right:0},parentOverflow:\"hidden\",showArrows:false,arrowFill:\"#000\",arrowSize:32,arrowRadius:16,arrowGap:8,arrowPosition:\"space\",arrowAlign:\"centerLeft\",arrowOffsetX:0,arrowOffsetY:0};addPropertyControls(BetterCarousel,{slideFrames:{type:ControlType.Array,title:\"Content\",propertyControl:{type:ControlType.ComponentInstance}},gap:{type:ControlType.Number,title:\"Gap\",defaultValue:16,min:0,max:100,step:1,unit:\"px\",displayStepper:true},type:{type:ControlType.SegmentedEnum,title:\"Type\",options:[\"slide\",\"loop\"],optionTitles:[\"Slider\",\"Infinity\"]},dragMode:{type:ControlType.SegmentedEnum,title:\"Drag\",options:[\"snap\",\"free\"],optionTitles:[\"Snap\",\"Free\"]},snapFocus:{type:ControlType.SegmentedEnum,title:\"Snap Focus\",options:[\"left\",\"center\"],optionTitles:[\"Left\",\"Center\"],hidden:props=>!((props.type===\"loop\"||props.type===\"slide\")&&props.dragMode===\"snap\")},motion:{type:ControlType.Object,title:\"Motion\",controls:{speed:{type:ControlType.Number,title:\"Speed\",min:1,max:5,step:1,displayStepper:true},momentum:{type:ControlType.Number,title:\"Momentum\",min:100,max:1e3,step:50,displayStepper:true}}},padding:{type:ControlType.Object,title:\"Padding\",controls:{left:{type:ControlType.Number,title:\"Left\",min:0,max:200,step:1},right:{type:ControlType.Number,title:\"Right\",min:0,max:200,step:1}}},parentOverflow:{type:ControlType.SegmentedEnum,title:\"Overflow\",options:[\"hidden\",\"visible\"],optionTitles:[\"Hidden\",\"Visible\"]},showArrows:{type:ControlType.Boolean,title:\"Show Arrows\"},arrowFill:{type:ControlType.Color,title:\"Arrow Fill\",hidden:props=>!props.showArrows},arrowSize:{type:ControlType.Number,title:\"Arrow Size\",min:16,max:100,hidden:props=>!props.showArrows},arrowRadius:{type:ControlType.Number,title:\"Arrow Radius\",min:0,max:100,hidden:props=>!props.showArrows},arrowGap:{type:ControlType.Number,title:\"Arrow Gap\",min:0,max:100,hidden:props=>!props.showArrows||props.arrowPosition!==\"group\"},arrowPosition:{type:ControlType.SegmentedEnum,title:\"Arrow Layout\",options:[\"space\",\"group\"],optionTitles:[\"Split\",\"Group\"],hidden:props=>!props.showArrows},arrowAlign:{type:ControlType.Enum,title:\"Arrow Align\",options:[\"topLeft\",\"topCenter\",\"topRight\",\"centerLeft\",\"center\",\"centerRight\",\"bottomLeft\",\"bottomCenter\",\"bottomRight\"],optionTitles:[\"Top Left\",\"Top Center\",\"Top Right\",\"Center Left\",\"Center\",\"Center Right\",\"Bottom Left\",\"Bottom Center\",\"Bottom Right\"],hidden:props=>!props.showArrows||props.arrowPosition===\"space\"},arrowOffsetX:{type:ControlType.Number,title:\"Offset X\",step:1,hidden:props=>!props.showArrows},arrowOffsetY:{type:ControlType.Number,title:\"Offset Y\",step:1,hidden:props=>!props.showArrows},arrowIconPrev:{type:ControlType.Image,title:\"Prev Icon\",hidden:props=>!props.showArrows},arrowIconNext:{type:ControlType.Image,title:\"Next Icon\",hidden:props=>!props.showArrows}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"BetterCarousel\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CustomCarousel.map", "// Generated by Framer (f712822)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Overused Grotesk Medium\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Overused Grotesk Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/8HmmoXuK5B9Jf6bILMYOGPVsVI.woff2\"}]}];export const css=['.framer-uGUwq .framer-styles-preset-1wd9vr3:not(.rich-text-wrapper), .framer-uGUwq .framer-styles-preset-1wd9vr3.rich-text-wrapper h2 { --framer-font-family: \"Overused Grotesk Medium\", \"Overused Grotesk Medium Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 40px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #171717; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-uGUwq .framer-styles-preset-1wd9vr3:not(.rich-text-wrapper), .framer-uGUwq .framer-styles-preset-1wd9vr3.rich-text-wrapper h2 { --framer-font-family: \"Overused Grotesk Medium\", \"Overused Grotesk Medium Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 36px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #171717; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-uGUwq .framer-styles-preset-1wd9vr3:not(.rich-text-wrapper), .framer-uGUwq .framer-styles-preset-1wd9vr3.rich-text-wrapper h2 { --framer-font-family: \"Overused Grotesk Medium\", \"Overused Grotesk Medium Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 32px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #171717; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-uGUwq\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";/**\n * @framerDisableUnlink\n * @framerIntrinsicWidth 100\n * @framerIntrinsicHeight 100\n */export function withFlexWrap(Component){return props=>{const{style,...rest}=props;return /*#__PURE__*/_jsx(Component,{...rest,style:{...style,display:\"flex\",flexWrap:\"wrap\",rowGap:\"0px\"}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withFlexWrap\":{\"type\":\"reactHoc\",\"name\":\"withFlexWrap\",\"annotations\":{\"framerDisableUnlink\":\"* @framerIntrinsicWidth 100\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"100\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FlexWrap.map"],
  "mappings": "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",
  "names": ["BetterCarousel", "props", "slideFrames", "gap", "type", "dragMode", "motion", "padding", "snapFocus", "parentOverflow", "showArrows", "arrowFill", "arrowSize", "arrowRadius", "arrowGap", "arrowPosition", "arrowAlign", "arrowOffsetX", "arrowOffsetY", "arrowIconPrev", "arrowIconNext", "splideRef", "pe", "splideInstance", "setSplideInstance", "ye", "isDragging", "setIsDragging", "ue", "link", "isSplideLoaded", "window", "script", "mountSplide", "speed", "focusValue", "containerWidth", "calculatedPerPage", "perPage", "splide", "slideItems", "frame", "index", "p", "renderPlaceholder", "placeholderWidths", "width", "handlePrev", "handleNext", "ArrowButton", "onClick", "icon", "style", "getGroupPositionStyles", "align", "styles", "u", "Frame", "l", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "withFlexWrap", "Component", "props", "style", "rest", "p"]
}
