{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:js-cookie@3.0.1/dist/js.cookie.mjs", "ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framerusercontent.com/modules/FZjYlw33eNo8pxLbSFLX/mIr6aiS9WGDutyQDFlPu/SuperfieldsShared.js", "ssg:https://framerusercontent.com/modules/Y1ZXBoo8yVz7K3MPQoYE/hzrTaHDWd75e4QyazbqQ/FavouriteButton.js", "ssg:https://framerusercontent.com/modules/GvoB0nsbYDFmZ5mhNJOW/cYR9EB3R9UrMAyGCLLl5/J3UTutv1u.js"],
  "sourcesContent": ["function assign(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)e[r]=n[r]}return e}var e={read:function(e){'\"'===e[0]&&(e=e.slice(1,-1));return e.replace(/(%[\\dA-F]{2})+/gi,decodeURIComponent)},write:function(e){return encodeURIComponent(e).replace(/%(2[346BF]|3[AC-F]|40|5[BDE]|60|7[BCD])/g,decodeURIComponent)}};function init(e,t){function set(n,r,i){if(\"undefined\"!==typeof document){i=assign({},t,i);\"number\"===typeof i.expires&&(i.expires=new Date(Date.now()+864e5*i.expires));i.expires&&(i.expires=i.expires.toUTCString());n=encodeURIComponent(n).replace(/%(2[346B]|5E|60|7C)/g,decodeURIComponent).replace(/[()]/g,escape);var o=\"\";for(var c in i)if(i[c]){o+=\"; \"+c;true!==i[c]&&(o+=\"=\"+i[c].split(\";\")[0])}return document.cookie=n+\"=\"+e.write(r,n)+o}}function get(t){if(\"undefined\"!==typeof document&&(!arguments.length||t)){var n=document.cookie?document.cookie.split(\"; \"):[];var r={};for(var i=0;i<n.length;i++){var o=n[i].split(\"=\");var c=o.slice(1).join(\"=\");try{var a=decodeURIComponent(o[0]);r[a]=e.read(c,a);if(t===a)break}catch(e){}}return t?r[t]:r}}return Object.create({set:set,get:get,remove:function(e,t){set(e,\"\",assign({},t,{expires:-1}))},withAttributes:function(e){return init(this.converter,assign({},this.attributes,e))},withConverter:function(e){return init(assign({},this.converter,e),this.attributes)}},{attributes:{value:Object.freeze(t)},converter:{value:Object.freeze(e)}})}var t=init(e,{path:\"/\"});export{t as default};\n\n//# sourceMappingURL=js.cookie.mjs.map", "import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{ControlType}from\"framer\";import{motion}from\"framer-motion\";import{createContext,cloneElement}from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";export const usePaginationState=createStore({});export const useFilterState=createStore({});export const useFavouriteState=createStore({});export const useSearchState=createStore({});export const useRandomizationState=createStore({});export const SuperfieldsContext=/*#__PURE__*/createContext({active:false});export const superfieldsId=({hidden=undefined}={})=>({superfieldsId:{type:ControlType.Number,defaultValue:0,min:0,step:1,displayStepper:true,title:\"CMS ID\",description:\"Match with ID on Superfields component\",hidden}});export const buttonPropertyControls=({text=\"\"})=>({appearance:{type:ControlType.Enum,defaultValue:\"default\",options:[\"default\",\"custom\"],optionTitles:[\"Default\",\"Custom\"],displaySegmentedControl:true},customLayer:{type:ControlType.ComponentInstance,title:\"Layer\",description:\"Connect a custom layer from outside the breakpoint\",hidden:props=>props.appearance!==\"custom\"},text:{type:ControlType.String,defaultValue:text,hidden:props=>props.appearance!==\"default\"},fill:fillProp({color:\"#000\",gradientColorA:\"#8C8C8C\",gradientColorB:\"#000\",hidden:props=>props.appearance!==\"default\"}),fontColor:{type:ControlType.Color,defaultValue:\"#FFF\",hidden:props=>props.appearance!==\"default\"},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:14,lineHeight:1.4},hidden:props=>props.appearance!==\"default\"},padding:{type:ControlType.FusedNumber,defaultValue:12,toggleKey:\"paddingIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0,hidden:props=>props.appearance!==\"default\"},radius:{type:ControlType.FusedNumber,defaultValue:8,toggleKey:\"radiusIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"radiusTopLeft\",\"radiusTopRight\",\"radiusBottomRight\",\"radiusBottomLeft\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0,hidden:props=>props.appearance!==\"default\"},border:borderPropertyControl({hidden:props=>props.appearance!==\"default\"}),shadows:{type:ControlType.BoxShadow,hidden:props=>props.appearance!==\"default\"}});export function Button({props,onClick,onMouseEnter=null}){var _props_font,_props_style;if(props.appearance==\"custom\"){var _props_customLayer,_props_style1,_props_style2;let layer=(_props_customLayer=props.customLayer)===null||_props_customLayer===void 0?void 0:_props_customLayer[0];const width=(_props_style1=props.style)===null||_props_style1===void 0?void 0:_props_style1.width;const height=(_props_style2=props.style)===null||_props_style2===void 0?void 0:_props_style2.height;if(layer&&props.style&&(width||height)){layer=/*#__PURE__*/cloneElement(layer,{style:{...layer.props.style,...width&&{width:width},...height&&{height:height}}});}return /*#__PURE__*/_jsx(\"div\",{style:{display:\"contents\"},onClick:onClick,children:layer});}return /*#__PURE__*/_jsxs(\"div\",{onClick:onClick,style:{position:\"relative\",display:\"flex\",justifyContent:((_props_font=props.font)===null||_props_font===void 0?void 0:_props_font.textAlign)||\"center\",alignItems:\"center\",...createBackground(props.fill),color:props.fontColor,padding:props.paddingIsMixed?`${props.paddingTop}px ${props.paddingRight}px ${props.paddingBottom}px ${props.paddingLeft}px`:`${props.padding}px`,borderRadius:props.radiusIsMixed?`${props.radiusTopLeft}px ${props.radiusTopRight}px ${props.radiusBottomRight}px ${props.radiusBottomLeft}px`:`${props.radius}px`,userSelect:\"none\",cursor:\"pointer\",flex:props.sizing==\"fill\"?\"1 0 0\":undefined,textWrap:((_props_style=props.style)===null||_props_style===void 0?void 0:_props_style.width)==\"100%\"?undefined:\"nowrap\",boxShadow:props.shadows,...props.font,...props.style},children:[props.text,/*#__PURE__*/_jsx(Border,{...props.border})]});}Button.displayName=\"Superfields/Button\";export const borderPropertyControl=(props={})=>({type:ControlType.Object,optional:true,controls:{color:{type:ControlType.Color,defaultValue:\"#222\"},width:{type:ControlType.FusedNumber,defaultValue:1,toggleKey:\"widthIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"widthTop\",\"widthRight\",\"widthBottom\",\"widthLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}},...props});export function Border({width,widthIsMixed,widthTop,widthRight,widthBottom,widthLeft,style,color,transition,animate,radius=\"inherit\"}){return /*#__PURE__*/_jsx(motion.div,{animate:{borderColor:color,...animate},style:{position:\"absolute\",inset:0,borderWidth:widthIsMixed?`${widthTop}px ${widthRight}px ${widthBottom}px ${widthLeft}px`:`${width}px`,borderStyle:style,borderRadius:radius,pointerEvents:\"none\"},initial:false,transition:transition});}Border.displayName=\"Superfields/Border\";export function Message({title,subtitle}){return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",gap:16,backgroundColor:\"rgba(136, 85, 255, 0.1)\",borderRadius:6,border:\"1px dashed rgb(136, 85, 255)\",color:\"rgb(136, 85, 255)\",fontSize:16,padding:20,minHeight:200,textWrap:\"balance\"},children:[/*#__PURE__*/_jsx(\"p\",{style:{margin:0,fontWeight:600,textAlign:\"center\"},children:title}),/*#__PURE__*/_jsx(\"p\",{style:{margin:0,opacity:.7,lineHeight:1.5,textAlign:\"center\"},children:subtitle})]});}Message.displayName=\"Superfields/Message\";export const EmptyState=Message;export function createBackground(fill,on=null){if(fill){let{color,colorA,colorB}=fill;if(typeof on==\"boolean\"){if(on){color=fill.colorOn;colorA=fill.colorAOn;colorB=fill.colorBOn;}else{color=fill.colorOff;colorA=fill.colorAOff;colorB=fill.colorBOff;}}if(fill.type==\"color\"){return{backgroundColor:color,backgroundImage:\"none\"};}else{return{backgroundColor:\"none\",backgroundImage:`linear-gradient(${fill.gradientAngle}deg, ${colorB}, ${colorA})`};}}return{};}export function fillProp({color=\"#FFF\",gradientColorA=\"#FFF\",gradientColorB=\"#BDBDBD\",noDefault=false,...props}){return{type:ControlType.Object,optional:true,icon:\"color\",defaultValue:noDefault?undefined:{type:\"color\",color,colorA:gradientColorA,colorB:gradientColorB,gradientAngle:0},controls:{type:{type:ControlType.Enum,defaultValue:\"color\",options:[\"color\",\"gradient\"],optionTitles:[\"Color\",\"Gradient\"],displaySegmentedControl:true},color:{type:ControlType.Color,defaultValue:color,hidden:props=>props.type!=\"color\"},colorA:{type:ControlType.Color,defaultValue:gradientColorA,title:\"Colors\",hidden:props=>props.type!=\"gradient\"},colorB:{type:ControlType.Color,defaultValue:gradientColorB,title:\" \",hidden:props=>props.type!=\"gradient\"},gradientAngle:{type:ControlType.Number,defaultValue:0,title:\"Angle\",step:1,min:0,max:360,unit:\"\\xb0\",hidden:props=>props.type!=\"gradient\"}},...props};}export function fillPropOnOff({colorOn=\"#FFF\",colorAOn=\"#FFF\",colorBOn=\"#000\",colorOff=\"#FFF\",colorAOff=\"#FFF\",colorBOff=\"#000\",noDefault=false,...props}){return{type:ControlType.Object,optional:true,icon:\"color\",defaultValue:noDefault?undefined:{type:\"color\",colorOn,colorAOn,colorBOn,colorOff,colorAOff,colorBOff,gradientAngle:0},controls:{type:{type:ControlType.Enum,defaultValue:\"color\",options:[\"color\",\"gradient\"],optionTitles:[\"Color\",\"Gradient\"],displaySegmentedControl:true},colorOn:{type:ControlType.Color,defaultValue:colorOn,hidden:props=>props.type!=\"color\"},colorAOn:{type:ControlType.Color,defaultValue:colorAOn,title:\"Colors On\",hidden:props=>props.type!=\"gradient\"},colorBOn:{type:ControlType.Color,defaultValue:colorBOn,title:\" \",hidden:props=>props.type!=\"gradient\"},colorOff:{type:ControlType.Color,defaultValue:colorOff,hidden:props=>props.type!=\"color\"},colorAOff:{type:ControlType.Color,defaultValue:colorAOff,title:\"Colors Off\",hidden:props=>props.type!=\"gradient\"},colorBOff:{type:ControlType.Color,defaultValue:colorBOff,title:\" \",hidden:props=>props.type!=\"gradient\"},gradientAngle:{type:ControlType.Number,defaultValue:0,title:\"Angle\",step:1,min:0,max:360,unit:\"\\xb0\",hidden:props=>props.type!=\"gradient\"}},...props};}\nexport const __FramerMetadata__ = {\"exports\":{\"fillPropOnOff\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"superfieldsId\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"borderPropertyControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fillProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SuperfieldsContext\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"buttonPropertyControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Border\":{\"type\":\"reactComponent\",\"name\":\"Border\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"useFavouriteState\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"EmptyState\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useSearchState\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Button\":{\"type\":\"reactComponent\",\"name\":\"Button\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"Message\":{\"type\":\"reactComponent\",\"name\":\"Message\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"useFilterState\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRandomizationState\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"createBackground\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePaginationState\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SuperfieldsShared.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";import Cookies from\"js-cookie\";import{useFavouriteState,Border,createBackground,fillPropOnOff}from\"https://framerusercontent.com/modules/FZjYlw33eNo8pxLbSFLX/mIr6aiS9WGDutyQDFlPu/SuperfieldsShared.js\";/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export default function FavouriteButton(props){var _favouriteState_cmsCollectionName;const{cmsCollectionName,slug,colors,border}=props;const cookieName=`superfieldsFavourites_${cmsCollectionName}`;const[favouriteState,setFavouriteState]=useFavouriteState();var _favouriteState_cmsCollectionName_includes;const favourite=(_favouriteState_cmsCollectionName_includes=(_favouriteState_cmsCollectionName=favouriteState[cmsCollectionName])===null||_favouriteState_cmsCollectionName===void 0?void 0:_favouriteState_cmsCollectionName.includes(slug))!==null&&_favouriteState_cmsCollectionName_includes!==void 0?_favouriteState_cmsCollectionName_includes:false;useEffect(()=>{if(!Array.isArray(favouriteState[cmsCollectionName])){// Load favourites\ntry{const savedState=Cookies.get(cookieName);if(savedState){setFavouriteState({[cmsCollectionName]:savedState.split(\",\")});}}catch(error){console.error(\"Failed to load favourites cookie or parse JSON:\",error);}}},[]);useEffect(()=>{if(Array.isArray(favouriteState[cmsCollectionName])){Cookies.set(cookieName,favouriteState[cmsCollectionName]);}},[favourite]);function onButtonClick(event){var _props_click;event.preventDefault();event.stopPropagation();setFavouriteState(prev=>{const favourites=Array.isArray(prev[cmsCollectionName])?prev[cmsCollectionName]:[];if(favourites.includes(slug)){var // Remove from list\n_props_unfavourited;(_props_unfavourited=props.unfavourited)===null||_props_unfavourited===void 0?void 0:_props_unfavourited.call(props);return{[cmsCollectionName]:favourites.filter(item=>item!=slug)};}else{var // Add to list\n_props_favourited;(_props_favourited=props.favourited)===null||_props_favourited===void 0?void 0:_props_favourited.call(props);return{[cmsCollectionName]:Array.from(new Set(favourites.concat(slug)))};}});(_props_click=props.click)===null||_props_click===void 0?void 0:_props_click.call(props);}return /*#__PURE__*/_jsxs(motion.div,{onClick:onButtonClick,onMouseEnter:props.hover,animate:{...createBackground(props.fill,favourite),boxShadow:favourite?colors.shadowOn:colors.shadowOff},style:{borderRadius:props.radiusIsMixed?`${props.radiusTopLeft}px ${props.radiusTopRight}px ${props.radiusBottomRight}px ${props.radiusBottomLeft}px`:`${props.radius}px`,padding:props.paddingIsMixed?`${props.paddingTop}px ${props.paddingRight}px ${props.paddingBottom}px ${props.paddingLeft}px`:`${props.padding}px`,cursor:\"pointer\",overflow:\"hidden\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",...props.style},initial:false,transition:props.transition,children:[/*#__PURE__*/_jsx(HeartIcon,{on:favourite,size:props.iconSize,colorOn:colors.iconOn,colorOff:colors.iconOff,customIcons:props.customIcons,transition:props.transition}),border&&/*#__PURE__*/_jsx(Border,{...border,color:favourite?border.colorOn:border.colorOff,transition:props.transition})]});}FavouriteButton.displayName=\"Favourite Button\";addPropertyControls(FavouriteButton,{cmsCollectionName:{type:ControlType.String,defaultValue:\"\",placeholder:\"CMS Collection Name\",title:\"CMS Collection Name\",description:\"This is used to save favourites as cookies. Changing this value later will reset all favourites.\"},slug:{type:ControlType.String,defaultValue:\"\",placeholder:\"Slug\",description:\"Connect to Slug field.\"},colors:{type:ControlType.Object,buttonTitle:\"Icon & Shadow\",icon:\"color\",controls:{iconOn:{type:ControlType.Color,defaultValue:\"#FF0000\"},iconOff:{type:ControlType.Color,defaultValue:\"#919191\"},shadowOn:{type:ControlType.BoxShadow},shadowOff:{type:ControlType.BoxShadow}}},fill:fillPropOnOff({colorOn:\"#FF0000\",colorAOn:\"#FF7070\",colorBOn:\"#FF0000\",colorOff:\"#000\",colorAOff:\"#8C8C8C\",colorBOff:\"#000\",noDefault:true}),iconSize:{type:ControlType.Number,defaultValue:24,min:1,step:1},padding:{type:ControlType.FusedNumber,defaultValue:12,toggleKey:\"paddingIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},radius:{type:ControlType.FusedNumber,defaultValue:24,toggleKey:\"radiusIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"radiusTopLeft\",\"radiusTopRight\",\"radiusBottomRight\",\"radiusBottomLeft\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0},border:{type:ControlType.Object,optional:true,controls:{colorOn:{type:ControlType.Color,defaultValue:\"#FF0000\"},colorOff:{type:ControlType.Color,defaultValue:\"#919191\"},width:{type:ControlType.FusedNumber,defaultValue:1,toggleKey:\"widthIsMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"widthTop\",\"widthRight\",\"widthBottom\",\"widthLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}},customIcons:{type:ControlType.Object,optional:true,buttonTitle:\"Icon\",controls:{type:{type:ControlType.Enum,defaultValue:\"svg\",options:[\"svg\",\"image\"],optionTitles:[\"SVG\",\"Image\"],displaySegmentedControl:true},svgOn:{type:ControlType.String,placeholder:\"<svg></svg>\",displayTextArea:true,title:\"On\",hidden:props=>props.type!=\"svg\"},svgOff:{type:ControlType.String,placeholder:\"<svg></svg>\",displayTextArea:true,title:\"Off\",hidden:props=>props.type!=\"svg\"},imageOn:{type:ControlType.ResponsiveImage,title:\"On\",hidden:props=>props.type!=\"image\"},imageOff:{type:ControlType.ResponsiveImage,title:\"Off\",hidden:props=>props.type!=\"image\"},sizing:{type:ControlType.Enum,defaultValue:\"cover\",options:[\"cover\",\"contain\",\"fill\"],optionTitles:[\"Fill\",\"Fit\",\"Stretch\"],hidden:props=>props.type!=\"image\"},opacity:{type:ControlType.Number,defaultValue:1,min:0,max:1,step:.01}}},transition:{type:ControlType.Transition,defaultValue:{type:\"tween\",ease:[0,.6,.5,1],duration:.15}},favourited:{type:ControlType.EventHandler},unfavourited:{type:ControlType.EventHandler},click:{type:ControlType.EventHandler},hover:{type:ControlType.EventHandler}});function HeartIcon(props){const{on,customIcons,size,colorOn,colorOff,transition}=props;let iconElements=[];if(customIcons){if(customIcons.type==\"svg\"){const icons=[{svg:customIcons.svgOn,color:colorOn},{svg:customIcons.svgOff,color:colorOff}];iconElements=icons.map((icon,index)=>/*#__PURE__*/_jsx(motion.div,{animate:{opacity:on==(index==0)?customIcons.opacity:0},initial:false,transition:transition,className:\"superfields-social-share-icon\",style:{position:\"absolute\",width:size,height:size,color:icon.color,pointerEvents:\"none\"},dangerouslySetInnerHTML:{__html:icon.svg.replace(/width=\"(\\d+)\"/,`width=\"${size}\"`).replace(/height=\"(\\d+)\"/,`width=\"${size}\"`)}},index));iconElements.push(/*#__PURE__*/_jsx(\"style\",{children:`.superfields-social-share-icon svg { display: block; }`}));}else if(customIcons.type==\"image\"){const images=[customIcons.imageOn,customIcons.imageOff];iconElements=images.map((image,index)=>/*#__PURE__*/_jsx(motion.img,{animate:{opacity:on==(index==0)?1:0},initial:false,transition:transition,src:image===null||image===void 0?void 0:image.src,alt:image===null||image===void 0?void 0:image.alt,style:{position:\"absolute\",display:\"block\",width:size,height:size,opacity:customIcons.opacity,objectFit:customIcons.sizing,objectPosition:\"center\",pointerEvents:\"none\"}},index));}}else{const icons=[{color:colorOn,element:/*#__PURE__*/_jsx(\"path\",{d:\"M6.979 3.074a6 6 0 0 1 4.988 1.425l.037 .033l.034 -.03a6 6 0 0 1 4.733 -1.44l.246 .036a6 6 0 0 1 3.364 10.008l-.18 .185l-.048 .041l-7.45 7.379a1 1 0 0 1 -1.313 .082l-.094 -.082l-7.493 -7.422a6 6 0 0 1 3.176 -10.215z\",strokeWidth:\"0\",fill:\"currentColor\"})},{color:colorOff,element:/*#__PURE__*/_jsx(\"path\",{d:\"M19.5 12.572l-7.5 7.428l-7.5 -7.428a5 5 0 1 1 7.5 -6.566a5 5 0 1 1 7.5 6.572\"})}];iconElements=icons.map((icon,index)=>/*#__PURE__*/_jsx(motion.svg,{animate:{opacity:on==(index==0)?1:0},initial:false,transition:transition,xmlns:\"http://www.w3.org/2000/svg\",width:size,height:size,viewBox:\"0 0 24 24\",strokeWidth:\"2\",stroke:\"currentColor\",fill:\"none\",strokeLinecap:\"round\",strokeLinejoin:\"round\",style:{position:\"absolute\",color:icon.color,display:\"block\"},children:icon.element},index));}return /*#__PURE__*/_jsx(\"div\",{style:{position:\"relative\",width:size,height:size},children:iconElements});}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FavouriteButton\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FavouriteButton.map", "// Generated by Framer (99ae5b3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleCode,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import FavouriteButton from\"https://framerusercontent.com/modules/Y1ZXBoo8yVz7K3MPQoYE/hzrTaHDWd75e4QyazbqQ/FavouriteButton.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/axvem9c16M2tklAk5wzD/clm0IZ8Y5PGdpekzHwRv/N85QgTAso.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/A18Wws62qq5EfZp0KK0N/DrWQjt26YDOcBiYsZsUN/r_EkJQedq.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/iAipW9oloABj9uf5vzM0/KCCc40HGQxGG2q2j8smL/s2tAP6eBg.js\";const FavouriteButtonFonts=getFonts(FavouriteButton);const enabledGestures={HNH1DtZTT:{hover:true}};const cycleOrder=[\"HNH1DtZTT\",\"i9oQ8x3_y\",\"DECSjHO5H\",\"UglTPZe0X\"];const serializationHash=\"framer-NUQHP\";const variantClassNames={DECSjHO5H:\"framer-v-1inx0qe\",HNH1DtZTT:\"framer-v-atx8d6\",i9oQ8x3_y:\"framer-v-1nzcptn\",UglTPZe0X:\"framer-v-jnlzbh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{if(display===\"date\"){return date.toLocaleDateString(locale,dateOptions);}return date.toLocaleString(locale,dateOptions);}catch{if(display===\"date\"){return date.toLocaleDateString(fallbackLocale,dateOptions);}return date.toLocaleString(fallbackLocale,dateOptions);}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Desktop Highlighted\":\"UglTPZe0X\",\"Phone Highlighted\":\"DECSjHO5H\",Desktop:\"HNH1DtZTT\",Phone:\"i9oQ8x3_y\"};const getProps=({category,date,height,id,image,link,showTag,slug,title,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3,_ref4;return{...props,e9UHOUJfH:image!==null&&image!==void 0?image:props.e9UHOUJfH,I2j7mSaga:(_ref=title!==null&&title!==void 0?title:props.I2j7mSaga)!==null&&_ref!==void 0?_ref:\"Title\",IdwRSRgbG:(_ref1=showTag!==null&&showTag!==void 0?showTag:props.IdwRSRgbG)!==null&&_ref1!==void 0?_ref1:true,m450T7FiA:slug!==null&&slug!==void 0?slug:props.m450T7FiA,SOIwzHsez:link!==null&&link!==void 0?link:props.SOIwzHsez,uGpral7VN:(_ref2=category!==null&&category!==void 0?category:props.uGpral7VN)!==null&&_ref2!==void 0?_ref2:\"Category\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"HNH1DtZTT\",vusrZyZOo:(_ref4=date!==null&&date!==void 0?date:props.vusrZyZOo)!==null&&_ref4!==void 0?_ref4:\"1970-01-01T00:00:00.000Z\"};};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,SOIwzHsez,e9UHOUJfH,IdwRSRgbG,uGpral7VN,I2j7mSaga,vusrZyZOo,m450T7FiA,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"HNH1DtZTT\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapStart13fmgc8=activeVariantCallback(async(...args)=>{setGestureState({isPressed:true});setVariant(\"DECSjHO5H\");});const onTapStarta79j7j=activeVariantCallback(async(...args)=>{setVariant(\"UglTPZe0X\");});const ref1=React.useRef(null);const activeLocaleCode=useLocaleCode();const textContent=toDateString(vusrZyZOo,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:SOIwzHsez,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-atx8d6\",className,classNames)} framer-1g4gqw2`,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"HNH1DtZTT\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"HNH1DtZTT-hover\":{\"data-framer-name\":undefined},DECSjHO5H:{\"data-framer-name\":\"Phone Highlighted\"},i9oQ8x3_y:{\"data-framer-name\":\"Phone\",\"data-highlight\":true,onTapStart:onTapStart13fmgc8},UglTPZe0X:{\"data-framer-name\":\"Desktop Highlighted\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(e9UHOUJfH),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1a1q6cq\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"b9twO9UYH\",onTapStart:onTapStarta79j7j,style:{filter:\"grayscale(1)\",WebkitFilter:\"grayscale(1)\"},variants:{\"HNH1DtZTT-hover\":{filter:\"grayscale(0)\",WebkitFilter:\"grayscale(0)\"},DECSjHO5H:{filter:\"grayscale(0)\",WebkitFilter:\"grayscale(0)\"},UglTPZe0X:{filter:\"grayscale(0)\",WebkitFilter:\"grayscale(0)\"}},...addPropertyOverrides({DECSjHO5H:{\"data-highlight\":undefined,onTapStart:undefined},i9oQ8x3_y:{\"data-highlight\":undefined,onTapStart:undefined}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oa7g0h\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"qFy_gXxdA\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ig5x6x\",layoutDependency:layoutDependency,layoutId:\"B1i4zzdKW\",children:[IdwRSRgbG&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lurij\",\"data-framer-name\":\"Badge\",layoutDependency:layoutDependency,layoutId:\"t0JlW7DhK\",style:{backgroundColor:\"var(--token-c8ae8796-fb92-46f7-8d83-dc818c67ef6a, rgb(179, 18, 0))\",borderBottomLeftRadius:99,borderBottomRightRadius:99,borderTopLeftRadius:99,borderTopRightRadius:99},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qv8058\",layoutDependency:layoutDependency,layoutId:\"ISYxJl1Aa\",style:{backgroundColor:\"rgba(255, 255, 255, 0.65)\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-57am22\",\"data-styles-preset\":\"N85QgTAso\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(10, 10, 10))\"},children:\"Category\"})}),className:\"framer-md0u1x\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LSYUhUtyo\",style:{\"--extracted-r6o4lv\":\"rgb(10, 10, 10)\"},text:uGpral7VN,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-tvhobf-container\",layoutDependency:layoutDependency,layoutId:\"N7d2KtYz6-container\",children:/*#__PURE__*/_jsx(FavouriteButton,{cmsCollectionName:\"Recipes\",colors:{iconOff:\"rgb(145, 145, 145)\",iconOn:\"rgb(255, 0, 0)\",shadowOff:\"\",shadowOn:\"\"},height:\"100%\",iconSize:18,id:\"N7d2KtYz6\",layoutId:\"N7d2KtYz6\",padding:12,paddingBottom:12,paddingIsMixed:false,paddingLeft:12,paddingRight:12,paddingTop:12,radius:24,radiusBottomLeft:24,radiusBottomRight:24,radiusIsMixed:false,radiusTopLeft:24,radiusTopRight:24,slug:m450T7FiA,transition:{duration:.15,ease:[0,.6,.5,1],type:\"tween\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-108a0d4\",\"data-styles-preset\":\"r_EkJQedq\",children:\"Title\"})}),className:\"framer-1v5km1p\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"o8XWuBvyk\",text:I2j7mSaga,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12lu6sg\",\"data-styles-preset\":\"s2tAP6eBg\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-64b159d3-04ba-4802-be08-e862d24eda69, rgb(115, 115, 115)))\"},children:\"Jan 1, 1970\"})}),className:\"framer-1qcl8og\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KgKAU_OPD\",style:{\"--extracted-r6o4lv\":\"var(--token-64b159d3-04ba-4802-be08-e862d24eda69, rgb(115, 115, 115))\"},text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NUQHP.framer-1g4gqw2, .framer-NUQHP .framer-1g4gqw2 { display: block; }\",\".framer-NUQHP.framer-atx8d6 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: wrap; gap: 8px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 300px; }\",\".framer-NUQHP .framer-1a1q6cq { aspect-ratio: 0.8181818181818182 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 244px); position: relative; width: 100%; }\",\".framer-NUQHP .framer-1oa7g0h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 0px; position: relative; width: 100%; }\",\".framer-NUQHP .framer-ig5x6x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NUQHP .framer-lurij { 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: hidden; padding: 4px 8px 4px 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-NUQHP .framer-1qv8058 { flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-NUQHP .framer-md0u1x { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-NUQHP .framer-tvhobf-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-NUQHP .framer-1v5km1p, .framer-NUQHP .framer-1qcl8og { 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-NUQHP.framer-atx8d6, .framer-NUQHP .framer-1oa7g0h, .framer-NUQHP .framer-lurij { gap: 0px; } .framer-NUQHP.framer-atx8d6 > *, .framer-NUQHP .framer-1oa7g0h > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-NUQHP.framer-atx8d6 > :first-child, .framer-NUQHP .framer-1oa7g0h > :first-child { margin-top: 0px; } .framer-NUQHP.framer-atx8d6 > :last-child, .framer-NUQHP .framer-1oa7g0h > :last-child { margin-bottom: 0px; } .framer-NUQHP .framer-lurij > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-NUQHP .framer-lurij > :first-child { margin-left: 0px; } .framer-NUQHP .framer-lurij > :last-child { margin-right: 0px; } }\",\".framer-NUQHP.framer-v-1nzcptn .framer-1a1q6cq, .framer-NUQHP.framer-v-1inx0qe .framer-1a1q6cq { aspect-ratio: 0.8 / 1; cursor: unset; height: var(--framer-aspect-ratio-supported, 250px); }\",\".framer-NUQHP.framer-v-1nzcptn .framer-1oa7g0h, .framer-NUQHP.framer-v-1inx0qe .framer-1oa7g0h { min-width: unset; }\",\".framer-NUQHP.framer-v-1inx0qe.framer-atx8d6, .framer-NUQHP.framer-v-jnlzbh.framer-atx8d6 { cursor: unset; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 480\n * @framerIntrinsicWidth 300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"i9oQ8x3_y\":{\"layout\":[\"fixed\",\"auto\"]},\"DECSjHO5H\":{\"layout\":[\"fixed\",\"auto\"]},\"UglTPZe0X\":{\"layout\":[\"fixed\",\"auto\"]},\"K2MgkP9zu\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"SOIwzHsez\":\"link\",\"e9UHOUJfH\":\"image\",\"IdwRSRgbG\":\"showTag\",\"uGpral7VN\":\"category\",\"I2j7mSaga\":\"title\",\"vusrZyZOo\":\"date\",\"m450T7FiA\":\"slug\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJ3UTutv1u=withCSS(Component,css,\"framer-NUQHP\");export default FramerJ3UTutv1u;FramerJ3UTutv1u.displayName=\"Recipe Thumbnail\";FramerJ3UTutv1u.defaultProps={height:480,width:300};addPropertyControls(FramerJ3UTutv1u,{variant:{options:[\"HNH1DtZTT\",\"i9oQ8x3_y\",\"DECSjHO5H\",\"UglTPZe0X\"],optionTitles:[\"Desktop\",\"Phone\",\"Phone Highlighted\",\"Desktop Highlighted\"],title:\"Variant\",type:ControlType.Enum},SOIwzHsez:{title:\"Link\",type:ControlType.Link},e9UHOUJfH:{title:\"Image\",type:ControlType.ResponsiveImage},IdwRSRgbG:{defaultValue:true,title:\"Show Tag\",type:ControlType.Boolean},uGpral7VN:{defaultValue:\"Category\",title:\"Category\",type:ControlType.String},I2j7mSaga:{defaultValue:\"Title\",title:\"Title\",type:ControlType.String},vusrZyZOo:{defaultValue:\"1970-01-01T00:00:00.000Z\",title:\"Date\",type:ControlType.Date},m450T7FiA:{defaultValue:\"\",title:\"Slug\",type:ControlType.String}});addFonts(FramerJ3UTutv1u,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...FavouriteButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJ3UTutv1u\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"i9oQ8x3_y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DECSjHO5H\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UglTPZe0X\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"K2MgkP9zu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"SOIwzHsez\\\":\\\"link\\\",\\\"e9UHOUJfH\\\":\\\"image\\\",\\\"IdwRSRgbG\\\":\\\"showTag\\\",\\\"uGpral7VN\\\":\\\"category\\\",\\\"I2j7mSaga\\\":\\\"title\\\",\\\"vusrZyZOo\\\":\\\"date\\\",\\\"m450T7FiA\\\":\\\"slug\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"480\",\"framerIntrinsicWidth\":\"300\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./J3UTutv1u.map"],
  "mappings": "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",
  "names": ["assign", "t", "e", "init", "set", "n", "r", "i", "o", "c", "get", "a", "createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "usePaginationState", "createStore", "useFilterState", "useFavouriteState", "useSearchState", "useRandomizationState", "superfieldsId", "hidden", "ControlType", "Button", "props", "onClick", "onMouseEnter", "_props_font", "_props_style", "_props_customLayer", "_props_style1", "_props_style2", "layer", "width", "height", "p", "u", "createBackground", "Border", "borderPropertyControl", "ControlType", "widthIsMixed", "widthTop", "widthRight", "widthBottom", "widthLeft", "style", "color", "transition", "animate", "radius", "motion", "Message", "title", "subtitle", "createBackground", "fill", "on", "color", "colorA", "colorB", "fillProp", "gradientColorA", "gradientColorB", "noDefault", "props", "ControlType", "fillPropOnOff", "colorOn", "colorAOn", "colorBOn", "colorOff", "colorAOff", "colorBOff", "FavouriteButton", "props", "_favouriteState_cmsCollectionName", "cmsCollectionName", "slug", "colors", "border", "cookieName", "favouriteState", "setFavouriteState", "useFavouriteState", "_favouriteState_cmsCollectionName_includes", "favourite", "ue", "savedState", "t", "error", "onButtonClick", "event", "_props_click", "prev", "favourites", "_props_unfavourited", "item", "_props_favourited", "u", "motion", "createBackground", "p", "HeartIcon", "Border", "addPropertyControls", "ControlType", "fillPropOnOff", "on", "customIcons", "size", "colorOn", "colorOff", "transition", "iconElements", "icon", "index", "image", "FavouriteButtonFonts", "getFonts", "FavouriteButton", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "category", "height", "id", "image", "link", "showTag", "slug", "title", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "SOIwzHsez", "e9UHOUJfH", "IdwRSRgbG", "uGpral7VN", "I2j7mSaga", "vusrZyZOo", "m450T7FiA", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapStart13fmgc8", "args", "onTapStarta79j7j", "ref1", "pe", "activeLocaleCode", "useLocaleCode", "textContent", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "Image2", "RichText2", "ComponentViewportProvider", "css", "FramerJ3UTutv1u", "withCSS", "J3UTutv1u_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
