{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/0JbLZy4cicPNL8ihEfRO/nApVOnbQSRaEXWZIDiOm/Scrollprogress.js", "ssg:https://framerusercontent.com/modules/q6TPcm1rVRPb4ymPsf0M/ozVL167hH9qRZk4f9yzV/TableOfContent.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useEffect,useState,useRef}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";// Code component provided by Eleveight Supply\u2122. All rights reserved 2024.\n/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 1200\n * @framerIntrinsicHeight 300\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight 100%\n */export default function ScrollProgress(props){const[scrollProgress,setScrollProgress]=useState(0);const progressBarRef=useRef(null);const updateScrollProgress=()=>{const totalPageHeight=document.documentElement.scrollHeight-window.innerHeight;const scrollPosition=window.scrollY;const scrollPercentage=Math.min(scrollPosition/totalPageHeight*100,100);setScrollProgress(scrollPercentage);};useEffect(()=>{window.addEventListener(\"scroll\",updateScrollProgress);return()=>{window.removeEventListener(\"scroll\",updateScrollProgress);};},[]);const controlledGlowSpread=spread=>{return Math.log(spread+1)*10;};// For gradient fills, adjust the angle based on orientation\nconst getBackgroundStyle=()=>{if(props.fillType===\"gradient\"){const angle=props.orientation===\"vertical\"?\"180deg\":\"90deg\";return`linear-gradient(${angle}, ${props.gradientStartColor}, ${props.gradientEndColor})`;}return props.fillColor;};const getGlowStyle=()=>{if(props.fillType===\"gradient\"||!props.glowEnabled)return{};const glowColor=props.glowColor||props.fillColor;return{boxShadow:`0 0 ${controlledGlowSpread(props.glowSpread)}px ${controlledGlowSpread(props.glowSpread)}px ${glowColor}`,opacity:props.glowIntensity/100};};// Determine orientation\nconst isVertical=props.orientation===\"vertical\";// Container style: for vertical we use a fixed width (the bar \"thickness\")\nconst containerStyle=isVertical?{width:`${props.barHeight}px`,height:\"100%\",background:getBackgroundStyle(),position:\"relative\",overflow:\"visible\"}:{width:\"100%\",height:`${props.barHeight}px`,background:getBackgroundStyle(),position:\"relative\",overflow:\"visible\"};return /*#__PURE__*/_jsxs(\"div\",{ref:progressBarRef,style:containerStyle,role:\"progressbar\",\"aria-valuenow\":Math.round(scrollProgress),\"aria-valuemin\":0,\"aria-valuemax\":100,children:[/*#__PURE__*/_jsx(motion.div,{initial:isVertical?{height:\"100%\"}:{width:\"100%\"},animate:isVertical?{height:`${100-scrollProgress}%`}:{width:`${100-scrollProgress}%`},transition:props.transition,style:isVertical?{width:\"100%\",backgroundColor:props.backgroundColor,position:\"absolute\",bottom:0,left:0}:{height:\"100%\",backgroundColor:props.backgroundColor,position:\"absolute\",top:0,right:0}}),props.fillType===\"solid\"&&props.glowEnabled&&/*#__PURE__*/_jsx(motion.div,{initial:isVertical?{height:\"0%\"}:{width:\"0%\"},animate:isVertical?{height:`${scrollProgress}%`}:{width:`${scrollProgress}%`},transition:props.transition,style:isVertical?{width:\"100%\",background:props.fillColor,position:\"absolute\",top:0,left:0,...getGlowStyle(),zIndex:1}:{height:\"100%\",background:props.fillColor,position:\"absolute\",top:0,left:0,...getGlowStyle(),zIndex:1}})]});}addPropertyControls(ScrollProgress,{orientation:{type:ControlType.SegmentedEnum,title:\"Orientation\",defaultValue:\"horizontal\",options:[\"horizontal\",\"vertical\"],optionTitles:[\"Horizontal\",\"Vertical\"]},barHeight:{type:ControlType.Number,defaultValue:2,min:1,max:50,step:1,displayStepper:true,unit:\"px\",title:\"Bar Thickness\"},backgroundColor:{type:ControlType.Color,defaultValue:\"#757575\",title:\"Background\"},fillType:{type:ControlType.SegmentedEnum,title:\"Fill Type\",defaultValue:\"solid\",options:[\"solid\",\"gradient\"],optionTitles:[\"Solid\",\"Gradient\"],onChange:(value,props)=>{if(value===\"gradient\"){props.glowEnabled=false;}}},fillColor:{type:ControlType.Color,defaultValue:\"#6200EE\",title:\"Fill\",hidden(props){return props.fillType===\"gradient\";}},gradientStartColor:{type:ControlType.Color,defaultValue:\"#6200EE\",title:\"Start\",hidden(props){return props.fillType===\"solid\";}},gradientEndColor:{type:ControlType.Color,defaultValue:\"#FF00AA\",title:\"End\",hidden(props){return props.fillType===\"solid\";}},glowEnabled:{type:ControlType.Boolean,title:\"Glow\",defaultValue:false,hidden(props){return props.fillType===\"gradient\";}},glowColor:{type:ControlType.Color,defaultValue:\"#6200EE\",title:\"Color\",hidden(props){return props.fillType===\"gradient\"||!props.glowEnabled;}},glowIntensity:{type:ControlType.Number,defaultValue:12,min:0,max:100,step:1,displayStepper:true,unit:\"%\",title:\"Intensity\",hidden(props){return!props.glowEnabled;}},glowSpread:{type:ControlType.Number,defaultValue:3,min:1,max:100,step:1,displayStepper:true,unit:\"%\",title:\"Spread\",hidden(props){return!props.glowEnabled;}},transition:{type:ControlType.Transition,title:\"Transition\",defaultValue:{type:\"tween\",duration:0}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ScrollProgress\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"100%\",\"framerIntrinsicWidth\":\"1200\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"300\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Scrollprogress.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useState,useRef}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerIntrinsicWidth 600\n * @framerSupportedLayoutHeight any-prefer-fixed\n * @framerIntrinsicHeight 400\n */export default function Table_of_Content(props){const[headers,setHeaders]=useState([]);const[activeId,setActiveId]=useState(\"\");const[firstHeadingLevel,setFirstHeadingLevel]=useState(null);const ignoreNextScrollEvent=useRef(false);const scrollTimeoutRef=useRef(null);useEffect(()=>{const sectionElement=document.getElementById(props.section_id)||document.body;const headingElements=Array.from(sectionElement.querySelectorAll(\"h1, h2, h3, h4, h5, h6\"));if(headingElements.length>0&&firstHeadingLevel===null){setFirstHeadingLevel(parseInt(headingElements[0].tagName[1],10));}const headers=headingElements.map((element,index)=>{if(!element.id){element.id=`header-${index}`;}return{id:element.id,text:element.innerText,level:parseInt(element.tagName[1],10)};});setHeaders(headers);},[props.section_id,firstHeadingLevel]);useEffect(()=>{const onScroll=()=>{if(ignoreNextScrollEvent.current){ignoreNextScrollEvent.current=false;return;}let currentSectionId=\"\";headers.filter(header=>props[`showH${header.level}`]!==false).forEach(header=>{const element=document.getElementById(header.id);const scrollPosition=element.getBoundingClientRect().top+window.scrollY;if(scrollPosition<window.scrollY+props.yOffset+5){currentSectionId=header.id;}});setActiveId(currentSectionId);};window.addEventListener(\"scroll\",onScroll);return()=>window.removeEventListener(\"scroll\",onScroll);},[headers,props.yOffset,props]);const getStyle=header=>{const indentation=firstHeadingLevel?header.level-firstHeadingLevel:0;const headerFont=props[`h${header.level}Font`]||{};return{display:\"block\",...headerFont,color:header.id===activeId?props.activeColor:props.fontColor,fontWeight:header.id===activeId?props.activeFontWeight:headerFont.fontWeight||\"normal\",textDecoration:\"none\",marginBottom:`${props.spacing}px`,marginLeft:`${indentation*props.indentation}px`};};const handleClick=headerId=>{ignoreNextScrollEvent.current=true;const element=document.getElementById(headerId);if(element){const y=element.getBoundingClientRect().top+window.pageYOffset-props.yOffset;window.scrollTo({top:y,behavior:\"smooth\"});checkIfScrollFinished(headerId);}};const checkIfScrollFinished=headerId=>{if(scrollTimeoutRef.current){clearTimeout(scrollTimeoutRef.current);}const isScrolled=()=>{const element=document.getElementById(headerId);if(element){const rect=element.getBoundingClientRect();return Math.abs(rect.top-props.yOffset)<=1;}return false;};const checkScroll=()=>{if(isScrolled()){setActiveId(headerId);}else{scrollTimeoutRef.current=setTimeout(()=>{requestAnimationFrame(checkScroll);},10);}};checkScroll();};return /*#__PURE__*/_jsx(\"div\",{children:headers.filter(header=>props[`showH${header.level}`]!==false).map(header=>/*#__PURE__*/_jsx(\"a\",{href:`#${header.id}`,style:getStyle(header),onMouseOver:e=>e.currentTarget.style.color=props.onHoverColor,onMouseOut:e=>{e.currentTarget.style.color=header.id===activeId?props.activeColor:props.fontColor;e.currentTarget.style.fontWeight=header.id===activeId?props.activeFontWeight:getStyle(header).fontWeight;},onClick:e=>{e.preventDefault();handleClick(header.id);},children:header.text},header.id))});}Table_of_Content.defaultProps={section_id:\"\",fontColor:\"#000000\",activeColor:\"#FF0000\",onHoverColor:\"#00FF00\",spacing:8,indentation:10,yOffset:0,activeFontWeight:\"bold\"};addPropertyControls(Table_of_Content,{section_id:{type:ControlType.String,title:\"Section ID\"},fontColor:{type:ControlType.Color,title:\"Font Color\"},activeColor:{type:ControlType.Color,title:\"Active Color\"},onHoverColor:{type:ControlType.Color,title:\"On Hover Color\"},spacing:{type:ControlType.Number,title:\"Spacing\"},indentation:{type:ControlType.Number,title:\"Indentation\"},yOffset:{type:ControlType.Number,title:\"Y Offset\",min:0,max:200,step:1},activeFontWeight:{type:ControlType.Enum,title:\"Active Font Weight\",options:[\"normal\",\"bold\",\"bolder\",\"lighter\",\"100\",\"200\",\"300\",\"400\",\"500\",\"600\",\"700\",\"800\",\"900\"],defaultValue:\"bold\"},showH1:{type:ControlType.Boolean,title:\"Show H1\",defaultValue:true},showH2:{type:ControlType.Boolean,title:\"Show H2\",defaultValue:true},showH3:{type:ControlType.Boolean,title:\"Show H3\",defaultValue:true},showH4:{type:ControlType.Boolean,title:\"Show H4\",defaultValue:true},showH5:{type:ControlType.Boolean,title:\"Show H5\",defaultValue:true},showH6:{type:ControlType.Boolean,title:\"Show H6\",defaultValue:true},h1Font:{// @ts-expect-error \u2013 Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H1 Font\"},h2Font:{// @ts-expect-error \u2013 Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H2 Font\"},h3Font:{// @ts-expect-error \u2013 Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H3 Font\"},h4Font:{// @ts-expect-error \u2013 Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H4 Font\"},h5Font:{// @ts-expect-error \u2013 Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H5 Font\"},h6Font:{// @ts-expect-error \u2013 Internal\ntype:ControlType.Font,controls:\"extended\",title:\"H6 Font\",description:\"Preview to see it in effect \\n\\nv1.6 \\n[via SegmentUI](https://www.segmentUI.com)\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Table_of_Content\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"400\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"600\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TableOfContent.map"],
  "mappings": "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",
  "names": ["ScrollProgress", "props", "scrollProgress", "setScrollProgress", "ye", "progressBarRef", "pe", "updateScrollProgress", "totalPageHeight", "window", "scrollPosition", "scrollPercentage", "ue", "controlledGlowSpread", "spread", "getBackgroundStyle", "getGlowStyle", "glowColor", "isVertical", "containerStyle", "u", "p", "motion", "addPropertyControls", "ControlType", "value", "Table_of_Content", "props", "headers", "setHeaders", "ye", "activeId", "setActiveId", "firstHeadingLevel", "setFirstHeadingLevel", "ignoreNextScrollEvent", "pe", "scrollTimeoutRef", "ue", "sectionElement", "headingElements", "element", "index", "onScroll", "currentSectionId", "header", "window", "getStyle", "indentation", "headerFont", "handleClick", "headerId", "y", "checkIfScrollFinished", "isScrolled", "rect", "checkScroll", "p", "e", "addPropertyControls", "ControlType"]
}
