{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/6Cj8anU5pcpPf8fObZ7W/iLQikoQESpJdPqfgWadU/SMS_Download_New_1.js", "ssg:https://framerusercontent.com/modules/Pmis511OL0UIZa8yMTBy/QU50PwlYzMBIeM2tRWb4/TrEJOYbC1.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight auto\n */export default function SMS(props){const[phone,setPhone]=useState(\"\");const[success,setSuccess]=useState(false);const[error,setError]=useState(\"\");const[isSending,setIsSending]=useState(false);const sendSMS=async m=>{if(!m||!/^\\d{10}$/.test(m)){setError(\"Please enter a valid phone number (10 digits).\");return;}setError(\"\");setIsSending(true);try{const apiEndpoint=props.apiUrl||\"https://api.truckerpath.com/tp/user/send/invitation/code\";const codeType=props.codeType||\"TP_OWE\";const response=await fetch(`${apiEndpoint}?areacode=1&codeType=${codeType}&phoneNo=${m}`,{method:\"POST\"});const data=await response.json();if(data?.data===\"Success\"){setSuccess(true);setError(\"\");}else{setError(\"Failed to send SMS. Please try again.\");}}catch(err){console.error(\"Error:\",err);setError(\"Failed to send SMS. Please try again.\");}finally{setIsSending(false);}};useEffect(()=>{const style=document.createElement(\"style\");style.textContent=`\n            button.sms-button {\n                transition: background-color 0.2s ease !important;\n            }\n            button.sms-button:hover {\n                background-color: #126DA2 !important;\n            }\n            button.sms-button.success {\n                background-color: #08B86C !important;\n                cursor: default !important;\n            }\n            button.sms-button.success:hover {\n                background-color: #08B86C !important;\n            }\n            button.sms-button:disabled:hover {\n                background-color: #aaa !important;\n            }\n            input {\n                transition: border 0.2s ease !important;\n            }\n            input::placeholder {\n                color: #BABFC4 !important;\n            }\n            input.error {\n                border: 1px solid #EB5200 !important;\n                transition: border 0.2s ease !important;\n            }\n            input.error:focus {\n                border: 1.5px solid #EB5200 !important;\n                outline: none !important;\n                transition: border 0.2s ease !important;\n            }\n            input:focus:not(.error) {\n                border: 1.5px solid #1688CA !important;\n                outline: none !important;\n                transition: border 0.2s ease !important;\n            }\n        `;document.head.appendChild(style);return()=>{document.head.removeChild(style);};},[]);const isPhoneInvalid=number=>{return number.length>0&&!/^\\d{10}$/.test(number);};const handlePhoneChange=e=>{setPhone(e.target.value);if(error){setError(\"\");}if(success){setSuccess(false);}};return /*#__PURE__*/_jsxs(\"div\",{style:{...containerStyle,fontFamily:\"Poppins, Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif\"},children:[/*#__PURE__*/_jsxs(\"div\",{style:inputButtonContainerStyle,children:[/*#__PURE__*/_jsx(\"input\",{className:error?\"error\":\"\",style:inputStyle,placeholder:\"Enter your phone number\",value:phone,onChange:handlePhoneChange}),/*#__PURE__*/_jsx(\"button\",{className:`sms-button ${success?\"success\":\"\"}`,style:{...buttonStyle,...isSending?buttonDisabledStyle:{}},onClick:()=>!success&&sendSMS(phone),disabled:isSending,children:isSending?\"Sending...\":success?\"SENT\":\"Send SMS\"})]}),error&&/*#__PURE__*/_jsx(\"span\",{style:errorStyle,children:error}),success&&/*#__PURE__*/_jsx(\"span\",{style:successStyle,children:\"Check your phone\"})]});}const fontFamily=\"Poppins, Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif\";const containerStyle={height:\"100%\",display:\"flex\",justifyContent:\"flex-start\",alignItems:\"flex-start\",flexDirection:\"column\",gap:\"8px\",fontFamily:fontFamily};const inputButtonContainerStyle={display:\"flex\",alignItems:\"center\",gap:\"8px\",width:\"100%\",fontFamily:fontFamily};const inputStyle={flex:1,border:\"1px solid #E2E6E9\",outline:\"none\",height:\"40px\",padding:\"0 10px\",borderRadius:\"4px\",fontFamily:fontFamily,fontSize:\"14px\"};const buttonStyle={height:\"40px\",padding:\"0 16px\",backgroundColor:\"#1688CA\",color:\"#fff\",border:\"none\",borderRadius:\"4px\",cursor:\"pointer\",fontFamily:fontFamily,fontWeight:600,fontSize:\"14px\"};const buttonDisabledStyle={backgroundColor:\"#aaa\",cursor:\"not-allowed\"};const errorStyle={color:\"#EB5200\",fontFamily:fontFamily};const successStyle={color:\"#08B86C\",fontFamily:fontFamily};// \u6DFB\u52A0\u5C5E\u6027\u63A7\u5236\naddPropertyControls(SMS,{apiUrl:{type:ControlType.String,title:\"API URL\",description:\"The endpoint URL for sending SMS\",defaultValue:\"https://api.truckerpath.com/tp/user/send/invitation/code\"},codeType:{type:ControlType.Enum,title:\"App Type\",description:\"\u9009\u62E9\u8981\u4E0B\u8F7D\u7684\u5E94\u7528\u7C7B\u578B\",defaultValue:\"TP_OWE\",options:[\"TP_OWE\",\"TL_OWE\"],optionTitles:[\"Trucker Path App\",\"Truck Loads App\"]}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SMS\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"auto\",\"framerSupportedLayoutWidth\":\"any\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SMS_Download_New_1.map", "// Generated by Framer (1f5f6d9)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getPropertyControls,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SMS from\"https://framerusercontent.com/modules/6Cj8anU5pcpPf8fObZ7W/iLQikoQESpJdPqfgWadU/SMS_Download_New_1.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/a4Ko2ynfy39ip44e7iuJ/8dAkkz76T3YLgAMdvGq1/dvxIS3aly.js\";const SMSFonts=getFonts(SMS);const SMSControls=getPropertyControls(SMS);const serializationHash=\"framer-SSnXc\";const variantClassNames={pIhY_mQfy:\"framer-v-1m47bav\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=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 humanReadableEnumMap={\"Truck Loads App\":\"TL_OWE\",\"Trucker Path App\":\"TP_OWE\"};const getProps=({appType,content,height,id,star,width,...props})=>{return{...props,idnAFfBZu:star??props.idnAFfBZu??\"4.8/5 Stars\",irKbqoxo5:content??props.irKbqoxo5??\"1.3M+ Truckers' reviews\",YCd435AcZ:humanReadableEnumMap[appType]??appType??props.YCd435AcZ??\"TP_OWE\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,YCd435AcZ,idnAFfBZu,irKbqoxo5,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"pIhY_mQfy\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1m47bav\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"pIhY_mQfy\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r1tluv\",layoutDependency:layoutDependency,layoutId:\"KZPJaosEj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Send me the link to install\"})}),className:\"framer-1kjlazt\",fonts:[\"GF;Poppins-600\"],layoutDependency:layoutDependency,layoutId:\"v27taAzBg\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ayol42-container\",\"data-framer-name\":\"SMS Download\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"NN7dQhMlT-container\",name:\"SMS Download\",nodeId:\"NN7dQhMlT\",rendersWithMotion:true,scopeId:\"TrEJOYbC1\",children:/*#__PURE__*/_jsx(SMS,{apiUrl:\"https://api.truckerpath.com/tp/user/send/invitation/code\",codeType:YCd435AcZ,height:\"100%\",id:\"NN7dQhMlT\",layoutId:\"NN7dQhMlT\",name:\"SMS Download\",style:{width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2ohct0\",\"data-framer-name\":\"Rating Section\",layoutDependency:layoutDependency,layoutId:\"nVMBmkUqx\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:194,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||94)-0-254)/2+224+10)+.5),pixelHeight:80,pixelWidth:388,src:\"https://framerusercontent.com/images/ZEhMayaheluWcf6Bc77D49mGkE.png\"},className:\"framer-19tuiiw\",\"data-framer-name\":\"Ratings\",layoutDependency:layoutDependency,layoutId:\"KSKS6MA_X\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255)))\"},children:\"4.8/5 Stars\"})}),className:\"framer-w1243f\",\"data-framer-name\":\"Rating Value\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qX_5W2Eez\",style:{\"--extracted-r6o4lv\":\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:idnAFfBZu,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",children:\"1.3M+ Truckers' reviews\"})}),className:\"framer-d0ccbj\",\"data-framer-name\":\"Review Count\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"C9TCgh0es\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:.5},text:irKbqoxo5,verticalAlignment:\"center\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SSnXc.framer-1o0x4ak, .framer-SSnXc .framer-1o0x4ak { display: block; }\",\".framer-SSnXc.framer-1m47bav { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 350px; }\",\".framer-SSnXc .framer-1r1tluv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 360px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SSnXc .framer-1kjlazt, .framer-SSnXc .framer-w1243f, .framer-SSnXc .framer-d0ccbj { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-SSnXc .framer-ayol42-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-SSnXc .framer-2ohct0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SSnXc .framer-19tuiiw { aspect-ratio: 4.85 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 19px); overflow: visible; position: relative; width: 92px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SSnXc.framer-1m47bav, .framer-SSnXc .framer-1r1tluv, .framer-SSnXc .framer-2ohct0 { gap: 0px; } .framer-SSnXc.framer-1m47bav > *, .framer-SSnXc .framer-1r1tluv > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-SSnXc.framer-1m47bav > :first-child, .framer-SSnXc .framer-1r1tluv > :first-child { margin-top: 0px; } .framer-SSnXc.framer-1m47bav > :last-child, .framer-SSnXc .framer-1r1tluv > :last-child { margin-bottom: 0px; } .framer-SSnXc .framer-2ohct0 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-SSnXc .framer-2ohct0 > :first-child { margin-left: 0px; } .framer-SSnXc .framer-2ohct0 > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 94\n * @framerIntrinsicWidth 350\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"YCd435AcZ\":\"appType\",\"idnAFfBZu\":\"star\",\"irKbqoxo5\":\"content\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTrEJOYbC1=withCSS(Component,css,\"framer-SSnXc\");export default FramerTrEJOYbC1;FramerTrEJOYbC1.displayName=\"SMS Download\";FramerTrEJOYbC1.defaultProps={height:94,width:350};addPropertyControls(FramerTrEJOYbC1,{YCd435AcZ:SMSControls?.[\"codeType\"]&&{...SMSControls[\"codeType\"],defaultValue:\"TP_OWE\",description:undefined,hidden:undefined,title:\"App Type\"},idnAFfBZu:{defaultValue:\"4.8/5 Stars\",displayTextArea:false,title:\"Star\",type:ControlType.String},irKbqoxo5:{defaultValue:\"1.3M+ Truckers' reviews\",displayTextArea:false,title:\"Content\",type:ControlType.String}});addFonts(FramerTrEJOYbC1,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLEj6V15vFP-KUEg.woff2\",weight:\"600\"},{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\"}]},...SMSFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTrEJOYbC1\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"94\",\"framerIntrinsicWidth\":\"350\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"YCd435AcZ\\\":\\\"appType\\\",\\\"idnAFfBZu\\\":\\\"star\\\",\\\"irKbqoxo5\\\":\\\"content\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TrEJOYbC1.map"],
  "mappings": "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",
  "names": ["SMS", "props", "phone", "setPhone", "ye", "success", "setSuccess", "error", "setError", "isSending", "setIsSending", "sendSMS", "m", "apiEndpoint", "codeType", "err", "ue", "style", "isPhoneInvalid", "number", "handlePhoneChange", "e", "u", "containerStyle", "inputButtonContainerStyle", "p", "inputStyle", "buttonStyle", "buttonDisabledStyle", "errorStyle", "successStyle", "fontFamily", "addPropertyControls", "ControlType", "SMSFonts", "getFonts", "SMS", "SMSControls", "getPropertyControls", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "getProps", "appType", "content", "height", "id", "star", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "YCd435AcZ", "idnAFfBZu", "irKbqoxo5", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "SMS", "Image2", "getLoadingLazyAtYPosition", "css", "FramerTrEJOYbC1", "withCSS", "TrEJOYbC1_default", "addPropertyControls", "SMSControls", "ControlType", "addFonts", "SMSFonts", "getFontsFromSharedStyle", "fonts"]
}
