{
  "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/dbwyFhQ6SFnVSsIltZlZ/OY7d7mjac0ntLzav0dNf/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}from\"react/jsx-runtime\";import{forwardRef,useEffect,useState}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/developers/overrides/\nconst useStore=createStore({background:\"#0099FF\"});export function withRotate(Component){return /*#__PURE__*/forwardRef((props,ref)=>{return /*#__PURE__*/_jsx(Component,{ref:ref,...props,animate:{rotate:90},transition:{duration:2}});});}export function withHover(Component){return /*#__PURE__*/forwardRef((props,ref)=>{return /*#__PURE__*/_jsx(Component,{ref:ref,...props,whileHover:{scale:1.05}});});}export function withRandomColor(Component){return /*#__PURE__*/forwardRef((props,ref)=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{ref:ref,...props,animate:{background:store.background},onClick:()=>{setStore({background:randomColor()});}});});}export function withColGap(Component){return /*#__PURE__*/forwardRef((props,ref)=>{return /*#__PURE__*/_jsx(Component,{style:{backgroundImage:\"repeating-linear-gradient(315deg, #1f1f1f 0, #1f1f1f 1px, transparent 0, transparent 50%)\",backgroundSize:\"10px 10px\",borderLeft:\"1px solid #1f1f1f\",borderRight:\"1px solid #1f1f1f\"}});});}export function withLine(Component){return /*#__PURE__*/forwardRef((props,ref)=>{const[uid]=useState(()=>`line-${Math.random().toString(36).slice(2,9)}`);useEffect(()=>{const styleTag=document.createElement(\"style\");styleTag.textContent=`\n        .${uid} {\n          position: relative;\n          overflow: visible;\n        }\n        .${uid}::before,\n        .${uid}::after {\n          content: \"\";\n          position: absolute;\n          left: calc(50% - 50vw); /* \u89C6\u53E3\u5C45\u4E2D\u504F\u79FB\u8BA1\u7B97 */\n          width: 150vw;           /* \u5F3A\u5236\u8986\u76D6\u89C6\u53E3\u5BBD\u5EA6 */\n          height: 1px;\n          background: #1f1f1f;\n          z-index: 1;\n        }\n        .${uid}::before { \n          top: 0;\n\n        }\n        .${uid}::after { \n          bottom: 0;\n\n        }\n      `;document.head.appendChild(styleTag);return()=>document.head.removeChild(styleTag);},[uid]);return /*#__PURE__*/_jsx(\"div\",{className:uid,children:/*#__PURE__*/_jsx(Component,{...props,ref:ref})});});}export function withLineTop(Component){return /*#__PURE__*/forwardRef((props,ref)=>{const[uid]=useState(()=>`line-${Math.random().toString(36).slice(2,9)}`);useEffect(()=>{const styleTag=document.createElement(\"style\");styleTag.textContent=`\n        .${uid} {\n          position: relative;\n          overflow: visible;\n        }\n        .${uid}::before {\n          content: \"\";\n          position: absolute;\n          left: calc(50% - 50vw); /* \u89C6\u53E3\u5C45\u4E2D\u504F\u79FB\u8BA1\u7B97 */\n          width: 150vw;           /* \u5F3A\u5236\u8986\u76D6\u89C6\u53E3\u5BBD\u5EA6 */\n          height: 1px;\n          background: #1f1f1f;\n          z-index: 1;\n        }\n        .${uid}::before { \n          top: 0;\n\n        }\n        .${uid}::after { \n          bottom: 0;\n\n        }\n      `;document.head.appendChild(styleTag);return()=>document.head.removeChild(styleTag);},[uid]);return /*#__PURE__*/_jsx(\"div\",{className:uid,children:/*#__PURE__*/_jsx(Component,{...props,ref:ref})});});}export function withLineBottom(Component){return /*#__PURE__*/forwardRef((props,ref)=>{const[uid]=useState(()=>`line-${Math.random().toString(36).slice(2,9)}`);useEffect(()=>{const styleTag=document.createElement(\"style\");styleTag.textContent=`\n        .${uid} {\n          position: relative;\n          overflow: visible;\n        }\n        .${uid}::after {\n          content: \"\";\n          position: absolute;\n          left: calc(50% - 50vw); /* \u89C6\u53E3\u5C45\u4E2D\u504F\u79FB\u8BA1\u7B97 */\n          width: 150vw;           /* \u5F3A\u5236\u8986\u76D6\u89C6\u53E3\u5BBD\u5EA6 */\n          height: 1px;\n          background: #1f1f1f;\n          z-index: 1;\n        }\n        .${uid}::before { \n          top: 0;\n\n        }\n        .${uid}::after { \n          bottom: 0;\n\n        }\n      `;document.head.appendChild(styleTag);return()=>document.head.removeChild(styleTag);},[uid]);return /*#__PURE__*/_jsx(\"div\",{className:uid,children:/*#__PURE__*/_jsx(Component,{...props,ref:ref})});});}export function withSE(Component){return /*#__PURE__*/forwardRef((props,ref)=>{return /*#__PURE__*/_jsx(Component,{ref:ref,...props,style:{justifyContent:\"space-evenly !important\"}});});}export function withNoContextMenuAndNoSelect(Component){return /*#__PURE__*/forwardRef((props,ref)=>{const handleContextMenu=e=>{e.preventDefault()// \u7981\u6B62\u53F3\u952E\u83DC\u5355\n;};return /*#__PURE__*/_jsx(\"div\",{onContextMenu:handleContextMenu,style:{userSelect:\"none\"},children:/*#__PURE__*/_jsx(Component,{ref:ref,...props})});});}\nexport const __FramerMetadata__ = {\"exports\":{\"withLineTop\":{\"type\":\"reactHoc\",\"name\":\"withLineTop\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSE\":{\"type\":\"reactHoc\",\"name\":\"withSE\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withLine\":{\"type\":\"reactHoc\",\"name\":\"withLine\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withLineBottom\":{\"type\":\"reactHoc\",\"name\":\"withLineBottom\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withNoContextMenuAndNoSelect\":{\"type\":\"reactHoc\",\"name\":\"withNoContextMenuAndNoSelect\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withColGap\":{\"type\":\"reactHoc\",\"name\":\"withColGap\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Examples.map"],
  "mappings": "8GAAqF,SAASA,EAAYC,EAAO,CACjH,IAAMC,EAAUC,EAAK,CAAC,MAAM,OAAO,OAAO,CAAC,GAAGF,CAAM,CAAC,CAAC,CAAC,EACjDG,EAAaC,GAAU,CAC1B,OAAOA,GAAW,aAAYA,EAASA,EAASH,EAAU,KAAK,GAAGA,EAAU,MAAM,OAAO,OAAO,CAAC,GAAGA,EAAU,MAAM,GAAGG,CAAQ,CAAC,CAAE,EACjIC,EAAW,OAAOL,GAAS,SAAS,OAAO,OAAO,CAAC,GAAGA,CAAM,CAAC,EAAEA,EAC7DM,EAAa,IAAI,IACjBC,EAAcH,GAAU,CAC3B,OAAOA,GAAW,aAAYA,EAASA,EAASC,CAAU,GAAGA,EAAW,OAAOD,GAAW,SAAS,OAAO,OAAO,CAAC,GAAGC,EAAW,GAAGD,CAAQ,CAAC,EAAEA,EACjJE,EAAa,QAAQE,GAAQA,EAAOH,CAAU,CAAC,CAAE,EACjD,SAASI,GAAU,CACnB,GAAK,CAACC,EAAMC,CAAQ,EAAEC,EAASP,CAAU,EAIzC,OAFAQ,EAAU,KACVP,EAAa,IAAIK,CAAQ,EAAQ,IAAIL,EAAa,OAAOK,CAAQ,GAAI,CAAC,CAAC,EACpEG,EAAe,IAAI,IAAMA,EAAe,EAAQ,CAACb,EAAU,MAAME,CAAY,GAC1E,CAACO,EAAMH,CAAa,CAAG,CAAC,OAAOE,CAAS,CCfvC,IAAMM,EAAgB,CACzB,QAAS,OACT,eAAgB,SAChB,WAAY,QAChB,EASO,IAAMC,EAAyB,CAClC,GAAGC,EACH,SAAU,QACd,ECfA,IAAMC,EAASC,EAAY,CAAC,WAAW,SAAS,CAAC,EAAsnB,SAASC,EAAWC,EAAU,CAAC,OAAoBC,EAAW,CAACC,EAAMC,IAA2BC,EAAKJ,EAAU,CAAC,MAAM,CAAC,gBAAgB,4FAA4F,eAAe,YAAY,WAAW,oBAAoB,YAAY,mBAAmB,CAAC,CAAC,CAAG,CAAE,CAmExlB,SAASK,EAA6BC,EAAU,CAAC,OAAoBC,EAAW,CAACC,EAAMC,IACldC,EAAK,MAAM,CAAC,cADqeC,GAAG,CAACA,EAAE,eAAe,CAC5hB,EAAkE,MAAM,CAAC,WAAW,MAAM,EAAE,SAAsBD,EAAKJ,EAAU,CAAC,IAAIG,EAAI,GAAGD,CAAK,CAAC,CAAC,CAAC,CAAG,CAAE",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "centerContent", "defaultContainerStyles", "centerContent", "useStore", "createStore", "withColGap", "Component", "Y", "props", "ref", "p", "withNoContextMenuAndNoSelect", "Component", "Y", "props", "ref", "p", "e"]
}
