{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framer.com/m/framer/utils.js@^0.9.0", "ssg:https://framerusercontent.com/modules/ujv7GAj89n7SVbSvTVYE/is2V7XlsSUVSzyd9K6Ch/Examples.js"],
  "sourcesContent": ["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", "export const centerContent = {\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const autoSizingText = {\n    width: \"max-content\",\n    wordBreak: \"break-word\",\n    overflowWrap: \"break-word\",\n    overflow: \"hidden\",\n    whiteSpace: \"pre-wrap\",\n    flexShrink: 0\n};\nexport const defaultContainerStyles = {\n    ...centerContent,\n    overflow: \"hidden\"\n};\nexport const containerStyles = defaultContainerStyles;\nexport const randomColor = ()=>\"#\" + Math.floor(Math.random() * 16777215).toString(16)\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"centerContent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"autoSizingText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultContainerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomColor\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./Utils.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect}from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{randomColor}from\"https://framer.com/m/framer/utils.js@^0.9.0\";// Learn more: https://www.framer.com/docs/guides/overrides/\nconst useStore=createStore({background:\"#0099FF\"});export function additionalStyles(Component){return props=>{useEffect(()=>{const bodyStyle=document.querySelector(\"body\");const liElements=document.querySelectorAll(\"li p\");const strongAElements=document.querySelectorAll(\"a strong\");const strongPElements=document.querySelectorAll(\"p strong\");const framerElements=document.querySelectorAll(\".framer-1ihhc2c, .framer-rtenfh, .framer-fw1r6k, .framer-1arxxg2, .framer-1t1esci, .framer-r1tjui, .framer-1nk3yrr, .framer-mluvf1, .framer-trrvxk, .framer-3atd9n, .framer-agztrk, .framer-15y6v5e, .framer-u3x9g6, .framer-8n6gj0, .framer-olv40b, .framer-1nh9ea6, .framer-1i745wh, .framer-15tfaow, .framer-qi9uwk, .framer-1aacuz4, .framer-ylnbez, .framer-18icuok, .framer-hvh2hy, .framer-12khla2, .framer-1qwc7rk, .framer-gpl94a, .framer-qasj3i, .framer-53qmsk, .framer-10ovyzq, .framer-1ipjsxi, .framer-nn3zuz, .framer-npox7t, .framer-8yznl0, .framer-1h2aiqi, .framer-a7i5uy, .framer-xthdui, .framer-1puwtpi, .framer-4jcbtn, .framer-14r2761, .framer-1onc58f, .framer-1x1o83s, .framer-1rim3kv, .framer-s9ah3p, .framer-2ixw6h, .framer-c4rpte, .framer-dppnvn, .framer-10pnfy, .framer-1s37sgf, .framer-ek2bun, .framer-1nqwuxx, .framer-gwrvjt, .framer-nqe7eb, .framer-1wpt3bz, .framer-1j5cqj9, .framer-vif4sp, .framer-1qwhdvt, .framer-13ubtj3\");framerElements.forEach(element=>{element.style.minHeight=\"min-content\";});strongPElements.forEach(strong=>{strong.style.fontFamily=\"Aspecta, sans-serif\";});strongAElements.forEach(strong=>{strong.style.fontFamily=\"Aspecta, sans-serif\";strong.style.fontWeight=\"400\";});liElements.forEach(p=>{p.style.lineHeight=\"26px\";p.style.marginBottom=\"10px\";});},[]);return /*#__PURE__*/_jsx(Component,{...props});};}export function withRotate(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,animate:{rotate:90},transition:{duration:2}});};}export function withHover(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,whileHover:{scale:1.05}});};}export function withRandomColor(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,animate:{background:store.background},onClick:()=>{setStore({background:randomColor()});}});};}export function scrollSection(Component){return props=>{return /*#__PURE__*/_jsxs(\"div\",{style:{overflowY:\"auto\"},children:[/*#__PURE__*/_jsx(\"div\",{className:\"overlay\"}),/*#__PURE__*/_jsx(Component,{...props})]});};}export function withColorInversion(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,style:{filter:\"invert(1)\"}});};}export function underlineAndHover(Component){const WrapperComponent=props=>{return /*#__PURE__*/_jsx(Component,{...props,style:{...props.style,textDecoration:\"underline\"}});};return WrapperComponent;}export function overflowHidden(Component){return props=>{return /*#__PURE__*/_jsx(\"div\",{style:{overflow:\"hidden\"},children:/*#__PURE__*/_jsx(Component,{...props})});};}export function wordWrap(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,style:{whiteSpace:\"normal\",wordBreak:\"break-word\",overflowWrap:\"break-word\",display:\"inline-block\",width:\"100%\"}});};}export function noWrap(Component){return props=>{useEffect(()=>{const spans=document.querySelectorAll(\"p span\");spans.forEach(span=>{span.style.whiteSpace=\"nowrap\";});},[]);return /*#__PURE__*/_jsx(Component,{...props});};}export function withTouchActionNone(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,style:{touchAction:\"pan-y\"}});};}export function additionalBulletPoints(Component){return props=>{useEffect(()=>{const liElements=document.querySelectorAll(\"li\");const pElements=document.querySelectorAll(\"li > p\");const styleSheet=document.styleSheets[0];styleSheet.insertRule(`li::before {\n                        content: none !important;\n                    }`,styleSheet.cssRules.length);liElements.forEach(li=>{li.style.setProperty(\"content\",\"none\",\"important\");li.style.backgroundPosition=\"0 5px\";li.style.backgroundSize=\"18px\";li.style.backgroundRepeat=\"no-repeat\";li.style.backgroundImage=\"url(https://framerusercontent.com/images/G86TawCRZarjXArQ5VtRcaBlw9A.png)\";li.style.paddingLeft=\"30px\";});pElements.forEach(p=>{p.style.paddingLeft=\"30px\";});},[]);return /*#__PURE__*/_jsx(Component,{...props});};}\nexport const __FramerMetadata__ = {\"exports\":{\"overflowHidden\":{\"type\":\"reactHoc\",\"name\":\"overflowHidden\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"scrollSection\":{\"type\":\"reactHoc\",\"name\":\"scrollSection\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"additionalStyles\":{\"type\":\"reactHoc\",\"name\":\"additionalStyles\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withTouchActionNone\":{\"type\":\"reactHoc\",\"name\":\"withTouchActionNone\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"noWrap\":{\"type\":\"reactHoc\",\"name\":\"noWrap\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"underlineAndHover\":{\"type\":\"reactHoc\",\"name\":\"underlineAndHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"wordWrap\":{\"type\":\"reactHoc\",\"name\":\"wordWrap\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"additionalBulletPoints\":{\"type\":\"reactHoc\",\"name\":\"additionalBulletPoints\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withColorInversion\":{\"type\":\"reactHoc\",\"name\":\"withColorInversion\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Examples.map"],
  "mappings": "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",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "centerContent", "defaultContainerStyles", "centerContent", "useStore", "createStore", "additionalStyles", "Component", "props", "ue", "bodyStyle", "liElements", "strongAElements", "strongPElements", "element", "strong", "p", "underlineAndHover", "Component", "props", "p", "noWrap", "Component", "props", "ue", "span", "p", "additionalBulletPoints", "Component", "props", "ue", "liElements", "pElements", "styleSheet", "li", "p"]
}
