{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/fsl9YcyCK6ElCyDYQXkv/ToUP8fou4P50cTpnLbZ8/SegmentedControl.js", "ssg:https://framerusercontent.com/modules/J1VmgjiZpmYu4IQyT4sw/LEDqjmbPKGtEmqA9P0qo/Dgdr5wvZ6.js", "ssg:https://framerusercontent.com/modules/b1Or141BOCdMqVoGg0eZ/7ZDNX48Fp7oAPhQXPU9W/MmrXAxNpA.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import*as React from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{motion,LayoutGroup}from\"framer-motion\";import{fontStack,fontControls,fontSizeOptions,colorTokentoValue,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * SEGMENTED CONTROL\n *\n * @framerIntrinsicWidth 320\n * @framerIntrinsicHeight 50\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export function SegmentedControl(props){const{// Other props\nslide,segments,defaultSegment,disabled,// Variant props\nactiveTextColor,activeBackground,activeBorderColor,shadow,inactiveTextColor,inactiveBackground,inactiveBorderColor,inactiveBorderSize,disabledTextColor,disabledBackground,disabledBorderColor,disabledBorderSize,// Style props\nfontSize,trackColor,divider,dividerColor,// Transition props\nsegmentTransition,// Event props\nonChange,onSegment1Tap,onSegment2Tap,onSegment3Tap,onSegment4Tap,onSegment5Tap,distribution,id,fontFamily,fontWeight,// Stack props\n...stackProps}=props;delete stackProps.height;delete stackProps.width;// Props shared by Stack and other elements\nconst{// Mixed border radius\nradius,isMixedBorderRadius,topLeftBorderRadius,topRightBorderRadius,bottomRightBorderRadius,bottomLeftBorderRadius,gap,padding,// Mixed Active Border Size\nactiveBorderSize,isMixedActiveBorder,topActiveBorderSize,rightActiveBorderSize,bottomActiveBorderSize,leftActiveBorderSize,direction}=props;const outerBorderRadius=isMixedBorderRadius?`${topLeftBorderRadius}px ${topRightBorderRadius}px ${bottomRightBorderRadius}px ${bottomLeftBorderRadius}px`:`${radius}px`;const innerBorderRadius=isMixedBorderRadius?`${topLeftBorderRadius-padding}px ${topRightBorderRadius-padding}px ${bottomRightBorderRadius-padding}px ${bottomLeftBorderRadius-padding}px`:`${radius-padding}px`;const allSegments=[{text:segments[0],defaultEvent:onChange,event:onSegment1Tap},{text:segments[1],defaultEvent:onChange,event:onSegment2Tap},{text:segments[2],defaultEvent:onChange,event:onSegment3Tap},{text:segments[3],defaultEvent:onChange,event:onSegment4Tap},{text:segments[4],defaultEvent:onChange,event:onSegment5Tap},].slice(0,segments.length);const[selected,setSelected]=React.useState(defaultSegment-1);React.useEffect(()=>{setSelected(defaultSegment-1);},[defaultSegment]);const fontStyles=useFontControls(props);const variants={selected:{background:colorTokentoValue(activeBackground),color:colorTokentoValue(activeTextColor),boxShadow:shadow?\"0px 2px 6px rgba(0,0,0,0.1), 0px 4px 16px rgba(0,0,0,0.1)\":\"0px 0px 0px rgba(0,0,0,0)\",border:!isMixedActiveBorder&&`${activeBorderSize}px solid ${activeBorderColor}`,borderTop:isMixedActiveBorder&&`${topActiveBorderSize}px solid ${activeBorderColor}`,borderRight:isMixedActiveBorder&&`${rightActiveBorderSize}px solid ${activeBorderColor}`,borderBottom:isMixedActiveBorder&&`${bottomActiveBorderSize}px solid ${activeBorderColor}`,borderLeft:isMixedActiveBorder&&`${leftActiveBorderSize}px solid ${activeBorderColor}`},notSelected:{background:colorTokentoValue(inactiveBackground),color:colorTokentoValue(inactiveTextColor),boxShadow:\"0px 0px 0px rgba(0,0,0,0), 0px 0px 0px rgba(0,0,0,0)\",border:`${inactiveBorderSize}px solid ${inactiveBorderColor}`},disabled:{background:colorTokentoValue(disabledBackground),color:colorTokentoValue(disabledTextColor),boxShadow:\"0px 0px 0px rgba(0,0,0,0)\",border:`${disabledBorderSize}px solid ${disabledBorderColor}`}};return segments.length>0?/*#__PURE__*/ _jsxs(LayoutGroup,{children:[/*#__PURE__*/ _jsx(motion.div,{...stackProps,style:{borderRadius:outerBorderRadius,width:\"100%\",height:\"100%\",position:\"relative\",display:\"flex\",padding,background:trackColor},children:allSegments.map((segment,index)=>{return(/*#__PURE__*/ _jsxs(motion.div,{// Sizing props\nstyle:{// top: 0,\n// left: 0,\n// position: \"absolute\",\nflex:1,height:direction===\"horizontal\"?\"100%\":`${100/segments.length}% `,width:direction===\"horizontal\"?\"1fr\":\"100%\",borderRadius:outerBorderRadius,WebkitTapHighlightColor:\"rgba(0, 0, 0, 0)\",display:\"flex\"},variants:variants,transition:{ease:\"linear\"},initial:disabled?\"disabled\":slide?\"notSelected\":index===defaultSegment-1?\"selected\":\"notSelected\",animate:disabled?\"disabled\":slide?\"notSelected\":selected===index?\"selected\":\"notSelected\",\"data-framer-highlight\":!disabled,onClick:disabled?undefined:()=>{setSelected(index);if(segment.event)segment.event();if(segment.defaultEvent)segment.defaultEvent(index);},children:[/*#__PURE__*/ _jsx(\"h3\",{style:{...segmentTextStyle,fontSize,...fontStyles},children:segment===null||segment===void 0?void 0:segment.text}),segments.length>1&&index!==segments.length-1&&/*#__PURE__*/ _jsx(motion.div,{style:{height:!divider?0:direction===\"horizontal\"?\"calc(100% - 16px)\":1,width:!divider?0:direction===\"horizontal\"?1:\"calc(100% - 16px)\",background:divider?dividerColor:null,marginTop:8,marginRight:-2+index-gap*0}})]},index));})}),!disabled&&slide&&/*#__PURE__*/ _jsx(motion.div,{...stackProps,layoutId:stackProps.layoutId?`${stackProps.layoutId}-segment`:\"segment\",style:{width:\"100%\",height:\"100%\",display:\"flex\",position:\"absolute\",pointerEvents:\"none\",top:0,left:0,padding},children:allSegments.map((segment,index)=>{var ref;const isSelected=index===selected;const isLast=index===allSegments.length-1;const isFirst=index===0;const gapSize=isFirst||isLast||!isSelected?gap/2:gap;const margin=`0 ${isLast?0:gapSize}px 0 ${isFirst?0:gapSize}px`;return(/*#__PURE__*/ _jsx(motion.div,{layout:true,style:{flex:1,width:\"100%\",pointerEvents:\"none\",margin,WebkitTapHighlightColor:\"rgba(0, 0, 0, 0)\",boxShadow:shadow&&isSelected?\"0px 2px 6px rgba(0,0,0,0.1), 0px 4px 16px rgba(0,0,0,0.1)\":\"0px 0px 0px rgba(0,0,0,0)\",display:\"flex\",color:isSelected?colorTokentoValue(activeTextColor):\"transparent\",background:isSelected?colorTokentoValue(activeBackground):\"transparent\",// background: \"blue\",\nborderRadius:innerBorderRadius,boxSizing:\"border-box\",border:isSelected?`${activeBorderSize}px solid ${activeBorderColor}`:\"0px solid rgba(0,0,0,0.0)\"},children:/*#__PURE__*/ _jsx(\"h3\",{style:{...segmentTextStyle,fontSize,...fontStyles,pointerEvents:\"none\"},children:(ref=allSegments[selected])===null||ref===void 0?void 0:ref.text})},isSelected?\"selected_segment\":index));})})]}):/*#__PURE__*/ _jsxs(\"div\",{style:segmentsHelperContainer,children:[/*#__PURE__*/ _jsx(\"p\",{style:{...segmentsHelperTextStyle,fontWeight:600},children:\"Segments\"}),/*#__PURE__*/ _jsx(\"p\",{style:segmentsHelperTextStyle,children:\"Use the properties panel to add segments.\"})]});}SegmentedControl.defaultProps={// Sizing props\nheight:50,width:320,// Stack props\ndirection:\"horizontal\",// Other props\nsegments:[\"Item 1\",\"Item 2\",\"Item 3\"],slide:true,defaultSegment:1,disabled:false,// Variant props\nvariant:\"active\",activeTextColor:\"#0099ff\",activeBackground:\"#ffffff\",activeBorderColor:\"rgba(0, 0, 0, 0)\",activeBorderSize:1,shadow:true,inactiveTextColor:\"#BBBBBB\",inactiveBackground:\"rgba(0, 0, 0, 0)\",inactiveBorderColor:\"rgba(0, 0, 0, 0)\",inactiveBorderSize:1,disabledTextColor:\"#AAAAAA\",disabledBackground:\"#ebebeb\",disabledBorderColor:\"rgba(0, 0, 0, 0)\",disabledBorderSize:1,// Style props\nfontSize:14,radius:8,padding:3,trackColor:\"#ebebeb\",divider:true,dividerColor:\"rgba(0,0,0,0.05)\",fontWeight:600};// @ts-ignore\naddPropertyControls(SegmentedControl,{direction:{type:ControlType.Enum,displaySegmentedControl:true,options:[\"horizontal\",\"vertical\"],defaultValue:SegmentedControl.defaultProps.direction},defaultSegment:{type:ControlType.Number,title:\"Selected\",defaultValue:SegmentedControl.defaultProps.defaultSegment,displayStepper:true,step:1,min:1,max:5},variant:{type:ControlType.Enum,title:\"Variants\",defaultValue:SegmentedControl.defaultProps.variant,options:[\"active\",\"inactive\",\"disabled\"],optionTitles:[\"Active\",\"Inactive\",\"Disabled\"]},// Active Variant Property Controls\nactiveTextColor:{type:ControlType.Color,title:\"Text Color\",defaultValue:SegmentedControl.defaultProps.activeTextColor,hidden:({variant})=>variant!==\"active\"},activeBackground:{title:\"Bg Color\",type:ControlType.Color,defaultValue:SegmentedControl.defaultProps.activeBackground,hidden:({variant})=>variant!==\"active\"},activeBorderColor:{type:ControlType.Color,title:\"Border Color\",defaultValue:SegmentedControl.defaultProps.activeBorderColor,hidden:({variant})=>variant!==\"active\"},activeBorderSize:{title:\"Border Width\",type:ControlType.FusedNumber,defaultValue:SegmentedControl.defaultProps.activeBorderSize,toggleKey:\"isMixedActiveBorder\",toggleTitles:[\"Border\",\"Border per side\"],valueKeys:[\"topActiveBorderSize\",\"rightActiveBorderSize\",\"bottomActiveBorderSize\",\"leftActiveBorderSize\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0,hidden:({variant})=>variant!==\"active\"},shadow:{title:\"Shadow\",type:ControlType.Boolean,defaultValue:SegmentedControl.defaultProps.shadow,enabledTitle:\"Show\",disabledTitle:\"Hide\",hidden:({variant})=>variant!==\"active\"},// Inactive Variant Property Controls\ninactiveTextColor:{type:ControlType.Color,title:\"Text Color\",defaultValue:SegmentedControl.defaultProps.inactiveTextColor,hidden:({variant})=>variant!==\"inactive\"},inactiveBackground:{title:\"Bg Color\",type:ControlType.Color,defaultValue:SegmentedControl.defaultProps.inactiveBackground,hidden:({variant})=>variant!==\"inactive\"},inactiveBorderColor:{type:ControlType.Color,title:\"Border Color\",defaultValue:SegmentedControl.defaultProps.inactiveBorderColor,hidden:({variant})=>variant!==\"inactive\"},inactiveBorderSize:{type:ControlType.Number,title:\"Border Size\",displayStepper:true,step:1,min:1,max:25,defaultValue:SegmentedControl.defaultProps.inactiveBorderSize,hidden:({variant})=>variant!==\"inactive\"},// Disabled Variant Property Controls\ndisabledTextColor:{type:ControlType.Color,title:\"Text Color\",defaultValue:SegmentedControl.defaultProps.disabledTextColor,hidden:({variant})=>variant!==\"disabled\"},disabledBackground:{type:ControlType.Color,title:\"Bg Color\",defaultValue:SegmentedControl.defaultProps.disabledBackground,hidden:({variant})=>variant!==\"disabled\"},disabledBorderColor:{type:ControlType.Color,title:\"Border Color\",defaultValue:SegmentedControl.defaultProps.disabledBorderColor,hidden:({variant})=>variant!==\"disabled\"},disabledBorderSize:{type:ControlType.Number,title:\"Border Size\",displayStepper:true,step:1,min:1,max:25,defaultValue:SegmentedControl.defaultProps.disabledBorderSize,hidden:({variant})=>variant!==\"disabled\"},// Other Property Controls\nslide:{type:ControlType.Boolean,title:\"Slide\",enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:SegmentedControl.defaultProps.slide},segmentTransition:{title:\"Transition\",type:ControlType.Transition,// defaultValue: SegmentedControl.defaultProps.segmentTransition,\nhidden:({slide})=>slide===false},trackColor:{type:ControlType.Color,title:\"Track Color\",defaultValue:SegmentedControl.defaultProps.trackColor},radius:{title:\"Radius\",type:ControlType.FusedNumber,defaultValue:SegmentedControl.defaultProps.radius,toggleKey:\"isMixedBorderRadius\",toggleTitles:[\"Radius\",\"Radius per corner\"],valueKeys:[\"topLeftBorderRadius\",\"topRightBorderRadius\",\"bottomRightBorderRadius\",\"bottomLeftBorderRadius\",],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0},gap:{displayStepper:true,type:ControlType.Number},fontSize:{...fontSizeOptions,defaultValue:SegmentedControl.defaultProps.fontSize},...fontControls,disabled:{type:ControlType.Boolean,title:\"Disabled\",enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:SegmentedControl.defaultProps.disabled},divider:{type:ControlType.Boolean,title:\"Dividers\",defaultValue:SegmentedControl.defaultProps.divider,enabledTitle:\"Show\",disabledTitle:\"Hide\"},dividerColor:{type:ControlType.Color,title:\"Color\",defaultValue:SegmentedControl.defaultProps.dividerColor,hidden:({divider})=>divider===false},// Event Property Controls\nonChange:{title:\"On Change\",type:ControlType.EventHandler},onSegment1Tap:{title:\"Segment 1 Tap\",type:ControlType.EventHandler},onSegment2Tap:{title:\"Segment 2 Tap\",type:ControlType.EventHandler},onSegment3Tap:{title:\"Segment 3 Tap\",type:ControlType.EventHandler},onSegment4Tap:{title:\"Segment 4 Tap\",type:ControlType.EventHandler},onSegment5Tap:{title:\"Segment 5 Tap\",type:ControlType.EventHandler},// Segment Property Controls\nsegments:{type:ControlType.Array,title:\"Segments\",maxCount:5,defaultValue:SegmentedControl.defaultProps.segments,propertyControl:{type:ControlType.String}}});const segmentTextStyle={fontFamily:fontStack,// fontSize: 12,\nletterSpacing:0,fontWeight:600,textAlign:\"center\",margin:\"auto auto\"};const segmentsHelperContainer={width:\"100%\",height:\"100%\",borderRadius:6,background:\"rgba(136, 85, 255, 0.3)\",border:\"1px dashed #85F\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};const segmentsHelperTextStyle={fontFamily:fontStack,color:\"#8856FF\",fontSize:10,letterSpacing:0,lineHeight:1.4,fontWeight:400,marginTop:0,marginBottom:0,maxWidth:\"300px\",textAlign:\"center\"};SegmentedControl.displayName=\"Segmented Control\";\nexport const __FramerMetadata__ = {\"exports\":{\"SegmentedControl\":{\"type\":\"reactComponent\",\"name\":\"SegmentedControl\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"320\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"50\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SegmentedControl.map", "// Generated by Framer (89417f6)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{SegmentedControl}from\"https://framerusercontent.com/modules/fsl9YcyCK6ElCyDYQXkv/ToUP8fou4P50cTpnLbZ8/SegmentedControl.js\";const SegmentedControlFonts=getFonts(SegmentedControl);const cycleOrder=[\"YF4hUyD2w\",\"r6b8WieaP\"];const variantClassNames={r6b8WieaP:\"framer-v-7excwb\",YF4hUyD2w:\"framer-v-15r5wc2\"};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 transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};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 humanReadableVariantMap={\"50\u540D\u4EE5\u4E0B\":\"r6b8WieaP\",\"51\u540D\u4EE5\u4E0A\":\"YF4hUyD2w\"};const getProps=({height,id,tap,width,...props})=>{var _variant,ref;return{...props,variant:(ref=(_variant=humanReadableVariantMap[props.variant])!==null&&_variant!==void 0?_variant:props.variant)!==null&&ref!==void 0?ref:\"YF4hUyD2w\",yEp6Ngnk9:tap!==null&&tap!==void 0?tap:props.yEp6Ngnk9};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/ React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,yEp6Ngnk9,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"YF4hUyD2w\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap14lkxgw=activeVariantCallback(async(...args)=>{if(yEp6Ngnk9){const res=await yEp6Ngnk9(...args);if(res===false)return false;}});const onSegment1Tap189jpjt=activeVariantCallback(async(...args)=>{setVariant(\"r6b8WieaP\");});const onSegment2Tap1t6lv3i=activeVariantCallback(async(...args)=>{setVariant(\"YF4hUyD2w\");});const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-Fn4Sk\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsx(motion.div,{...restProps,className:cx(\"framer-15r5wc2\",className),\"data-framer-name\":\"51\u540D\u4EE5\u4E0A\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"YF4hUyD2w\",onTap:onTap14lkxgw,ref:ref,style:{...style},...addPropertyOverrides({r6b8WieaP:{\"data-framer-name\":\"50\u540D\u4EE5\u4E0B\"}},baseVariant,gestureVariant),children:/*#__PURE__*/ _jsx(motion.div,{className:\"framer-75kyju-container\",layoutDependency:layoutDependency,layoutId:\"ENkUEfE9q-container\",children:/*#__PURE__*/ _jsx(SegmentedControl,{activeBackground:'var(--token-66097d49-3aab-486d-bdf4-c11c693bbe1d, rgb(226, 117, 15)) /* {\"name\":\"MF Orange\"} */',activeBorderColor:\"rgba(0, 0, 0, 0)\",activeBorderSize:1,activeTextColor:\"rgb(255, 255, 255)\",bottomActiveBorderSize:1,bottomLeftBorderRadius:8,bottomRightBorderRadius:8,defaultSegment:2,direction:\"horizontal\",disabled:false,disabledBackground:\"rgb(235, 235, 235)\",disabledBorderColor:\"rgba(0, 0, 0, 0)\",disabledBorderSize:1,disabledTextColor:\"rgb(170, 170, 170)\",divider:true,dividerColor:\"rgba(0, 0, 0, 0.05)\",font:false,fontFamily:\"\",fontSize:14,fontWeight:600,gap:0,height:\"100%\",id:\"ENkUEfE9q\",inactiveBackground:\"rgba(0, 0, 0, 0)\",inactiveBorderColor:\"rgba(0, 0, 0, 0)\",inactiveBorderSize:1,inactiveTextColor:\"rgb(187, 187, 187)\",isMixedActiveBorder:false,isMixedBorderRadius:false,layoutId:\"ENkUEfE9q\",leftActiveBorderSize:1,onSegment1Tap:onSegment1Tap189jpjt,onSegment2Tap:onSegment2Tap1t6lv3i,radius:8,rightActiveBorderSize:1,segments:[\"50\u540D\u4EE5\u4E0B\",\"51\u540D\u4EE5\u4E0A\"],segmentTransition:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},shadow:true,slide:true,style:{height:\"100%\",width:\"100%\"},topActiveBorderSize:1,topLeftBorderRadius:8,topRightBorderRadius:8,trackColor:\"rgb(235, 235, 235)\",variant:\"active\",width:\"100%\",...addPropertyOverrides({r6b8WieaP:{defaultSegment:1}},baseVariant,gestureVariant)})})})})})});});const css=['.framer-Fn4Sk [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Fn4Sk .framer-1fxiwvs { display: block; }\",\".framer-Fn4Sk .framer-15r5wc2 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 310px; }\",\".framer-Fn4Sk .framer-75kyju-container { flex: none; height: 50px; position: relative; width: 320px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Fn4Sk .framer-15r5wc2 { gap: 0px; } .framer-Fn4Sk .framer-15r5wc2 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-Fn4Sk .framer-15r5wc2 > :first-child { margin-left: 0px; } .framer-Fn4Sk .framer-15r5wc2 > :last-child { margin-right: 0px; } }\",\".framer-Fn4Sk.framer-v-7excwb .framer-15r5wc2 { width: min-content; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 50\n * @framerIntrinsicWidth 310\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"r6b8WieaP\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"yEp6Ngnk9\":\"tap\"}\n * @framerImmutableVariables false\n */ const FramerDgdr5wvZ6=withCSS(Component,css,\"framer-Fn4Sk\");export default FramerDgdr5wvZ6;FramerDgdr5wvZ6.displayName=\"JP Tab Employee\";FramerDgdr5wvZ6.defaultProps={height:50,width:310};addPropertyControls(FramerDgdr5wvZ6,{variant:{options:[\"YF4hUyD2w\",\"r6b8WieaP\"],optionTitles:[\"51\u540D\u4EE5\u4E0A\",\"50\u540D\u4EE5\u4E0B\"],title:\"Variant\",type:ControlType.Enum},yEp6Ngnk9:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerDgdr5wvZ6,[...SegmentedControlFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDgdr5wvZ6\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"false\",\"framerIntrinsicHeight\":\"50\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"r6b8WieaP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"310\",\"framerVariables\":\"{\\\"yEp6Ngnk9\\\":\\\"tap\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Dgdr5wvZ6.map", "// Generated by Framer (92d6359)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import JPTabEmployee from\"https://framerusercontent.com/modules/J1VmgjiZpmYu4IQyT4sw/LEDqjmbPKGtEmqA9P0qo/Dgdr5wvZ6.js\";const JPTabEmployeeFonts=getFonts(JPTabEmployee);const EmbedFonts=getFonts(Embed);const cycleOrder=[\"Sx2cthlwp\",\"G0hN5gABo\",\"kHXJvcrhj\",\"M7oyEWmFr\"];const serializationHash=\"framer-uIK0z\";const variantClassNames={G0hN5gABo:\"framer-v-h7ifo1\",kHXJvcrhj:\"framer-v-1im1b8n\",M7oyEWmFr:\"framer-v-vo7sa9\",Sx2cthlwp:\"framer-v-vo2fnw\"};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 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.create(React.Fragment);const humanReadableVariantMap={\"50\u540D\u4EE5\u4E0B\":\"G0hN5gABo\",\"51\u540D\u4EE5\u4E0A\":\"Sx2cthlwp\",\"SP-50\u540D\u4EE5\u4E0B\":\"M7oyEWmFr\",\"SP-51\u540D\u4EE5\u4E0A\":\"kHXJvcrhj\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"Sx2cthlwp\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Sx2cthlwp\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const yEp6Ngnk91u1pm5h=activeVariantCallback(async(...args)=>{setVariant(\"G0hN5gABo\");});const yEp6Ngnk91yhogxo=activeVariantCallback(async(...args)=>{setVariant(\"Sx2cthlwp\");});const yEp6Ngnk910p1ejy=activeVariantCallback(async(...args)=>{setVariant(\"kHXJvcrhj\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"G0hN5gABo\",\"M7oyEWmFr\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"G0hN5gABo\",\"M7oyEWmFr\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-vo2fnw\",className,classNames),\"data-framer-name\":\"51\u540D\u4EE5\u4E0A\",layoutDependency:layoutDependency,layoutId:\"Sx2cthlwp\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({G0hN5gABo:{\"data-framer-name\":\"50\u540D\u4EE5\u4E0B\"},kHXJvcrhj:{\"data-framer-name\":\"SP-51\u540D\u4EE5\u4E0A\"},M7oyEWmFr:{\"data-framer-name\":\"SP-50\u540D\u4EE5\u4E0B\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gibjlp\",layoutDependency:layoutDependency,layoutId:\"gt3Wvhul7\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qgbfvs-container\",layoutDependency:layoutDependency,layoutId:\"OTsZdy5PS-container\",children:/*#__PURE__*/_jsx(JPTabEmployee,{height:\"100%\",id:\"OTsZdy5PS\",layoutId:\"OTsZdy5PS\",variant:\"YF4hUyD2w\",width:\"100%\",yEp6Ngnk9:yEp6Ngnk91u1pm5h,...addPropertyOverrides({G0hN5gABo:{variant:\"r6b8WieaP\",yEp6Ngnk9:yEp6Ngnk91yhogxo},M7oyEWmFr:{variant:\"r6b8WieaP\",yEp6Ngnk9:yEp6Ngnk910p1ejy}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fhd8vq-container\",\"data-framer-name\":\"Embed CalenderA\",layoutDependency:layoutDependency,layoutId:\"JT19vBWT2-container\",name:\"Embed CalenderA\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<!-- Start of Meetings Embed Script -->\\n<div class=\"meetings-iframe-container\" data-src=\"https://meetings.hubspot.com/shimpei-oishi/mtg-demo?embed=true\" style=\"height: 600px; width: 800px;\"></div>\\n<script type=\"text/javascript\" src=\"https://static.hsappstatic.net/MeetingsEmbed/ex/MeetingsEmbedCode.js\"></script>\\n<!-- End of Meetings Embed Script -->',id:\"JT19vBWT2\",layoutId:\"JT19vBWT2\",name:\"Embed CalenderA\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"https://meetings.hubspot.com/shimpei-oishi/mtg-demo\",width:\"100%\",...addPropertyOverrides({kHXJvcrhj:{html:'<!-- Start of Meetings Embed Script -->\\n<div class=\"meetings-iframe-container\" data-src=\"https://meetings.hubspot.com/shimpei-oishi/mtg-demo?embed=true\" style=\"height: 600px; width: 350px;\"></div>\\n<script type=\"text/javascript\" src=\"https://static.hsappstatic.net/MeetingsEmbed/ex/MeetingsEmbedCode.js\"></script>\\n<!-- End of Meetings Embed Script -->'}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qpmhsw-container\",\"data-framer-name\":\"Embed Calender C\",layoutDependency:layoutDependency,layoutId:\"ZWv5RB0Lr-container\",name:\"Embed Calender C\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<!-- Start of Meetings Embed Script -->\\n    <div class=\"meetings-iframe-container\" data-src=\"https://meetings.hubspot.com/shimpei-oishi/mtg-demo-c?embed=true\" style=\"height: 600px; width: 800px;\"></div>\\n    <script type=\"text/javascript\" src=\"https://static.hsappstatic.net/MeetingsEmbed/ex/MeetingsEmbedCode.js\"></script>\\n  <!-- End of Meetings Embed Script -->',id:\"ZWv5RB0Lr\",layoutId:\"ZWv5RB0Lr\",name:\"Embed Calender C\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"https://meetings.hubspot.com/shimpei-oishi/mtg-demo\",width:\"100%\",...addPropertyOverrides({G0hN5gABo:{html:'<div class=\"meetings-iframe-container\" data-src=\"https://meetings.hubspot.com/shimpei-oishi/mtg-demo-c?embed=true\" style=\"height: 600px; width: 800px;\"></div>\\n<script type=\"text/javascript\" src=\"https://static.hsappstatic.net/MeetingsEmbed/ex/MeetingsEmbedCode.js\"></script>\\n<!-- End of Meetings Embed Script -->'},M7oyEWmFr:{html:'<!-- Start of Meetings Embed Script -->\\n<div class=\"meetings-iframe-container\" data-src=\"https://meetings.hubspot.com/shimpei-oishi/mtg-demo-c?embed=true\" style=\"height: 600px; width: 350px;\"></div>\\n<script type=\"text/javascript\" src=\"https://static.hsappstatic.net/MeetingsEmbed/ex/MeetingsEmbedCode.js\"></script>\\n<!-- End of Meetings Embed Script -->'}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uIK0z.framer-1i8k912, .framer-uIK0z .framer-1i8k912 { display: block; }\",\".framer-uIK0z.framer-vo2fnw { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 801px; }\",\".framer-uIK0z .framer-gibjlp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-uIK0z .framer-1qgbfvs-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-uIK0z .framer-1fhd8vq-container { flex: none; height: 610px; position: relative; width: 800px; }\",\".framer-uIK0z .framer-1qpmhsw-container { flex: none; height: 600px; position: relative; width: 800px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uIK0z.framer-vo2fnw, .framer-uIK0z .framer-gibjlp { gap: 0px; } .framer-uIK0z.framer-vo2fnw > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-uIK0z.framer-vo2fnw > :first-child, .framer-uIK0z .framer-gibjlp > :first-child { margin-top: 0px; } .framer-uIK0z.framer-vo2fnw > :last-child, .framer-uIK0z .framer-gibjlp > :last-child { margin-bottom: 0px; } .framer-uIK0z .framer-gibjlp > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",\".framer-uIK0z.framer-v-h7ifo1 .framer-gibjlp { gap: 14px; justify-content: flex-start; }\",\".framer-uIK0z.framer-v-h7ifo1 .framer-1qpmhsw-container { height: 610px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uIK0z.framer-v-h7ifo1 .framer-gibjlp { gap: 0px; } .framer-uIK0z.framer-v-h7ifo1 .framer-gibjlp > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-uIK0z.framer-v-h7ifo1 .framer-gibjlp > :first-child { margin-top: 0px; } .framer-uIK0z.framer-v-h7ifo1 .framer-gibjlp > :last-child { margin-bottom: 0px; } }\",\".framer-uIK0z.framer-v-1im1b8n.framer-vo2fnw, .framer-uIK0z.framer-v-vo7sa9.framer-vo2fnw, .framer-uIK0z.framer-v-vo7sa9 .framer-1qpmhsw-container { width: 350px; }\",\".framer-uIK0z.framer-v-1im1b8n .framer-1fhd8vq-container { height: 600px; width: 350px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 690\n * @framerIntrinsicWidth 801\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"G0hN5gABo\":{\"layout\":[\"fixed\",\"auto\"]},\"kHXJvcrhj\":{\"layout\":[\"fixed\",\"auto\"]},\"M7oyEWmFr\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerMmrXAxNpA=withCSS(Component,css,\"framer-uIK0z\");export default FramerMmrXAxNpA;FramerMmrXAxNpA.displayName=\"JP-calender-select\";FramerMmrXAxNpA.defaultProps={height:690,width:801};addPropertyControls(FramerMmrXAxNpA,{variant:{options:[\"Sx2cthlwp\",\"G0hN5gABo\",\"kHXJvcrhj\",\"M7oyEWmFr\"],optionTitles:[\"51\u540D\u4EE5\u4E0A\",\"50\u540D\u4EE5\u4E0B\",\"SP-51\u540D\u4EE5\u4E0A\",\"SP-50\u540D\u4EE5\u4E0B\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerMmrXAxNpA,[{explicitInter:true,fonts:[]},...JPTabEmployeeFonts,...EmbedFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMmrXAxNpA\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"801\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"G0hN5gABo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kHXJvcrhj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"M7oyEWmFr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"690\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MmrXAxNpA.map"],
  "mappings": "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",
  "names": ["SegmentedControl", "props", "slide", "segments", "defaultSegment", "disabled", "activeTextColor", "activeBackground", "activeBorderColor", "shadow", "inactiveTextColor", "inactiveBackground", "inactiveBorderColor", "inactiveBorderSize", "disabledTextColor", "disabledBackground", "disabledBorderColor", "disabledBorderSize", "fontSize", "trackColor", "divider", "dividerColor", "segmentTransition", "onChange", "onSegment1Tap", "onSegment2Tap", "onSegment3Tap", "onSegment4Tap", "onSegment5Tap", "distribution", "id", "fontFamily", "fontWeight", "stackProps", "radius", "isMixedBorderRadius", "topLeftBorderRadius", "topRightBorderRadius", "bottomRightBorderRadius", "bottomLeftBorderRadius", "gap", "padding", "activeBorderSize", "isMixedActiveBorder", "topActiveBorderSize", "rightActiveBorderSize", "bottomActiveBorderSize", "leftActiveBorderSize", "direction", "outerBorderRadius", "innerBorderRadius", "allSegments", "selected", "setSelected", "ye", "ue", "fontStyles", "useFontControls", "variants", "colorTokentoValue", "u", "LayoutGroup", "p", "motion", "segment", "index", "segmentTextStyle", "ref", "isSelected", "isLast", "isFirst", "gapSize", "margin", "segmentsHelperContainer", "segmentsHelperTextStyle", "addPropertyControls", "ControlType", "variant", "fontSizeOptions", "fontControls", "fontStack", "SegmentedControlFonts", "getFonts", "SegmentedControl", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "tap", "width", "props", "_variant", "ref", "createLayoutDependency", "Component", "Y", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "yEp6Ngnk9", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap14lkxgw", "args", "onSegment1Tap189jpjt", "onSegment2Tap1t6lv3i", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "css", "FramerDgdr5wvZ6", "withCSS", "Dgdr5wvZ6_default", "addPropertyControls", "ControlType", "addFonts", "JPTabEmployeeFonts", "getFonts", "Dgdr5wvZ6_default", "EmbedFonts", "Embed", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "yEp6Ngnk91u1pm5h", "args", "yEp6Ngnk91yhogxo", "yEp6Ngnk910p1ejy", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "ComponentViewportProvider", "css", "FramerMmrXAxNpA", "withCSS", "MmrXAxNpA_default", "addPropertyControls", "ControlType", "addFonts"]
}
