@authing/react-ui-components 3.0.1-alpha.3 → 3.0.1-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1121) hide show
  1. package/dist/index.min.css +2 -0
  2. package/dist/index.min.js +2 -0
  3. package/dist/index.min.js.LICENSE.txt +71 -0
  4. package/{lib → dist}/static/media/loading.4a67a5f3.svg +0 -0
  5. package/es/AuthingDropdown/index.d.ts +12 -0
  6. package/es/AuthingDropdown/index.js +46 -0
  7. package/es/AuthingDropdown/style/css.js +1 -0
  8. package/es/AuthingDropdown/style/index.css +1 -0
  9. package/es/AuthingDropdown/style/index.d.ts +1 -0
  10. package/es/AuthingDropdown/style/index.js +1 -0
  11. package/{components/AuthingDropdown/style.less → es/AuthingDropdown/style/index.less} +0 -0
  12. package/es/AuthingGuard/AppMFALayout/index.d.ts +4 -0
  13. package/es/AuthingGuard/AppMFALayout/index.js +75 -0
  14. package/es/AuthingGuard/CompleteUserInfoLayout/index.d.ts +2 -0
  15. package/es/AuthingGuard/CompleteUserInfoLayout/index.js +19 -0
  16. package/es/AuthingGuard/Forms/ADLoginForm/index.d.ts +4 -0
  17. package/es/AuthingGuard/Forms/ADLoginForm/index.js +187 -0
  18. package/es/AuthingGuard/Forms/Agreements/index.d.ts +10 -0
  19. package/es/AuthingGuard/Forms/Agreements/index.js +91 -0
  20. package/es/AuthingGuard/Forms/CompleteUserInfoForm/index.d.ts +3 -0
  21. package/es/AuthingGuard/Forms/CompleteUserInfoForm/index.js +237 -0
  22. package/es/AuthingGuard/Forms/EmailMfaVerifyForm/CheckEmailForm.d.ts +3 -0
  23. package/es/AuthingGuard/Forms/EmailMfaVerifyForm/CheckEmailForm.js +123 -0
  24. package/es/AuthingGuard/Forms/EmailMfaVerifyForm/VerifyCodeForm.d.ts +3 -0
  25. package/es/AuthingGuard/Forms/EmailMfaVerifyForm/VerifyCodeForm.js +184 -0
  26. package/es/AuthingGuard/Forms/EmailMfaVerifyForm/index.d.ts +3 -0
  27. package/es/AuthingGuard/Forms/EmailMfaVerifyForm/index.js +36 -0
  28. package/es/AuthingGuard/Forms/EmailRegisterForm/index.d.ts +4 -0
  29. package/es/AuthingGuard/Forms/EmailRegisterForm/index.js +244 -0
  30. package/es/AuthingGuard/Forms/LdapLoginForm/index.d.ts +4 -0
  31. package/es/AuthingGuard/Forms/LdapLoginForm/index.js +242 -0
  32. package/es/AuthingGuard/Forms/LoginFormFooter/index.d.ts +7 -0
  33. package/es/AuthingGuard/Forms/LoginFormFooter/index.js +53 -0
  34. package/es/AuthingGuard/Forms/MfaResetCodeForm/Step1.d.ts +10 -0
  35. package/es/AuthingGuard/Forms/MfaResetCodeForm/Step1.js +112 -0
  36. package/es/AuthingGuard/Forms/MfaResetCodeForm/Step2.d.ts +6 -0
  37. package/es/AuthingGuard/Forms/MfaResetCodeForm/Step2.js +44 -0
  38. package/es/AuthingGuard/Forms/MfaResetCodeForm/index.d.ts +3 -0
  39. package/es/AuthingGuard/Forms/MfaResetCodeForm/index.js +58 -0
  40. package/es/AuthingGuard/Forms/MfaVerifyForm/index.d.ts +3 -0
  41. package/es/AuthingGuard/Forms/MfaVerifyForm/index.js +137 -0
  42. package/es/AuthingGuard/Forms/PasswordLoginForm/index.d.ts +4 -0
  43. package/es/AuthingGuard/Forms/PasswordLoginForm/index.js +359 -0
  44. package/es/AuthingGuard/Forms/PhoneCodeLoginForm/index.d.ts +4 -0
  45. package/es/AuthingGuard/Forms/PhoneCodeLoginForm/index.js +203 -0
  46. package/es/AuthingGuard/Forms/PhoneRegisterForm/index.d.ts +4 -0
  47. package/es/AuthingGuard/Forms/PhoneRegisterForm/index.js +271 -0
  48. package/es/AuthingGuard/Forms/QrCodeLoginForm/index.d.ts +3 -0
  49. package/es/AuthingGuard/Forms/QrCodeLoginForm/index.js +68 -0
  50. package/es/AuthingGuard/Forms/RegisterFormFooter/index.d.ts +5 -0
  51. package/es/AuthingGuard/Forms/RegisterFormFooter/index.js +38 -0
  52. package/es/AuthingGuard/Forms/ResetPwdForm/Footer.d.ts +2 -0
  53. package/es/AuthingGuard/Forms/ResetPwdForm/Footer.js +22 -0
  54. package/es/AuthingGuard/Forms/ResetPwdForm/Step1.d.ts +3 -0
  55. package/es/AuthingGuard/Forms/ResetPwdForm/Step1.js +132 -0
  56. package/es/AuthingGuard/Forms/ResetPwdForm/Step2.d.ts +3 -0
  57. package/es/AuthingGuard/Forms/ResetPwdForm/Step2.js +198 -0
  58. package/es/AuthingGuard/Forms/ResetPwdForm/Step3.d.ts +3 -0
  59. package/es/AuthingGuard/Forms/ResetPwdForm/Step3.js +235 -0
  60. package/es/AuthingGuard/Forms/ResetPwdForm/Step4.d.ts +2 -0
  61. package/es/AuthingGuard/Forms/ResetPwdForm/Step4.js +56 -0
  62. package/es/AuthingGuard/Forms/ResetPwdForm/index.d.ts +3 -0
  63. package/es/AuthingGuard/Forms/ResetPwdForm/index.js +122 -0
  64. package/es/AuthingGuard/Forms/SendPhoneCode/SendCodeBtn.d.ts +6 -0
  65. package/es/AuthingGuard/Forms/SendPhoneCode/SendCodeBtn.js +130 -0
  66. package/es/AuthingGuard/Forms/SendPhoneCode/index.d.ts +8 -0
  67. package/es/AuthingGuard/Forms/SendPhoneCode/index.js +69 -0
  68. package/es/AuthingGuard/Forms/SmsMfaVerifyForm/CheckPhoneForm.d.ts +3 -0
  69. package/es/AuthingGuard/Forms/SmsMfaVerifyForm/CheckPhoneForm.js +125 -0
  70. package/es/AuthingGuard/Forms/SmsMfaVerifyForm/VerifyCodeForm.d.ts +3 -0
  71. package/es/AuthingGuard/Forms/SmsMfaVerifyForm/VerifyCodeForm.js +183 -0
  72. package/es/AuthingGuard/Forms/SmsMfaVerifyForm/index.d.ts +3 -0
  73. package/es/AuthingGuard/Forms/SmsMfaVerifyForm/index.js +36 -0
  74. package/es/AuthingGuard/Forms/SocialAndIdpLogin/index.d.ts +3 -0
  75. package/es/AuthingGuard/Forms/SocialAndIdpLogin/index.js +378 -0
  76. package/es/AuthingGuard/Forms/UploadImage/index.d.ts +5 -0
  77. package/es/AuthingGuard/Forms/UploadImage/index.js +77 -0
  78. package/es/AuthingGuard/Forms/index.d.ts +13 -0
  79. package/es/AuthingGuard/Forms/index.js +13 -0
  80. package/es/AuthingGuard/GuardLayout/index.d.ts +10 -0
  81. package/es/AuthingGuard/GuardLayout/index.js +405 -0
  82. package/es/AuthingGuard/Header/index.d.ts +4 -0
  83. package/es/AuthingGuard/Header/index.js +25 -0
  84. package/es/AuthingGuard/IconFont/iconfont.d.ts +1 -0
  85. package/es/AuthingGuard/IconFont/iconfont.js +66 -0
  86. package/es/AuthingGuard/IconFont/index.d.ts +7 -0
  87. package/es/AuthingGuard/IconFont/index.js +28 -0
  88. package/es/AuthingGuard/IconFont/svg.d.ts +1 -0
  89. package/es/AuthingGuard/IconFont/svg.js +1 -0
  90. package/es/AuthingGuard/LoginLayout/index.d.ts +2 -0
  91. package/es/AuthingGuard/LoginLayout/index.js +211 -0
  92. package/es/AuthingGuard/MfaLayout/Steps.d.ts +4 -0
  93. package/es/AuthingGuard/MfaLayout/Steps.js +6 -0
  94. package/es/AuthingGuard/MfaLayout/index.d.ts +4 -0
  95. package/es/AuthingGuard/MfaLayout/index.js +55 -0
  96. package/es/AuthingGuard/RegisterLayout/index.d.ts +2 -0
  97. package/es/AuthingGuard/RegisterLayout/index.js +103 -0
  98. package/es/AuthingGuard/ResetPwdLayout/index.d.ts +2 -0
  99. package/es/AuthingGuard/ResetPwdLayout/index.js +26 -0
  100. package/es/AuthingGuard/ToggleLang/index.d.ts +2 -0
  101. package/es/AuthingGuard/ToggleLang/index.js +53 -0
  102. package/es/AuthingGuard/api/appConfig.d.ts +116 -0
  103. package/es/AuthingGuard/api/appConfig.js +20 -0
  104. package/es/AuthingGuard/api/index.d.ts +3 -0
  105. package/es/AuthingGuard/api/index.js +3 -0
  106. package/es/AuthingGuard/api/sso.d.ts +19 -0
  107. package/es/AuthingGuard/api/sso.js +6 -0
  108. package/es/AuthingGuard/api/userPoolConfig.d.ts +81 -0
  109. package/es/AuthingGuard/api/userPoolConfig.js +9 -0
  110. package/es/AuthingGuard/constants.d.ts +32 -0
  111. package/es/AuthingGuard/constants.js +70 -0
  112. package/es/AuthingGuard/hooks/index.d.ts +20 -0
  113. package/es/AuthingGuard/hooks/index.js +52 -0
  114. package/es/AuthingGuard/hooks/useScreenSize.d.ts +10 -0
  115. package/es/AuthingGuard/hooks/useScreenSize.js +74 -0
  116. package/es/AuthingGuard/index.d.ts +12 -0
  117. package/es/AuthingGuard/index.js +135 -0
  118. package/es/AuthingGuard/style/appMFALayout.css +1 -0
  119. package/{components/AuthingGuard/AppMFALayout/style.less → es/AuthingGuard/style/appMFALayout.less} +0 -0
  120. package/es/AuthingGuard/style/completeUserInfoLayout.css +1 -0
  121. package/{components/AuthingGuard/CompleteUserInfoLayout/style.less → es/AuthingGuard/style/completeUserInfoLayout.less} +0 -0
  122. package/es/AuthingGuard/style/css.js +17 -0
  123. package/{components/AuthingGuard/Forms/EmailMfaVerifyForm/style.less → es/AuthingGuard/style/emailMfaVerifyForm.css} +0 -0
  124. package/{components/AuthingGuard/Forms/EmailRegisterForm/style.less → es/AuthingGuard/style/emailMfaVerifyForm.less} +0 -0
  125. package/es/AuthingGuard/style/formAgreements.css +1 -0
  126. package/{components/AuthingGuard/Forms/Agreements/style.less → es/AuthingGuard/style/formAgreements.less} +0 -0
  127. package/es/AuthingGuard/style/formResetPwdForm.css +1 -0
  128. package/{components/AuthingGuard/Forms/ResetPwdForm/style.less → es/AuthingGuard/style/formResetPwdForm.less} +0 -0
  129. package/es/AuthingGuard/style/guardLayout.css +1 -0
  130. package/{components/AuthingGuard/GuardLayout/style.less → es/AuthingGuard/style/guardLayout.less} +0 -0
  131. package/es/AuthingGuard/style/header.css +1 -0
  132. package/es/AuthingGuard/style/header.less +64 -0
  133. package/es/AuthingGuard/style/iconFont.css +1 -0
  134. package/{components/AuthingGuard/IconFont/style.less → es/AuthingGuard/style/iconFont.less} +0 -0
  135. package/es/AuthingGuard/style/index.css +1 -0
  136. package/es/AuthingGuard/style/index.d.ts +17 -0
  137. package/es/AuthingGuard/style/index.js +17 -0
  138. package/es/AuthingGuard/style/index.less +106 -0
  139. package/es/AuthingGuard/style/loginFormFooter.css +1 -0
  140. package/{components/AuthingGuard/Forms/LoginFormFooter/style.less → es/AuthingGuard/style/loginFormFooter.less} +0 -0
  141. package/es/AuthingGuard/style/mfaLayout.css +1 -0
  142. package/{components/AuthingGuard/MfaLayout/style.less → es/AuthingGuard/style/mfaLayout.less} +0 -0
  143. package/{components/AuthingGuard/Forms/LdapLoginForm/style.less → es/AuthingGuard/style/mfaResetCodeForm.css} +0 -0
  144. package/{components/AuthingGuard/Forms/RegisterFormFooter/style.less → es/AuthingGuard/style/mfaResetCodeForm.less} +0 -0
  145. package/es/AuthingGuard/style/mfaVerifyForm.css +1 -0
  146. package/{components/AuthingGuard/Forms/MfaVerifyForm/style.less → es/AuthingGuard/style/mfaVerifyForm.less} +0 -0
  147. package/es/AuthingGuard/style/qrCodeLoginForm.css +1 -0
  148. package/{components/AuthingGuard/Forms/QrCodeLoginForm/style.less → es/AuthingGuard/style/qrCodeLoginForm.less} +0 -0
  149. package/es/AuthingGuard/style/sendPhoneCode.css +1 -0
  150. package/{components/AuthingGuard/Forms/SendPhoneCode/style.less → es/AuthingGuard/style/sendPhoneCode.less} +0 -0
  151. package/es/AuthingGuard/style/smsMfaVerifyForm.css +1 -0
  152. package/{components/AuthingGuard/Forms/SmsMfaVerifyForm/style.less → es/AuthingGuard/style/smsMfaVerifyForm.less} +0 -0
  153. package/{components/AuthingGuard/LoginLayout/style.less → es/AuthingGuard/style/socialAndIdpLogin.css} +0 -0
  154. package/{components/AuthingGuard/RegisterLayout/style.less → es/AuthingGuard/style/socialAndIdpLogin.less} +0 -0
  155. package/es/AuthingGuard/types/Forms.d.ts +79 -0
  156. package/es/AuthingGuard/types/Forms.js +1 -0
  157. package/es/AuthingGuard/types/GuardConfig.d.ts +241 -0
  158. package/es/AuthingGuard/types/GuardConfig.js +179 -0
  159. package/es/AuthingGuard/types/GuardState.d.ts +6 -0
  160. package/es/AuthingGuard/types/GuardState.js +1 -0
  161. package/es/AuthingGuard/types/Locales.d.ts +5 -0
  162. package/es/AuthingGuard/types/Locales.js +7 -0
  163. package/es/AuthingGuard/types/index.d.ts +4 -0
  164. package/es/AuthingGuard/types/index.js +4 -0
  165. package/es/AuthingTabs/index.d.ts +12 -0
  166. package/es/AuthingTabs/index.js +81 -0
  167. package/es/AuthingTabs/style/css.js +1 -0
  168. package/es/AuthingTabs/style/index.css +1 -0
  169. package/es/AuthingTabs/style/index.d.ts +1 -0
  170. package/es/AuthingTabs/style/index.js +1 -0
  171. package/es/AuthingTabs/style/index.less +135 -0
  172. package/es/BindTotp/core/bindSuccess.d.ts +6 -0
  173. package/es/BindTotp/core/bindSuccess.js +111 -0
  174. package/es/BindTotp/core/securityCode.d.ts +8 -0
  175. package/es/BindTotp/core/securityCode.js +139 -0
  176. package/es/BindTotp/index.d.ts +3 -0
  177. package/es/BindTotp/index.js +169 -0
  178. package/es/BindTotp/interface.d.ts +19 -0
  179. package/es/BindTotp/interface.js +21 -0
  180. package/es/BindTotp/style/css.js +1 -0
  181. package/es/BindTotp/style/index.css +1 -0
  182. package/es/BindTotp/style/index.d.ts +1 -0
  183. package/es/BindTotp/style/index.js +1 -0
  184. package/es/BindTotp/style/index.less +57 -0
  185. package/es/ChangeLanguage/index.d.ts +2 -0
  186. package/es/ChangeLanguage/index.js +44 -0
  187. package/es/ChangePassword/core/firstLoginReset.d.ts +8 -0
  188. package/es/ChangePassword/core/firstLoginReset.js +140 -0
  189. package/es/ChangePassword/core/rotateReset.d.ts +8 -0
  190. package/es/ChangePassword/core/rotateReset.js +159 -0
  191. package/es/ChangePassword/index.d.ts +2 -0
  192. package/es/ChangePassword/index.js +78 -0
  193. package/es/CompleteInfo/core/completeInfo.d.ts +16 -0
  194. package/es/CompleteInfo/core/completeInfo.js +582 -0
  195. package/es/CompleteInfo/index.d.ts +3 -0
  196. package/es/CompleteInfo/index.js +52 -0
  197. package/es/CompleteInfo/interface.d.ts +32 -0
  198. package/es/CompleteInfo/interface.js +21 -0
  199. package/es/CompleteInfo/style/css.js +1 -0
  200. package/es/CompleteInfo/style/index.css +1 -0
  201. package/es/CompleteInfo/style/index.d.ts +1 -0
  202. package/es/CompleteInfo/style/index.js +1 -0
  203. package/{components/CompleteInfo/styles.less → es/CompleteInfo/style/index.less} +0 -0
  204. package/es/CompleteInfo/utils.d.ts +3 -0
  205. package/es/CompleteInfo/utils.js +42 -0
  206. package/es/CopyAbleText/index.d.ts +4 -0
  207. package/es/CopyAbleText/index.js +51 -0
  208. package/es/CopyAbleText/style/css.js +1 -0
  209. package/es/CopyAbleText/style/index.css +1 -0
  210. package/es/CopyAbleText/style/index.d.ts +1 -0
  211. package/es/CopyAbleText/style/index.js +1 -0
  212. package/{components/CopyAbleText/style.less → es/CopyAbleText/style/index.less} +0 -0
  213. package/es/DownloadAuthenticator/index.d.ts +3 -0
  214. package/es/DownloadAuthenticator/index.js +92 -0
  215. package/es/DownloadAuthenticator/interface.d.ts +12 -0
  216. package/es/DownloadAuthenticator/interface.js +21 -0
  217. package/es/DownloadAuthenticator/style/css.js +1 -0
  218. package/es/DownloadAuthenticator/style/index.css +1 -0
  219. package/es/DownloadAuthenticator/style/index.d.ts +1 -0
  220. package/es/DownloadAuthenticator/style/index.js +1 -0
  221. package/es/DownloadAuthenticator/style/index.less +58 -0
  222. package/es/Error/index.d.ts +3 -0
  223. package/es/Error/index.js +25 -0
  224. package/es/Error/interface.d.ts +8 -0
  225. package/es/Error/interface.js +1 -0
  226. package/es/Error/style/css.js +1 -0
  227. package/es/Error/style/index.css +1 -0
  228. package/es/Error/style/index.d.ts +1 -0
  229. package/es/Error/style/index.js +1 -0
  230. package/{components/Error/styles.less → es/Error/style/index.less} +0 -0
  231. package/es/ForgetPassword/core/resetPassword.d.ts +9 -0
  232. package/es/ForgetPassword/core/resetPassword.js +224 -0
  233. package/es/ForgetPassword/index.d.ts +3 -0
  234. package/es/ForgetPassword/index.js +107 -0
  235. package/es/ForgetPassword/interface.d.ts +18 -0
  236. package/es/ForgetPassword/interface.js +1 -0
  237. package/es/Guard/Guard.d.ts +10 -0
  238. package/es/Guard/Guard.js +349 -0
  239. package/es/Guard/authClient.d.ts +5 -0
  240. package/es/Guard/authClient.js +38 -0
  241. package/es/Guard/config.d.ts +8 -0
  242. package/es/Guard/config.js +24 -0
  243. package/es/Guard/event.d.ts +8 -0
  244. package/es/Guard/event.js +74 -0
  245. package/es/Guard/index.d.ts +4 -0
  246. package/es/Guard/index.js +4 -0
  247. package/es/Guard/module.d.ts +20 -0
  248. package/es/Guard/module.js +16 -0
  249. package/es/Guard/sso.d.ts +19 -0
  250. package/es/Guard/sso.js +32 -0
  251. package/es/Guard/stateMachine.d.ts +36 -0
  252. package/es/Guard/stateMachine.js +158 -0
  253. package/es/Guard/style/css.js +19 -0
  254. package/es/Guard/style/index.css +1 -0
  255. package/es/Guard/style/index.d.ts +19 -0
  256. package/es/Guard/style/index.js +19 -0
  257. package/es/Guard/style/index.less +615 -0
  258. package/es/IconFont/iconfont.d.ts +1 -0
  259. package/es/IconFont/iconfont.js +66 -0
  260. package/es/IconFont/index.d.ts +7 -0
  261. package/es/IconFont/index.js +28 -0
  262. package/es/IconFont/style/css.js +1 -0
  263. package/es/IconFont/style/index.css +1 -0
  264. package/es/IconFont/style/index.d.ts +1 -0
  265. package/es/IconFont/style/index.js +1 -0
  266. package/{components/IconFont/style.less → es/IconFont/style/index.less} +0 -0
  267. package/es/IconFont/svg.d.ts +1 -0
  268. package/es/IconFont/svg.js +1 -0
  269. package/es/ImagePro/index.d.ts +13 -0
  270. package/es/ImagePro/index.js +65 -0
  271. package/es/ImagePro/style/css.js +1 -0
  272. package/es/ImagePro/style/index.css +1 -0
  273. package/es/ImagePro/style/index.d.ts +1 -0
  274. package/es/ImagePro/style/index.js +1 -0
  275. package/{components/ImagePro/styles.less → es/ImagePro/style/index.less} +0 -0
  276. package/es/InputNumber/index.d.ts +5 -0
  277. package/es/InputNumber/index.js +37 -0
  278. package/es/InputPassword/index.d.ts +4 -0
  279. package/es/InputPassword/index.js +24 -0
  280. package/es/Login/codemap.d.ts +2 -0
  281. package/es/Login/codemap.js +46 -0
  282. package/es/Login/core/withAD.d.ts +6 -0
  283. package/es/Login/core/withAD.js +6 -0
  284. package/es/Login/core/withAppQrcode.d.ts +8 -0
  285. package/es/Login/core/withAppQrcode.js +65 -0
  286. package/es/Login/core/withLDAP.d.ts +10 -0
  287. package/es/Login/core/withLDAP.js +210 -0
  288. package/es/Login/core/withPassword/FormItemAccount.d.ts +7 -0
  289. package/es/Login/core/withPassword/FormItemAccount.js +34 -0
  290. package/es/Login/core/withPassword/GraphicVerifyCode.d.ts +7 -0
  291. package/es/Login/core/withPassword/GraphicVerifyCode.js +29 -0
  292. package/es/Login/core/withPassword/InputAccount.d.ts +7 -0
  293. package/es/Login/core/withPassword/InputAccount.js +56 -0
  294. package/es/Login/core/withPassword/index.d.ts +12 -0
  295. package/es/Login/core/withPassword/index.js +221 -0
  296. package/es/Login/core/withPhonecode.d.ts +2 -0
  297. package/es/Login/core/withPhonecode.js +164 -0
  298. package/es/Login/core/withWechatMiniQrcode.d.ts +8 -0
  299. package/es/Login/core/withWechatMiniQrcode.js +76 -0
  300. package/es/Login/core/withWechatmpQrcode.d.ts +8 -0
  301. package/es/Login/core/withWechatmpQrcode.js +66 -0
  302. package/es/Login/index.d.ts +3 -0
  303. package/es/Login/index.js +434 -0
  304. package/es/Login/interface.d.ts +31 -0
  305. package/es/Login/interface.js +30 -0
  306. package/es/Login/socialLogin/index.d.ts +8 -0
  307. package/es/Login/socialLogin/index.js +450 -0
  308. package/es/Login/style/css.js +2 -0
  309. package/es/Login/style/index.css +1 -0
  310. package/es/Login/style/index.d.ts +2 -0
  311. package/es/Login/style/index.js +2 -0
  312. package/es/Login/style/index.less +99 -0
  313. package/es/Login/style/socialLogin.css +1 -0
  314. package/es/Login/style/socialLogin.less +77 -0
  315. package/es/MFA/VerifyCodeInput/VerifyCodeFormItem.d.ts +7 -0
  316. package/es/MFA/VerifyCodeInput/VerifyCodeFormItem.js +37 -0
  317. package/es/MFA/VerifyCodeInput/index.d.ts +13 -0
  318. package/es/MFA/VerifyCodeInput/index.js +175 -0
  319. package/es/MFA/codemap.d.ts +2 -0
  320. package/es/MFA/codemap.js +26 -0
  321. package/es/MFA/core/email.d.ts +23 -0
  322. package/es/MFA/core/email.js +302 -0
  323. package/es/MFA/core/face.d.ts +2 -0
  324. package/es/MFA/core/face.js +358 -0
  325. package/es/MFA/core/face_deps.d.ts +12 -0
  326. package/es/MFA/core/face_deps.js +39 -0
  327. package/es/MFA/core/sms.d.ts +22 -0
  328. package/es/MFA/core/sms.js +296 -0
  329. package/es/MFA/core/totp.d.ts +19 -0
  330. package/es/MFA/core/totp.js +146 -0
  331. package/es/MFA/index.d.ts +3 -0
  332. package/es/MFA/index.js +170 -0
  333. package/es/MFA/interface.d.ts +38 -0
  334. package/es/MFA/interface.js +29 -0
  335. package/es/MFA/mfaMethods/index.d.ts +8 -0
  336. package/es/MFA/mfaMethods/index.js +80 -0
  337. package/es/MFA/style/css.js +3 -0
  338. package/es/MFA/style/index.css +1 -0
  339. package/es/MFA/style/index.d.ts +3 -0
  340. package/es/MFA/style/index.js +3 -0
  341. package/es/MFA/style/index.less +101 -0
  342. package/es/MFA/style/mfaMethods.css +1 -0
  343. package/es/MFA/style/mfaMethods.less +42 -0
  344. package/es/MFA/style/verifyCodeInput.css +1 -0
  345. package/es/MFA/style/verifyCodeInput.less +38 -0
  346. package/es/NeedHelpView/core/describeQuestions.d.ts +8 -0
  347. package/es/NeedHelpView/core/describeQuestions.js +299 -0
  348. package/es/NeedHelpView/index.d.ts +2 -0
  349. package/es/NeedHelpView/index.js +48 -0
  350. package/es/RecoveryCode/core/useCode.d.ts +5 -0
  351. package/es/RecoveryCode/core/useCode.js +93 -0
  352. package/es/RecoveryCode/index.d.ts +3 -0
  353. package/es/RecoveryCode/index.js +28 -0
  354. package/es/RecoveryCode/interface.d.ts +19 -0
  355. package/es/RecoveryCode/interface.js +21 -0
  356. package/es/RecoveryCode/style/css.js +1 -0
  357. package/es/RecoveryCode/style/index.css +1 -0
  358. package/es/RecoveryCode/style/index.d.ts +1 -0
  359. package/es/RecoveryCode/style/index.js +1 -0
  360. package/{components/RecoveryCode/style.less → es/RecoveryCode/style/index.less} +0 -0
  361. package/es/Register/codemap.d.ts +2 -0
  362. package/es/Register/codemap.js +10 -0
  363. package/es/Register/components/Agreements/index.d.ts +10 -0
  364. package/es/Register/components/Agreements/index.js +91 -0
  365. package/es/Register/core/WithEmail.d.ts +9 -0
  366. package/es/Register/core/WithEmail.js +262 -0
  367. package/es/Register/core/WithPhone.d.ts +8 -0
  368. package/es/Register/core/WithPhone.js +208 -0
  369. package/es/Register/index.d.ts +3 -0
  370. package/es/Register/index.js +171 -0
  371. package/es/Register/interface.d.ts +25 -0
  372. package/es/Register/interface.js +28 -0
  373. package/es/Register/style/css.js +1 -0
  374. package/es/Register/style/index.css +1 -0
  375. package/es/Register/style/index.d.ts +1 -0
  376. package/es/Register/style/index.js +1 -0
  377. package/{components/Register/components/Agreements/style.less → es/Register/style/index.less} +0 -0
  378. package/es/SendCode/SendCodeBtn.d.ts +9 -0
  379. package/es/SendCode/SendCodeBtn.js +138 -0
  380. package/es/SendCode/index.d.ts +11 -0
  381. package/es/SendCode/index.js +208 -0
  382. package/es/SendCode/style/css.js +1 -0
  383. package/es/SendCode/style/index.css +1 -0
  384. package/es/SendCode/style/index.d.ts +1 -0
  385. package/es/SendCode/style/index.js +1 -0
  386. package/es/SendCode/style/index.less +31 -0
  387. package/es/ShieldSpin/index.d.ts +7 -0
  388. package/es/ShieldSpin/index.js +19 -0
  389. package/{components → es}/ShieldSpin/loading.svg +0 -0
  390. package/es/SubmitButton/index.d.ts +8 -0
  391. package/es/SubmitButton/index.js +58 -0
  392. package/es/SubmitSuccess/index.d.ts +3 -0
  393. package/es/SubmitSuccess/index.js +74 -0
  394. package/es/SubmitSuccess/interface.d.ts +13 -0
  395. package/es/SubmitSuccess/interface.js +1 -0
  396. package/es/Type/index.d.ts +35 -0
  397. package/es/Type/index.js +14 -0
  398. package/es/ValidatorRules/PasswordFormItem.d.ts +3 -0
  399. package/es/ValidatorRules/PasswordFormItem.js +24 -0
  400. package/es/ValidatorRules/ValidatorFormItem.d.ts +5 -0
  401. package/es/ValidatorRules/ValidatorFormItem.js +239 -0
  402. package/es/ValidatorRules/index.d.ts +27 -0
  403. package/es/ValidatorRules/index.js +9 -0
  404. package/es/VerifyCodeInput/index.d.ts +9 -0
  405. package/es/VerifyCodeInput/index.js +89 -0
  406. package/es/VerifyCodeInput/style/css.js +1 -0
  407. package/es/VerifyCodeInput/style/index.css +1 -0
  408. package/es/VerifyCodeInput/style/index.d.ts +1 -0
  409. package/es/VerifyCodeInput/style/index.js +1 -0
  410. package/{components/VerifyCodeInput/style.less → es/VerifyCodeInput/style/index.less} +0 -0
  411. package/es/_utils/GuardErrorCode.d.ts +9 -0
  412. package/es/_utils/GuardErrorCode.js +11 -0
  413. package/es/_utils/clipboard.d.ts +1 -0
  414. package/es/_utils/clipboard.js +35 -0
  415. package/es/_utils/config.d.ts +7 -0
  416. package/es/_utils/config.js +145 -0
  417. package/es/_utils/context.d.ts +8 -0
  418. package/es/_utils/context.js +14 -0
  419. package/es/_utils/errorFace.d.ts +12 -0
  420. package/es/_utils/errorFace.js +32 -0
  421. package/es/_utils/guradHttp.d.ts +21 -0
  422. package/es/_utils/guradHttp.js +178 -0
  423. package/es/_utils/hooks/index.d.ts +4 -0
  424. package/es/_utils/hooks/index.js +60 -0
  425. package/es/_utils/http.d.ts +23 -0
  426. package/es/_utils/http.js +189 -0
  427. package/es/_utils/index.d.ts +60 -0
  428. package/es/_utils/index.js +452 -0
  429. package/es/_utils/locales/en/common.json +239 -0
  430. package/es/_utils/locales/en/index.d.ts +5 -0
  431. package/es/_utils/locales/en/index.js +5 -0
  432. package/es/_utils/locales/en/login.json +103 -0
  433. package/{components → es}/_utils/locales/en/map.json +0 -0
  434. package/es/_utils/locales/en/user.json +85 -0
  435. package/es/_utils/locales/index.d.ts +5 -0
  436. package/es/_utils/locales/index.js +47 -0
  437. package/es/_utils/locales/zh/common.json +239 -0
  438. package/es/_utils/locales/zh/index.d.ts +5 -0
  439. package/es/_utils/locales/zh/index.js +5 -0
  440. package/es/_utils/locales/zh/login.json +103 -0
  441. package/{components → es}/_utils/locales/zh/map.json +0 -0
  442. package/es/_utils/locales/zh/user.json +85 -0
  443. package/es/_utils/popupCenter.d.ts +9 -0
  444. package/es/_utils/popupCenter.js +28 -0
  445. package/es/context/base.d.ts +12 -0
  446. package/es/context/base.js +15 -0
  447. package/es/context/global/context.d.ts +10 -0
  448. package/es/context/global/context.js +47 -0
  449. package/es/context/global/reducer.d.ts +29 -0
  450. package/es/context/global/reducer.js +32 -0
  451. package/es/context/module/context.d.ts +11 -0
  452. package/es/context/module/context.js +21 -0
  453. package/es/index.d.ts +8 -0
  454. package/es/index.js +8 -0
  455. package/es/version/index.d.ts +2 -0
  456. package/es/version/index.js +2 -0
  457. package/es/version/version.d.ts +2 -0
  458. package/es/version/version.js +1 -0
  459. package/lib/AuthingDropdown/index.d.ts +12 -0
  460. package/lib/AuthingDropdown/index.js +61 -0
  461. package/lib/AuthingDropdown/style/css.js +3 -0
  462. package/lib/AuthingDropdown/style/index.css +1 -0
  463. package/lib/AuthingDropdown/style/index.d.ts +1 -0
  464. package/lib/AuthingDropdown/style/index.js +3 -0
  465. package/lib/AuthingDropdown/style/index.less +43 -0
  466. package/lib/AuthingGuard/AppMFALayout/index.d.ts +4 -0
  467. package/lib/AuthingGuard/AppMFALayout/index.js +89 -0
  468. package/lib/AuthingGuard/CompleteUserInfoLayout/index.d.ts +2 -0
  469. package/lib/AuthingGuard/CompleteUserInfoLayout/index.js +34 -0
  470. package/lib/AuthingGuard/Forms/ADLoginForm/index.d.ts +4 -0
  471. package/lib/AuthingGuard/Forms/ADLoginForm/index.js +203 -0
  472. package/lib/AuthingGuard/Forms/Agreements/index.d.ts +10 -0
  473. package/lib/AuthingGuard/Forms/Agreements/index.js +90 -0
  474. package/lib/AuthingGuard/Forms/CompleteUserInfoForm/index.d.ts +3 -0
  475. package/lib/AuthingGuard/Forms/CompleteUserInfoForm/index.js +237 -0
  476. package/lib/AuthingGuard/Forms/EmailMfaVerifyForm/CheckEmailForm.d.ts +3 -0
  477. package/lib/AuthingGuard/Forms/EmailMfaVerifyForm/CheckEmailForm.js +137 -0
  478. package/lib/AuthingGuard/Forms/EmailMfaVerifyForm/VerifyCodeForm.d.ts +3 -0
  479. package/lib/AuthingGuard/Forms/EmailMfaVerifyForm/VerifyCodeForm.js +199 -0
  480. package/lib/AuthingGuard/Forms/EmailMfaVerifyForm/index.d.ts +3 -0
  481. package/lib/AuthingGuard/Forms/EmailMfaVerifyForm/index.js +54 -0
  482. package/lib/AuthingGuard/Forms/EmailRegisterForm/index.d.ts +4 -0
  483. package/lib/AuthingGuard/Forms/EmailRegisterForm/index.js +258 -0
  484. package/lib/AuthingGuard/Forms/LdapLoginForm/index.d.ts +4 -0
  485. package/lib/AuthingGuard/Forms/LdapLoginForm/index.js +255 -0
  486. package/lib/AuthingGuard/Forms/LoginFormFooter/index.d.ts +7 -0
  487. package/lib/AuthingGuard/Forms/LoginFormFooter/index.js +66 -0
  488. package/lib/AuthingGuard/Forms/MfaResetCodeForm/Step1.d.ts +10 -0
  489. package/lib/AuthingGuard/Forms/MfaResetCodeForm/Step1.js +129 -0
  490. package/lib/AuthingGuard/Forms/MfaResetCodeForm/Step2.d.ts +6 -0
  491. package/lib/AuthingGuard/Forms/MfaResetCodeForm/Step2.js +53 -0
  492. package/lib/AuthingGuard/Forms/MfaResetCodeForm/index.d.ts +3 -0
  493. package/lib/AuthingGuard/Forms/MfaResetCodeForm/index.js +77 -0
  494. package/lib/AuthingGuard/Forms/MfaVerifyForm/index.d.ts +3 -0
  495. package/lib/AuthingGuard/Forms/MfaVerifyForm/index.js +151 -0
  496. package/lib/AuthingGuard/Forms/PasswordLoginForm/index.d.ts +4 -0
  497. package/lib/AuthingGuard/Forms/PasswordLoginForm/index.js +368 -0
  498. package/lib/AuthingGuard/Forms/PhoneCodeLoginForm/index.d.ts +4 -0
  499. package/lib/AuthingGuard/Forms/PhoneCodeLoginForm/index.js +217 -0
  500. package/lib/AuthingGuard/Forms/PhoneRegisterForm/index.d.ts +4 -0
  501. package/lib/AuthingGuard/Forms/PhoneRegisterForm/index.js +286 -0
  502. package/lib/AuthingGuard/Forms/QrCodeLoginForm/index.d.ts +3 -0
  503. package/lib/AuthingGuard/Forms/QrCodeLoginForm/index.js +76 -0
  504. package/lib/AuthingGuard/Forms/RegisterFormFooter/index.d.ts +5 -0
  505. package/lib/AuthingGuard/Forms/RegisterFormFooter/index.js +53 -0
  506. package/lib/AuthingGuard/Forms/ResetPwdForm/Footer.d.ts +2 -0
  507. package/lib/AuthingGuard/Forms/ResetPwdForm/Footer.js +37 -0
  508. package/lib/AuthingGuard/Forms/ResetPwdForm/Step1.d.ts +3 -0
  509. package/lib/AuthingGuard/Forms/ResetPwdForm/Step1.js +147 -0
  510. package/lib/AuthingGuard/Forms/ResetPwdForm/Step2.d.ts +3 -0
  511. package/lib/AuthingGuard/Forms/ResetPwdForm/Step2.js +213 -0
  512. package/lib/AuthingGuard/Forms/ResetPwdForm/Step3.d.ts +3 -0
  513. package/lib/AuthingGuard/Forms/ResetPwdForm/Step3.js +248 -0
  514. package/lib/AuthingGuard/Forms/ResetPwdForm/Step4.d.ts +2 -0
  515. package/lib/AuthingGuard/Forms/ResetPwdForm/Step4.js +74 -0
  516. package/lib/AuthingGuard/Forms/ResetPwdForm/index.d.ts +3 -0
  517. package/lib/AuthingGuard/Forms/ResetPwdForm/index.js +146 -0
  518. package/lib/AuthingGuard/Forms/SendPhoneCode/SendCodeBtn.d.ts +6 -0
  519. package/lib/AuthingGuard/Forms/SendPhoneCode/SendCodeBtn.js +148 -0
  520. package/lib/AuthingGuard/Forms/SendPhoneCode/index.d.ts +8 -0
  521. package/lib/AuthingGuard/Forms/SendPhoneCode/index.js +87 -0
  522. package/lib/AuthingGuard/Forms/SmsMfaVerifyForm/CheckPhoneForm.d.ts +3 -0
  523. package/lib/AuthingGuard/Forms/SmsMfaVerifyForm/CheckPhoneForm.js +139 -0
  524. package/lib/AuthingGuard/Forms/SmsMfaVerifyForm/VerifyCodeForm.d.ts +3 -0
  525. package/lib/AuthingGuard/Forms/SmsMfaVerifyForm/VerifyCodeForm.js +197 -0
  526. package/lib/AuthingGuard/Forms/SmsMfaVerifyForm/index.d.ts +3 -0
  527. package/lib/AuthingGuard/Forms/SmsMfaVerifyForm/index.js +54 -0
  528. package/lib/AuthingGuard/Forms/SocialAndIdpLogin/index.d.ts +3 -0
  529. package/lib/AuthingGuard/Forms/SocialAndIdpLogin/index.js +387 -0
  530. package/lib/AuthingGuard/Forms/UploadImage/index.d.ts +5 -0
  531. package/lib/AuthingGuard/Forms/UploadImage/index.js +92 -0
  532. package/lib/AuthingGuard/Forms/index.d.ts +13 -0
  533. package/lib/AuthingGuard/Forms/index.js +174 -0
  534. package/lib/AuthingGuard/GuardLayout/index.d.ts +10 -0
  535. package/lib/AuthingGuard/GuardLayout/index.js +424 -0
  536. package/lib/AuthingGuard/Header/index.d.ts +4 -0
  537. package/lib/AuthingGuard/Header/index.js +38 -0
  538. package/lib/AuthingGuard/IconFont/iconfont.d.ts +1 -0
  539. package/lib/AuthingGuard/IconFont/iconfont.js +63 -0
  540. package/lib/AuthingGuard/IconFont/index.d.ts +7 -0
  541. package/lib/AuthingGuard/IconFont/index.js +34 -0
  542. package/lib/AuthingGuard/IconFont/svg.d.ts +1 -0
  543. package/lib/AuthingGuard/IconFont/svg.js +8 -0
  544. package/lib/AuthingGuard/LoginLayout/index.d.ts +2 -0
  545. package/lib/AuthingGuard/LoginLayout/index.js +210 -0
  546. package/lib/AuthingGuard/MfaLayout/Steps.d.ts +4 -0
  547. package/lib/AuthingGuard/MfaLayout/Steps.js +13 -0
  548. package/lib/AuthingGuard/MfaLayout/index.d.ts +4 -0
  549. package/lib/AuthingGuard/MfaLayout/index.js +76 -0
  550. package/lib/AuthingGuard/RegisterLayout/index.d.ts +2 -0
  551. package/lib/AuthingGuard/RegisterLayout/index.js +109 -0
  552. package/lib/AuthingGuard/ResetPwdLayout/index.d.ts +2 -0
  553. package/lib/AuthingGuard/ResetPwdLayout/index.js +40 -0
  554. package/lib/AuthingGuard/ToggleLang/index.d.ts +2 -0
  555. package/lib/AuthingGuard/ToggleLang/index.js +64 -0
  556. package/lib/AuthingGuard/api/appConfig.d.ts +116 -0
  557. package/lib/AuthingGuard/api/appConfig.js +38 -0
  558. package/lib/AuthingGuard/api/index.d.ts +3 -0
  559. package/lib/AuthingGuard/api/index.js +44 -0
  560. package/lib/AuthingGuard/api/sso.d.ts +19 -0
  561. package/lib/AuthingGuard/api/sso.js +16 -0
  562. package/lib/AuthingGuard/api/userPoolConfig.d.ts +81 -0
  563. package/lib/AuthingGuard/api/userPoolConfig.js +16 -0
  564. package/lib/AuthingGuard/constants.d.ts +32 -0
  565. package/lib/AuthingGuard/constants.js +96 -0
  566. package/lib/AuthingGuard/hooks/index.d.ts +20 -0
  567. package/lib/AuthingGuard/hooks/index.js +66 -0
  568. package/lib/AuthingGuard/hooks/useScreenSize.d.ts +10 -0
  569. package/lib/AuthingGuard/hooks/useScreenSize.js +89 -0
  570. package/lib/AuthingGuard/index.d.ts +12 -0
  571. package/lib/AuthingGuard/index.js +140 -0
  572. package/lib/AuthingGuard/style/appMFALayout.css +1 -0
  573. package/lib/AuthingGuard/style/appMFALayout.less +12 -0
  574. package/lib/AuthingGuard/style/completeUserInfoLayout.css +1 -0
  575. package/lib/AuthingGuard/style/completeUserInfoLayout.less +8 -0
  576. package/lib/AuthingGuard/style/css.js +35 -0
  577. package/lib/AuthingGuard/style/emailMfaVerifyForm.css +0 -0
  578. package/lib/AuthingGuard/style/emailMfaVerifyForm.less +0 -0
  579. package/lib/AuthingGuard/style/formAgreements.css +1 -0
  580. package/lib/AuthingGuard/style/formAgreements.less +44 -0
  581. package/lib/AuthingGuard/style/formResetPwdForm.css +1 -0
  582. package/lib/AuthingGuard/style/formResetPwdForm.less +3 -0
  583. package/lib/AuthingGuard/style/guardLayout.css +1 -0
  584. package/lib/AuthingGuard/style/guardLayout.less +111 -0
  585. package/lib/AuthingGuard/style/header.css +1 -0
  586. package/lib/AuthingGuard/style/header.less +64 -0
  587. package/lib/AuthingGuard/style/iconFont.css +1 -0
  588. package/lib/AuthingGuard/style/iconFont.less +6 -0
  589. package/lib/AuthingGuard/style/index.css +1 -0
  590. package/lib/AuthingGuard/style/index.d.ts +17 -0
  591. package/lib/AuthingGuard/style/index.js +35 -0
  592. package/lib/AuthingGuard/style/index.less +106 -0
  593. package/lib/AuthingGuard/style/loginFormFooter.css +1 -0
  594. package/lib/AuthingGuard/style/loginFormFooter.less +6 -0
  595. package/lib/AuthingGuard/style/mfaLayout.css +1 -0
  596. package/lib/AuthingGuard/style/mfaLayout.less +3 -0
  597. package/lib/AuthingGuard/style/mfaResetCodeForm.css +0 -0
  598. package/lib/AuthingGuard/style/mfaResetCodeForm.less +0 -0
  599. package/lib/AuthingGuard/style/mfaVerifyForm.css +1 -0
  600. package/lib/AuthingGuard/style/mfaVerifyForm.less +12 -0
  601. package/lib/AuthingGuard/style/qrCodeLoginForm.css +1 -0
  602. package/lib/AuthingGuard/style/qrCodeLoginForm.less +14 -0
  603. package/lib/AuthingGuard/style/sendPhoneCode.css +1 -0
  604. package/lib/AuthingGuard/style/sendPhoneCode.less +26 -0
  605. package/lib/AuthingGuard/style/smsMfaVerifyForm.css +1 -0
  606. package/lib/AuthingGuard/style/smsMfaVerifyForm.less +3 -0
  607. package/lib/AuthingGuard/style/socialAndIdpLogin.css +0 -0
  608. package/lib/AuthingGuard/style/socialAndIdpLogin.less +0 -0
  609. package/lib/AuthingGuard/types/Forms.d.ts +79 -0
  610. package/lib/AuthingGuard/types/Forms.js +5 -0
  611. package/lib/AuthingGuard/types/GuardConfig.d.ts +241 -0
  612. package/lib/AuthingGuard/types/GuardConfig.js +194 -0
  613. package/lib/AuthingGuard/types/GuardState.d.ts +6 -0
  614. package/lib/AuthingGuard/types/GuardState.js +3 -0
  615. package/lib/AuthingGuard/types/Locales.d.ts +5 -0
  616. package/lib/AuthingGuard/types/Locales.js +14 -0
  617. package/lib/AuthingGuard/types/index.d.ts +4 -0
  618. package/lib/AuthingGuard/types/index.js +57 -0
  619. package/lib/AuthingTabs/index.d.ts +12 -0
  620. package/lib/AuthingTabs/index.js +92 -0
  621. package/lib/AuthingTabs/style/css.js +3 -0
  622. package/lib/AuthingTabs/style/index.css +1 -0
  623. package/lib/AuthingTabs/style/index.d.ts +1 -0
  624. package/lib/AuthingTabs/style/index.js +3 -0
  625. package/lib/AuthingTabs/style/index.less +135 -0
  626. package/lib/BindTotp/core/bindSuccess.d.ts +6 -0
  627. package/lib/BindTotp/core/bindSuccess.js +126 -0
  628. package/lib/BindTotp/core/securityCode.d.ts +8 -0
  629. package/lib/BindTotp/core/securityCode.js +162 -0
  630. package/lib/BindTotp/index.d.ts +3 -0
  631. package/lib/BindTotp/index.js +197 -0
  632. package/lib/BindTotp/interface.d.ts +19 -0
  633. package/lib/BindTotp/interface.js +24 -0
  634. package/lib/BindTotp/style/css.js +3 -0
  635. package/lib/BindTotp/style/index.css +1 -0
  636. package/lib/BindTotp/style/index.d.ts +1 -0
  637. package/lib/BindTotp/style/index.js +3 -0
  638. package/lib/BindTotp/style/index.less +57 -0
  639. package/lib/ChangeLanguage/index.d.ts +2 -0
  640. package/lib/ChangeLanguage/index.js +59 -0
  641. package/lib/ChangePassword/core/firstLoginReset.d.ts +8 -0
  642. package/lib/ChangePassword/core/firstLoginReset.js +160 -0
  643. package/lib/ChangePassword/core/rotateReset.d.ts +8 -0
  644. package/lib/ChangePassword/core/rotateReset.js +181 -0
  645. package/lib/ChangePassword/index.d.ts +2 -0
  646. package/lib/ChangePassword/index.js +91 -0
  647. package/lib/CompleteInfo/core/completeInfo.d.ts +16 -0
  648. package/lib/CompleteInfo/core/completeInfo.js +574 -0
  649. package/lib/CompleteInfo/index.d.ts +3 -0
  650. package/lib/CompleteInfo/index.js +68 -0
  651. package/lib/CompleteInfo/interface.d.ts +32 -0
  652. package/lib/CompleteInfo/interface.js +24 -0
  653. package/lib/CompleteInfo/style/css.js +3 -0
  654. package/lib/CompleteInfo/style/index.css +1 -0
  655. package/lib/CompleteInfo/style/index.d.ts +1 -0
  656. package/lib/CompleteInfo/style/index.js +3 -0
  657. package/lib/CompleteInfo/style/index.less +7 -0
  658. package/lib/CompleteInfo/utils.d.ts +3 -0
  659. package/lib/CompleteInfo/utils.js +51 -0
  660. package/lib/CopyAbleText/index.d.ts +4 -0
  661. package/lib/CopyAbleText/index.js +68 -0
  662. package/lib/CopyAbleText/style/css.js +3 -0
  663. package/lib/CopyAbleText/style/index.css +1 -0
  664. package/lib/CopyAbleText/style/index.d.ts +1 -0
  665. package/lib/CopyAbleText/style/index.js +3 -0
  666. package/lib/CopyAbleText/style/index.less +13 -0
  667. package/lib/DownloadAuthenticator/index.d.ts +3 -0
  668. package/lib/DownloadAuthenticator/index.js +106 -0
  669. package/lib/DownloadAuthenticator/interface.d.ts +12 -0
  670. package/lib/DownloadAuthenticator/interface.js +24 -0
  671. package/lib/DownloadAuthenticator/style/css.js +3 -0
  672. package/lib/DownloadAuthenticator/style/index.css +1 -0
  673. package/lib/DownloadAuthenticator/style/index.d.ts +1 -0
  674. package/lib/DownloadAuthenticator/style/index.js +3 -0
  675. package/lib/DownloadAuthenticator/style/index.less +58 -0
  676. package/lib/Error/index.d.ts +3 -0
  677. package/lib/Error/index.js +38 -0
  678. package/lib/Error/interface.d.ts +8 -0
  679. package/lib/Error/interface.js +5 -0
  680. package/lib/Error/style/css.js +3 -0
  681. package/lib/Error/style/index.css +1 -0
  682. package/lib/Error/style/index.d.ts +1 -0
  683. package/lib/Error/style/index.js +3 -0
  684. package/lib/Error/style/index.less +12 -0
  685. package/lib/ForgetPassword/core/resetPassword.d.ts +9 -0
  686. package/lib/ForgetPassword/core/resetPassword.js +246 -0
  687. package/lib/ForgetPassword/index.d.ts +3 -0
  688. package/lib/ForgetPassword/index.js +117 -0
  689. package/lib/ForgetPassword/interface.d.ts +18 -0
  690. package/lib/ForgetPassword/interface.js +5 -0
  691. package/lib/Guard/Guard.d.ts +10 -0
  692. package/lib/Guard/Guard.js +381 -0
  693. package/lib/Guard/authClient.d.ts +5 -0
  694. package/lib/Guard/authClient.js +58 -0
  695. package/lib/Guard/config.d.ts +8 -0
  696. package/lib/Guard/config.js +30 -0
  697. package/lib/Guard/event.d.ts +8 -0
  698. package/lib/Guard/event.js +71 -0
  699. package/lib/Guard/index.d.ts +4 -0
  700. package/lib/Guard/index.js +57 -0
  701. package/lib/Guard/module.d.ts +20 -0
  702. package/lib/Guard/module.js +23 -0
  703. package/lib/Guard/sso.d.ts +19 -0
  704. package/lib/Guard/sso.js +46 -0
  705. package/lib/Guard/stateMachine.d.ts +36 -0
  706. package/lib/Guard/stateMachine.js +155 -0
  707. package/lib/Guard/style/css.js +39 -0
  708. package/lib/Guard/style/index.css +1 -0
  709. package/lib/Guard/style/index.d.ts +19 -0
  710. package/lib/Guard/style/index.js +39 -0
  711. package/lib/Guard/style/index.less +615 -0
  712. package/lib/IconFont/iconfont.d.ts +1 -0
  713. package/lib/IconFont/iconfont.js +63 -0
  714. package/lib/IconFont/index.d.ts +7 -0
  715. package/lib/IconFont/index.js +34 -0
  716. package/lib/IconFont/style/css.js +3 -0
  717. package/lib/IconFont/style/index.css +1 -0
  718. package/lib/IconFont/style/index.d.ts +1 -0
  719. package/lib/IconFont/style/index.js +3 -0
  720. package/lib/IconFont/style/index.less +6 -0
  721. package/lib/IconFont/svg.d.ts +1 -0
  722. package/lib/IconFont/svg.js +8 -0
  723. package/lib/ImagePro/index.d.ts +13 -0
  724. package/lib/ImagePro/index.js +76 -0
  725. package/lib/ImagePro/style/css.js +3 -0
  726. package/lib/ImagePro/style/index.css +1 -0
  727. package/lib/ImagePro/style/index.d.ts +1 -0
  728. package/lib/ImagePro/style/index.js +3 -0
  729. package/lib/ImagePro/style/index.less +40 -0
  730. package/lib/InputNumber/index.d.ts +5 -0
  731. package/lib/InputNumber/index.js +56 -0
  732. package/lib/InputPassword/index.d.ts +4 -0
  733. package/lib/InputPassword/index.js +38 -0
  734. package/lib/Login/codemap.d.ts +2 -0
  735. package/lib/Login/codemap.js +58 -0
  736. package/lib/Login/core/withAD.d.ts +6 -0
  737. package/lib/Login/core/withAD.js +18 -0
  738. package/lib/Login/core/withAppQrcode.d.ts +8 -0
  739. package/lib/Login/core/withAppQrcode.js +74 -0
  740. package/lib/Login/core/withLDAP.d.ts +10 -0
  741. package/lib/Login/core/withLDAP.js +227 -0
  742. package/lib/Login/core/withPassword/FormItemAccount.d.ts +7 -0
  743. package/lib/Login/core/withPassword/FormItemAccount.js +55 -0
  744. package/lib/Login/core/withPassword/GraphicVerifyCode.d.ts +7 -0
  745. package/lib/Login/core/withPassword/GraphicVerifyCode.js +46 -0
  746. package/lib/Login/core/withPassword/InputAccount.d.ts +7 -0
  747. package/lib/Login/core/withPassword/InputAccount.js +72 -0
  748. package/lib/Login/core/withPassword/index.d.ts +12 -0
  749. package/lib/Login/core/withPassword/index.js +243 -0
  750. package/lib/Login/core/withPhonecode.d.ts +2 -0
  751. package/lib/Login/core/withPhonecode.js +189 -0
  752. package/lib/Login/core/withWechatMiniQrcode.d.ts +8 -0
  753. package/lib/Login/core/withWechatMiniQrcode.js +85 -0
  754. package/lib/Login/core/withWechatmpQrcode.d.ts +8 -0
  755. package/lib/Login/core/withWechatmpQrcode.js +75 -0
  756. package/lib/Login/index.d.ts +3 -0
  757. package/lib/Login/index.js +451 -0
  758. package/lib/Login/interface.d.ts +31 -0
  759. package/lib/Login/interface.js +34 -0
  760. package/lib/Login/socialLogin/index.d.ts +8 -0
  761. package/lib/Login/socialLogin/index.js +462 -0
  762. package/lib/Login/style/css.js +5 -0
  763. package/lib/Login/style/index.css +1 -0
  764. package/lib/Login/style/index.d.ts +2 -0
  765. package/lib/Login/style/index.js +5 -0
  766. package/lib/Login/style/index.less +99 -0
  767. package/lib/Login/style/socialLogin.css +1 -0
  768. package/lib/Login/style/socialLogin.less +77 -0
  769. package/lib/MFA/VerifyCodeInput/VerifyCodeFormItem.d.ts +7 -0
  770. package/lib/MFA/VerifyCodeInput/VerifyCodeFormItem.js +53 -0
  771. package/lib/MFA/VerifyCodeInput/index.d.ts +13 -0
  772. package/lib/MFA/VerifyCodeInput/index.js +181 -0
  773. package/lib/MFA/codemap.d.ts +2 -0
  774. package/lib/MFA/codemap.js +35 -0
  775. package/lib/MFA/core/email.d.ts +23 -0
  776. package/lib/MFA/core/email.js +328 -0
  777. package/lib/MFA/core/face.d.ts +2 -0
  778. package/lib/MFA/core/face.js +380 -0
  779. package/lib/MFA/core/face_deps.d.ts +12 -0
  780. package/lib/MFA/core/face_deps.js +55 -0
  781. package/lib/MFA/core/sms.d.ts +22 -0
  782. package/lib/MFA/core/sms.js +324 -0
  783. package/lib/MFA/core/totp.d.ts +19 -0
  784. package/lib/MFA/core/totp.js +177 -0
  785. package/lib/MFA/index.d.ts +3 -0
  786. package/lib/MFA/index.js +196 -0
  787. package/lib/MFA/interface.d.ts +38 -0
  788. package/lib/MFA/interface.js +33 -0
  789. package/lib/MFA/mfaMethods/index.d.ts +8 -0
  790. package/lib/MFA/mfaMethods/index.js +95 -0
  791. package/lib/MFA/style/css.js +7 -0
  792. package/lib/MFA/style/index.css +1 -0
  793. package/lib/MFA/style/index.d.ts +3 -0
  794. package/lib/MFA/style/index.js +7 -0
  795. package/lib/MFA/style/index.less +101 -0
  796. package/lib/MFA/style/mfaMethods.css +1 -0
  797. package/lib/MFA/style/mfaMethods.less +42 -0
  798. package/lib/MFA/style/verifyCodeInput.css +1 -0
  799. package/lib/MFA/style/verifyCodeInput.less +38 -0
  800. package/lib/NeedHelpView/core/describeQuestions.d.ts +8 -0
  801. package/lib/NeedHelpView/core/describeQuestions.js +307 -0
  802. package/lib/NeedHelpView/index.d.ts +2 -0
  803. package/lib/NeedHelpView/index.js +64 -0
  804. package/lib/RecoveryCode/core/useCode.d.ts +5 -0
  805. package/lib/RecoveryCode/core/useCode.js +112 -0
  806. package/lib/RecoveryCode/index.d.ts +3 -0
  807. package/lib/RecoveryCode/index.js +43 -0
  808. package/lib/RecoveryCode/interface.d.ts +19 -0
  809. package/lib/RecoveryCode/interface.js +24 -0
  810. package/lib/RecoveryCode/style/css.js +3 -0
  811. package/lib/RecoveryCode/style/index.css +1 -0
  812. package/lib/RecoveryCode/style/index.d.ts +1 -0
  813. package/lib/RecoveryCode/style/index.js +3 -0
  814. package/lib/RecoveryCode/style/index.less +13 -0
  815. package/lib/Register/codemap.d.ts +2 -0
  816. package/lib/Register/codemap.js +21 -0
  817. package/lib/Register/components/Agreements/index.d.ts +10 -0
  818. package/lib/Register/components/Agreements/index.js +90 -0
  819. package/lib/Register/core/WithEmail.d.ts +9 -0
  820. package/lib/Register/core/WithEmail.js +284 -0
  821. package/lib/Register/core/WithPhone.d.ts +8 -0
  822. package/lib/Register/core/WithPhone.js +231 -0
  823. package/lib/Register/index.d.ts +3 -0
  824. package/lib/Register/index.js +186 -0
  825. package/lib/Register/interface.d.ts +25 -0
  826. package/lib/Register/interface.js +31 -0
  827. package/lib/Register/style/css.js +3 -0
  828. package/lib/Register/style/index.css +1 -0
  829. package/lib/Register/style/index.d.ts +1 -0
  830. package/lib/Register/style/index.js +3 -0
  831. package/lib/Register/style/index.less +44 -0
  832. package/lib/SendCode/SendCodeBtn.d.ts +9 -0
  833. package/lib/SendCode/SendCodeBtn.js +157 -0
  834. package/lib/SendCode/index.d.ts +11 -0
  835. package/lib/SendCode/index.js +227 -0
  836. package/lib/SendCode/style/css.js +3 -0
  837. package/lib/SendCode/style/index.css +1 -0
  838. package/lib/SendCode/style/index.d.ts +1 -0
  839. package/lib/SendCode/style/index.js +3 -0
  840. package/lib/SendCode/style/index.less +31 -0
  841. package/lib/ShieldSpin/index.d.ts +7 -0
  842. package/lib/ShieldSpin/index.js +35 -0
  843. package/lib/ShieldSpin/loading.svg +29 -0
  844. package/lib/SubmitButton/index.d.ts +8 -0
  845. package/lib/SubmitButton/index.js +68 -0
  846. package/lib/SubmitSuccess/index.d.ts +3 -0
  847. package/lib/SubmitSuccess/index.js +92 -0
  848. package/lib/SubmitSuccess/interface.d.ts +13 -0
  849. package/lib/SubmitSuccess/interface.js +5 -0
  850. package/lib/Type/index.d.ts +35 -0
  851. package/lib/Type/index.js +25 -0
  852. package/lib/ValidatorRules/PasswordFormItem.d.ts +3 -0
  853. package/lib/ValidatorRules/PasswordFormItem.js +38 -0
  854. package/lib/ValidatorRules/ValidatorFormItem.d.ts +5 -0
  855. package/lib/ValidatorRules/ValidatorFormItem.js +262 -0
  856. package/lib/ValidatorRules/index.d.ts +27 -0
  857. package/lib/ValidatorRules/index.js +22 -0
  858. package/lib/VerifyCodeInput/index.d.ts +9 -0
  859. package/lib/VerifyCodeInput/index.js +92 -0
  860. package/lib/VerifyCodeInput/style/css.js +3 -0
  861. package/lib/VerifyCodeInput/style/index.css +1 -0
  862. package/lib/VerifyCodeInput/style/index.d.ts +1 -0
  863. package/lib/VerifyCodeInput/style/index.js +3 -0
  864. package/lib/VerifyCodeInput/style/index.less +24 -0
  865. package/lib/_utils/GuardErrorCode.d.ts +9 -0
  866. package/lib/_utils/GuardErrorCode.js +18 -0
  867. package/lib/_utils/clipboard.d.ts +1 -0
  868. package/lib/_utils/clipboard.js +45 -0
  869. package/lib/_utils/config.d.ts +7 -0
  870. package/lib/_utils/config.js +152 -0
  871. package/lib/_utils/context.d.ts +8 -0
  872. package/lib/_utils/context.js +31 -0
  873. package/lib/_utils/errorFace.d.ts +12 -0
  874. package/lib/_utils/errorFace.js +40 -0
  875. package/lib/_utils/guradHttp.d.ts +21 -0
  876. package/lib/_utils/guradHttp.js +190 -0
  877. package/lib/_utils/hooks/index.d.ts +4 -0
  878. package/lib/_utils/hooks/index.js +76 -0
  879. package/lib/_utils/http.d.ts +23 -0
  880. package/lib/_utils/http.js +188 -0
  881. package/lib/_utils/index.d.ts +60 -0
  882. package/lib/_utils/index.js +547 -0
  883. package/lib/_utils/locales/en/common.json +239 -0
  884. package/lib/_utils/locales/en/index.d.ts +5 -0
  885. package/lib/_utils/locales/en/index.js +39 -0
  886. package/lib/_utils/locales/en/login.json +103 -0
  887. package/lib/_utils/locales/en/map.json +4 -0
  888. package/lib/_utils/locales/en/user.json +85 -0
  889. package/lib/_utils/locales/index.d.ts +5 -0
  890. package/lib/_utils/locales/index.js +72 -0
  891. package/lib/_utils/locales/zh/common.json +239 -0
  892. package/lib/_utils/locales/zh/index.d.ts +5 -0
  893. package/lib/_utils/locales/zh/index.js +39 -0
  894. package/lib/_utils/locales/zh/login.json +103 -0
  895. package/lib/_utils/locales/zh/map.json +4 -0
  896. package/lib/_utils/locales/zh/user.json +85 -0
  897. package/lib/_utils/popupCenter.d.ts +9 -0
  898. package/lib/_utils/popupCenter.js +33 -0
  899. package/lib/context/base.d.ts +12 -0
  900. package/lib/context/base.js +26 -0
  901. package/lib/context/global/context.d.ts +10 -0
  902. package/lib/context/global/context.js +63 -0
  903. package/lib/context/global/reducer.d.ts +29 -0
  904. package/lib/context/global/reducer.js +36 -0
  905. package/lib/context/module/context.d.ts +11 -0
  906. package/lib/context/module/context.js +37 -0
  907. package/lib/index.css +2358 -0
  908. package/lib/index.d.ts +8 -2149
  909. package/lib/index.js +96 -0
  910. package/lib/index.min.css +1 -2
  911. package/lib/version/index.d.ts +2 -0
  912. package/lib/version/index.js +13 -0
  913. package/lib/version/version.d.ts +2 -0
  914. package/lib/version/version.js +8 -0
  915. package/package.json +62 -82
  916. package/.eslintignore +0 -6
  917. package/.eslintrc.js +0 -7
  918. package/.prettierrc +0 -5
  919. package/.vscode/settings.json +0 -31
  920. package/build/favicon.ico +0 -0
  921. package/build/logo192.png +0 -0
  922. package/build/logo512.png +0 -0
  923. package/build/manifest.json +0 -25
  924. package/build/robots.txt +0 -3
  925. package/components/AuthingDropdown/index.tsx +0 -52
  926. package/components/AuthingGuard/AppMFALayout/index.tsx +0 -74
  927. package/components/AuthingGuard/CompleteUserInfoLayout/index.tsx +0 -29
  928. package/components/AuthingGuard/Forms/ADLoginForm/index.tsx +0 -117
  929. package/components/AuthingGuard/Forms/Agreements/index.tsx +0 -81
  930. package/components/AuthingGuard/Forms/CompleteUserInfoForm/index.tsx +0 -139
  931. package/components/AuthingGuard/Forms/EmailMfaVerifyForm/CheckEmailForm.tsx +0 -84
  932. package/components/AuthingGuard/Forms/EmailMfaVerifyForm/VerifyCodeForm.tsx +0 -116
  933. package/components/AuthingGuard/Forms/EmailMfaVerifyForm/index.tsx +0 -40
  934. package/components/AuthingGuard/Forms/EmailRegisterForm/index.tsx +0 -181
  935. package/components/AuthingGuard/Forms/LdapLoginForm/index.tsx +0 -166
  936. package/components/AuthingGuard/Forms/LoginFormFooter/index.tsx +0 -76
  937. package/components/AuthingGuard/Forms/MfaResetCodeForm/Step1.tsx +0 -86
  938. package/components/AuthingGuard/Forms/MfaResetCodeForm/Step2.tsx +0 -53
  939. package/components/AuthingGuard/Forms/MfaResetCodeForm/index.tsx +0 -65
  940. package/components/AuthingGuard/Forms/MfaResetCodeForm/style.less +0 -20
  941. package/components/AuthingGuard/Forms/MfaVerifyForm/index.tsx +0 -105
  942. package/components/AuthingGuard/Forms/PasswordLoginForm/index.tsx +0 -261
  943. package/components/AuthingGuard/Forms/PhoneCodeLoginForm/index.tsx +0 -133
  944. package/components/AuthingGuard/Forms/PhoneRegisterForm/index.tsx +0 -202
  945. package/components/AuthingGuard/Forms/QrCodeLoginForm/index.tsx +0 -59
  946. package/components/AuthingGuard/Forms/RegisterFormFooter/index.tsx +0 -56
  947. package/components/AuthingGuard/Forms/ResetPwdForm/Footer.tsx +0 -21
  948. package/components/AuthingGuard/Forms/ResetPwdForm/Step1.tsx +0 -86
  949. package/components/AuthingGuard/Forms/ResetPwdForm/Step2.tsx +0 -127
  950. package/components/AuthingGuard/Forms/ResetPwdForm/Step3.tsx +0 -141
  951. package/components/AuthingGuard/Forms/ResetPwdForm/Step4.tsx +0 -51
  952. package/components/AuthingGuard/Forms/ResetPwdForm/index.tsx +0 -96
  953. package/components/AuthingGuard/Forms/SendPhoneCode/SendCodeBtn.tsx +0 -88
  954. package/components/AuthingGuard/Forms/SendPhoneCode/index.tsx +0 -50
  955. package/components/AuthingGuard/Forms/SmsMfaVerifyForm/CheckPhoneForm.tsx +0 -86
  956. package/components/AuthingGuard/Forms/SmsMfaVerifyForm/VerifyCodeForm.tsx +0 -113
  957. package/components/AuthingGuard/Forms/SmsMfaVerifyForm/index.tsx +0 -40
  958. package/components/AuthingGuard/Forms/SocialAndIdpLogin/index.tsx +0 -325
  959. package/components/AuthingGuard/Forms/SocialAndIdpLogin/style.less +0 -75
  960. package/components/AuthingGuard/Forms/UploadImage/index.tsx +0 -70
  961. package/components/AuthingGuard/Forms/index.ts +0 -13
  962. package/components/AuthingGuard/GuardLayout/index.tsx +0 -474
  963. package/components/AuthingGuard/Header/index.tsx +0 -25
  964. package/components/AuthingGuard/Header/style.less +0 -52
  965. package/components/AuthingGuard/IconFont/iconfont.js +0 -74
  966. package/components/AuthingGuard/IconFont/index.tsx +0 -19
  967. package/components/AuthingGuard/IconFont/svg.js +0 -2
  968. package/components/AuthingGuard/LoginLayout/index.tsx +0 -161
  969. package/components/AuthingGuard/MfaLayout/Steps.ts +0 -4
  970. package/components/AuthingGuard/MfaLayout/index.tsx +0 -49
  971. package/components/AuthingGuard/RegisterLayout/index.tsx +0 -89
  972. package/components/AuthingGuard/ResetPwdLayout/index.tsx +0 -20
  973. package/components/AuthingGuard/ToggleLang/index.tsx +0 -51
  974. package/components/AuthingGuard/api/appConfig.ts +0 -146
  975. package/components/AuthingGuard/api/index.ts +0 -3
  976. package/components/AuthingGuard/api/sso.ts +0 -29
  977. package/components/AuthingGuard/api/userPoolConfig.ts +0 -111
  978. package/components/AuthingGuard/constants.ts +0 -105
  979. package/components/AuthingGuard/hooks/index.tsx +0 -70
  980. package/components/AuthingGuard/hooks/useScreenSize.tsx +0 -68
  981. package/components/AuthingGuard/index.tsx +0 -126
  982. package/components/AuthingGuard/style.less +0 -103
  983. package/components/AuthingGuard/types/Forms.ts +0 -94
  984. package/components/AuthingGuard/types/GuardConfig.ts +0 -420
  985. package/components/AuthingGuard/types/GuardState.ts +0 -7
  986. package/components/AuthingGuard/types/Locales.ts +0 -12
  987. package/components/AuthingGuard/types/index.ts +0 -4
  988. package/components/AuthingTabs/index.tsx +0 -98
  989. package/components/AuthingTabs/style.less +0 -135
  990. package/components/BindTotp/core/bindSuccess.tsx +0 -61
  991. package/components/BindTotp/core/securityCode.tsx +0 -119
  992. package/components/BindTotp/index.tsx +0 -134
  993. package/components/BindTotp/props.ts +0 -30
  994. package/components/BindTotp/styles.less +0 -57
  995. package/components/ChangeLanguage/index.tsx +0 -35
  996. package/components/ChangePassword/core/firstLoginReset.tsx +0 -104
  997. package/components/ChangePassword/core/rotateReset.tsx +0 -114
  998. package/components/ChangePassword/index.tsx +0 -59
  999. package/components/CompleteInfo/core/completeInfo.tsx +0 -155
  1000. package/components/CompleteInfo/index.tsx +0 -45
  1001. package/components/CompleteInfo/props.ts +0 -40
  1002. package/components/ComponentsRender/index.back +0 -64
  1003. package/components/CopyAbleText/index.tsx +0 -54
  1004. package/components/DownloadAuthenticator/index.tsx +0 -97
  1005. package/components/DownloadAuthenticator/props.ts +0 -22
  1006. package/components/DownloadAuthenticator/styles.less +0 -52
  1007. package/components/Error/index.tsx +0 -21
  1008. package/components/Error/props.ts +0 -9
  1009. package/components/ForgetPassword/core/resetPassword.tsx +0 -162
  1010. package/components/ForgetPassword/index.tsx +0 -75
  1011. package/components/ForgetPassword/props.ts +0 -32
  1012. package/components/Guard/Guard.tsx +0 -241
  1013. package/components/Guard/authClient.ts +0 -55
  1014. package/components/Guard/config.ts +0 -19
  1015. package/components/Guard/event.ts +0 -52
  1016. package/components/Guard/index.tsx +0 -10
  1017. package/components/Guard/module.ts +0 -19
  1018. package/components/Guard/stateMachine.ts +0 -133
  1019. package/components/Guard/styles.less +0 -444
  1020. package/components/IconFont/iconfont.js +0 -74
  1021. package/components/IconFont/index.tsx +0 -16
  1022. package/components/IconFont/svg.js +0 -2
  1023. package/components/ImagePro/index.tsx +0 -52
  1024. package/components/InputNumber/index.tsx +0 -33
  1025. package/components/Login/codemap.ts +0 -39
  1026. package/components/Login/core/withAD.tsx +0 -9
  1027. package/components/Login/core/withAppQrcode.tsx +0 -49
  1028. package/components/Login/core/withLDAP.tsx +0 -146
  1029. package/components/Login/core/withPassword.tsx +0 -176
  1030. package/components/Login/core/withPhonecode.tsx +0 -121
  1031. package/components/Login/core/withWechatMiniQrcode.tsx +0 -60
  1032. package/components/Login/core/withWechatmpQrcode.tsx +0 -53
  1033. package/components/Login/index.tsx +0 -368
  1034. package/components/Login/props.ts +0 -74
  1035. package/components/Login/socialLogin/index.tsx +0 -413
  1036. package/components/Login/socialLogin/style.less +0 -61
  1037. package/components/Login/styles.less +0 -53
  1038. package/components/MFA/codemap.ts +0 -21
  1039. package/components/MFA/core/email.tsx +0 -225
  1040. package/components/MFA/core/face.tsx +0 -297
  1041. package/components/MFA/core/face_deps.tsx +0 -37
  1042. package/components/MFA/core/sms.tsx +0 -229
  1043. package/components/MFA/core/totp.tsx +0 -137
  1044. package/components/MFA/index.tsx +0 -137
  1045. package/components/MFA/mfaMethods/index.tsx +0 -81
  1046. package/components/MFA/mfaMethods/style.less +0 -39
  1047. package/components/MFA/props.ts +0 -51
  1048. package/components/MFA/styles.less +0 -93
  1049. package/components/NeedHelpView/core/describeQuestions.tsx +0 -223
  1050. package/components/NeedHelpView/index.tsx +0 -99
  1051. package/components/RecoveryCode/core/useCode.tsx +0 -71
  1052. package/components/RecoveryCode/index.tsx +0 -27
  1053. package/components/RecoveryCode/interface.ts +0 -31
  1054. package/components/Register/codemap.ts +0 -16
  1055. package/components/Register/components/Agreements/index.tsx +0 -81
  1056. package/components/Register/core/WithEmail.tsx +0 -236
  1057. package/components/Register/core/WithPhone.tsx +0 -184
  1058. package/components/Register/index.tsx +0 -123
  1059. package/components/Register/props.ts +0 -50
  1060. package/components/SendCode/SendCodeBtn.tsx +0 -96
  1061. package/components/SendCode/index.tsx +0 -94
  1062. package/components/SendCode/style.less +0 -31
  1063. package/components/ShieldSpin/index.tsx +0 -27
  1064. package/components/SubmitButton/index.tsx +0 -50
  1065. package/components/Type/index.ts +0 -61
  1066. package/components/ValidatorRules/EmailFormItem.tsx +0 -81
  1067. package/components/ValidatorRules/PhoneFormItem.tsx +0 -90
  1068. package/components/ValidatorRules/index.ts +0 -14
  1069. package/components/VerifyCodeInput/index.tsx +0 -76
  1070. package/components/_utils/GuardErrorCode.ts +0 -8
  1071. package/components/_utils/clipboard.ts +0 -27
  1072. package/components/_utils/config.ts +0 -125
  1073. package/components/_utils/guradHttp.ts +0 -93
  1074. package/components/_utils/hooks/index.ts +0 -64
  1075. package/components/_utils/http.ts +0 -85
  1076. package/components/_utils/index.ts +0 -319
  1077. package/components/_utils/locales/en/common.json +0 -223
  1078. package/components/_utils/locales/en/index.ts +0 -6
  1079. package/components/_utils/locales/en/login.json +0 -96
  1080. package/components/_utils/locales/en/user.json +0 -82
  1081. package/components/_utils/locales/index.ts +0 -45
  1082. package/components/_utils/locales/zh/common.json +0 -223
  1083. package/components/_utils/locales/zh/index.ts +0 -6
  1084. package/components/_utils/locales/zh/login.json +0 -96
  1085. package/components/_utils/locales/zh/user.json +0 -82
  1086. package/components/_utils/popupCenter.ts +0 -48
  1087. package/components/assets/images/error.png +0 -0
  1088. package/components/context/base.tsx +0 -28
  1089. package/components/context/global/context.tsx +0 -39
  1090. package/components/context/global/reducer.tsx +0 -56
  1091. package/components/context/module/context.tsx +0 -23
  1092. package/components/index.ts +0 -9
  1093. package/config/antdReplacer.js +0 -51
  1094. package/config/env.js +0 -104
  1095. package/config/getHttpsConfig.js +0 -66
  1096. package/config/jest/cssTransform.js +0 -14
  1097. package/config/jest/fileTransform.js +0 -40
  1098. package/config/modules.js +0 -134
  1099. package/config/paths.js +0 -71
  1100. package/config/pnpTs.js +0 -35
  1101. package/config/webpack.config.js +0 -835
  1102. package/config/webpackDevServer.config.js +0 -130
  1103. package/examples.tsx +0 -107
  1104. package/index.js +0 -1
  1105. package/lib/index.min.js +0 -2
  1106. package/lib/index.min.js.LICENSE.txt +0 -69
  1107. package/logo.svg +0 -7
  1108. package/public/favicon.ico +0 -0
  1109. package/public/index.html +0 -43
  1110. package/public/logo192.png +0 -0
  1111. package/public/logo512.png +0 -0
  1112. package/public/manifest.json +0 -25
  1113. package/public/robots.txt +0 -3
  1114. package/react-app-env.d.ts +0 -71
  1115. package/reportWebVitals.ts +0 -15
  1116. package/scripts/build.js +0 -208
  1117. package/scripts/lib.js +0 -200
  1118. package/scripts/start.js +0 -162
  1119. package/scripts/test.js +0 -49
  1120. package/setupTests.ts +0 -5
  1121. package/tsconfig.json +0 -30
package/lib/index.css ADDED
@@ -0,0 +1,2358 @@
1
+ .authing-toggle-mfa,
2
+ .toggle-mfa-dropdown .authing-dropdown-icon {
3
+ color: #999;
4
+ }
5
+ .toggle-mfa-dropdown {
6
+ margin-top: 30px;
7
+ align-self: center;
8
+ }
9
+ .toggle-mfa-dropdown .authing-dropdown-menu-item {
10
+ white-space: nowrap;
11
+ }
12
+
13
+ .authing-guard-complete-info-title {
14
+ font-size: 20px;
15
+ text-align: center;
16
+ color: #333;
17
+ }
18
+ .authing-guard-complete-info-msg {
19
+ color: #b2b2b2;
20
+ }
21
+
22
+
23
+ .authing-agreements {
24
+ margin-top: 20px;
25
+ margin-bottom: 20px;
26
+ }
27
+ .authing-agreements.authing-agreements-error .authing-agreements-item-invalid {
28
+ color: #ff4d4f;
29
+ }
30
+ .authing-agreements.authing-agreements-error .authing-agreements-item-invalid a {
31
+ color: #ff4d4f;
32
+ }
33
+ .authing-agreements.authing-agreements-error .authing-agreements-item-invalid :global(.ant-checkbox-inner) {
34
+ border-color: #ff4d4f;
35
+ }
36
+ .authing-agreements-item {
37
+ color: #999999;
38
+ -webkit-user-select: none;
39
+ -ms-user-select: none;
40
+ user-select: none;
41
+ cursor: pointer;
42
+ font-size: 12px;
43
+ }
44
+ .authing-agreements-item:not(:first-child) {
45
+ margin-top: 4px;
46
+ }
47
+ .authing-agreements-item p {
48
+ margin-bottom: 0;
49
+ display: inline-block;
50
+ }
51
+ .authing-agreements-checkbox {
52
+ margin-bottom: 2px;
53
+ }
54
+ .authing-agreements-checkbox :global(.ant-checkbox-inner) {
55
+ width: 14px;
56
+ height: 14px;
57
+ }
58
+ .authing-agreements-checkbox :global(.ant-checkbox-inner)::after {
59
+ left: 20%;
60
+ }
61
+ .authing-agreements-item-content {
62
+ line-height: 23px;
63
+ }
64
+
65
+ .authing-reset-pwd-btn {
66
+ margin-top: 24px;
67
+ }
68
+
69
+ .authing-guard-layout {
70
+ display: flex;
71
+ justify-content: center;
72
+ align-items: center;
73
+ width: 100%;
74
+ padding: 24px 0;
75
+ height: 100%;
76
+ }
77
+ .authing-guard-layout__hidden {
78
+ pointer-events: none;
79
+ }
80
+ .authing-guard-layout__dis-none {
81
+ z-index: -1;
82
+ opacity: 0;
83
+ }
84
+ .authing-guard-layout__modal {
85
+ position: fixed;
86
+ left: 0;
87
+ top: 0;
88
+ }
89
+ .authing-guard-mask {
90
+ position: absolute;
91
+ left: 0;
92
+ right: 0;
93
+ top: 0;
94
+ bottom: 0;
95
+ background-color: rgba(0, 0, 0, 0.45);
96
+ opacity: 1;
97
+ transition: all 0.3s;
98
+ }
99
+ .authing-guard-mask__hidden {
100
+ opacity: 0;
101
+ }
102
+ .authing-guard-container {
103
+ width: 440px;
104
+ min-height: 610px;
105
+ max-height: 100%;
106
+ box-sizing: border-box;
107
+ background-color: #fff;
108
+ padding: 39px 38px 31px;
109
+ border-radius: 10px;
110
+ display: flex;
111
+ flex-direction: column;
112
+ box-shadow: 0 2px 10px 0 rgba(57, 106, 255, 0.2);
113
+ margin-left: auto;
114
+ margin-right: auto;
115
+ overflow: auto;
116
+ position: relative;
117
+ -webkit-transform: translateY(0);
118
+ transform: translateY(0);
119
+ transition: all 0.3s;
120
+ }
121
+ .authing-guard-container__hidden {
122
+ -webkit-transform: translateY(2000px);
123
+ transform: translateY(2000px);
124
+ }
125
+ .authing-guard-loading,
126
+ .authing-guard-load-error {
127
+ flex: 1;
128
+ display: flex;
129
+ align-items: center;
130
+ justify-content: center;
131
+ }
132
+ .authing-guard-close-btn {
133
+ position: absolute;
134
+ right: 12px;
135
+ top: 12px;
136
+ border: none;
137
+ outline: none;
138
+ box-shadow: none;
139
+ background-color: #fff;
140
+ border-radius: 50%;
141
+ width: 30px;
142
+ height: 30px;
143
+ text-align: center;
144
+ line-height: 20px;
145
+ cursor: pointer;
146
+ }
147
+ .authing-guard-close-btn:focus {
148
+ outline: none;
149
+ border: none;
150
+ box-shadow: none;
151
+ }
152
+ .authing-guard-close-btn:hover {
153
+ color: #396aff;
154
+ }
155
+ @media only screen and (max-width: 719px) {
156
+ .authing-guard-layout {
157
+ padding: 0;
158
+ }
159
+ .authing-guard-container {
160
+ width: 100%;
161
+ min-height: 100%;
162
+ border: none;
163
+ border-radius: initial;
164
+ box-shadow: initial;
165
+ padding-left: 24px;
166
+ padding-right: 24px;
167
+ }
168
+ .authing-ant-input {
169
+ font-size: 14px;
170
+ }
171
+ }
172
+
173
+ .authing-guard-header {
174
+ display: flex;
175
+ flex-direction: column;
176
+ justify-content: center;
177
+ align-items: center;
178
+ }
179
+ .authing-guard-logo {
180
+ margin-bottom: 8px;
181
+ }
182
+ .authing-guard-logo img {
183
+ object-fit: contain;
184
+ }
185
+ .authing-guard-title-container {
186
+ display: flex;
187
+ justify-content: center;
188
+ flex-direction: column;
189
+ align-items: center;
190
+ }
191
+ .authing-guard-title {
192
+ color: #282d3c;
193
+ font-size: 24px;
194
+ margin-bottom: 4px;
195
+ width: 100%;
196
+ word-break: break-all;
197
+ text-align: center;
198
+ }
199
+ .authing-guard-description {
200
+ font-size: 16px;
201
+ color: #878a95;
202
+ margin-bottom: 23px;
203
+ }
204
+ @media only screen and (max-width: 719px) {
205
+ .authing-guard-header {
206
+ align-items: flex-start;
207
+ flex-direction: row;
208
+ align-items: center;
209
+ justify-content: flex-start;
210
+ padding-top: 40px;
211
+ padding-bottom: 48px;
212
+ }
213
+ .authing-guard-title {
214
+ margin-bottom: 0;
215
+ padding-left: 8px;
216
+ color: #333333;
217
+ font-weight: 500;
218
+ text-align: unset;
219
+ }
220
+ .authing-guard-logo {
221
+ margin: 0;
222
+ }
223
+ .authing-guard-title-container {
224
+ flex-direction: column;
225
+ align-items: flex-start;
226
+ }
227
+ .authing-guard-description {
228
+ margin-bottom: 0px;
229
+ padding-left: 8px;
230
+ }
231
+ }
232
+
233
+ .authing-icon {
234
+ width: 1em;
235
+ height: 1em;
236
+ vertical-align: -0.15em;
237
+ fill: currentColor;
238
+ }
239
+
240
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
241
+ /* stylelint-disable no-duplicate-selectors */
242
+ /* stylelint-disable */
243
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
244
+ *[class*='authing-'] {
245
+ /* stylelint-disable at-rule-no-unknown */
246
+ }
247
+ *[class*='authing-'] html,
248
+ *[class*='authing-'] body {
249
+ width: 100%;
250
+ height: 100%;
251
+ }
252
+ *[class*='authing-'] input::-ms-clear,
253
+ *[class*='authing-'] input::-ms-reveal {
254
+ display: none;
255
+ }
256
+ *[class*='authing-'] *,
257
+ *[class*='authing-'] *::before,
258
+ *[class*='authing-'] *::after {
259
+ box-sizing: border-box;
260
+ }
261
+ *[class*='authing-'] html {
262
+ font-family: sans-serif;
263
+ line-height: 1.15;
264
+ -webkit-text-size-adjust: 100%;
265
+ -ms-text-size-adjust: 100%;
266
+ -ms-overflow-style: scrollbar;
267
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
268
+ }
269
+ @-ms-viewport {
270
+ width: device-width;
271
+ }
272
+ *[class*='authing-'] body {
273
+ margin: 0;
274
+ color: rgba(0, 0, 0, 0.85);
275
+ font-size: 14px;
276
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
277
+ font-variant: tabular-nums;
278
+ line-height: 1.5715;
279
+ background-color: #fff;
280
+ -webkit-font-feature-settings: 'tnum';
281
+ font-feature-settings: 'tnum';
282
+ }
283
+ *[class*='authing-'] [tabindex='-1']:focus {
284
+ outline: none !important;
285
+ }
286
+ *[class*='authing-'] hr {
287
+ box-sizing: content-box;
288
+ height: 0;
289
+ overflow: visible;
290
+ }
291
+ *[class*='authing-'] h1,
292
+ *[class*='authing-'] h2,
293
+ *[class*='authing-'] h3,
294
+ *[class*='authing-'] h4,
295
+ *[class*='authing-'] h5,
296
+ *[class*='authing-'] h6 {
297
+ margin-top: 0;
298
+ margin-bottom: 0.5em;
299
+ color: rgba(0, 0, 0, 0.85);
300
+ font-weight: 500;
301
+ }
302
+ *[class*='authing-'] p {
303
+ margin-top: 0;
304
+ margin-bottom: 1em;
305
+ }
306
+ *[class*='authing-'] abbr[title],
307
+ *[class*='authing-'] abbr[data-original-title] {
308
+ text-decoration: underline;
309
+ -webkit-text-decoration: underline dotted;
310
+ text-decoration: underline dotted;
311
+ border-bottom: 0;
312
+ cursor: help;
313
+ }
314
+ *[class*='authing-'] address {
315
+ margin-bottom: 1em;
316
+ font-style: normal;
317
+ line-height: inherit;
318
+ }
319
+ *[class*='authing-'] input[type='text'],
320
+ *[class*='authing-'] input[type='password'],
321
+ *[class*='authing-'] input[type='number'],
322
+ *[class*='authing-'] textarea {
323
+ -webkit-appearance: none;
324
+ }
325
+ *[class*='authing-'] ol,
326
+ *[class*='authing-'] ul,
327
+ *[class*='authing-'] dl {
328
+ margin-top: 0;
329
+ margin-bottom: 1em;
330
+ }
331
+ *[class*='authing-'] ol ol,
332
+ *[class*='authing-'] ul ul,
333
+ *[class*='authing-'] ol ul,
334
+ *[class*='authing-'] ul ol {
335
+ margin-bottom: 0;
336
+ }
337
+ *[class*='authing-'] dt {
338
+ font-weight: 500;
339
+ }
340
+ *[class*='authing-'] dd {
341
+ margin-bottom: 0.5em;
342
+ margin-left: 0;
343
+ }
344
+ *[class*='authing-'] blockquote {
345
+ margin: 0 0 1em;
346
+ }
347
+ *[class*='authing-'] dfn {
348
+ font-style: italic;
349
+ }
350
+ *[class*='authing-'] b,
351
+ *[class*='authing-'] strong {
352
+ font-weight: bolder;
353
+ }
354
+ *[class*='authing-'] small {
355
+ font-size: 80%;
356
+ }
357
+ *[class*='authing-'] sub,
358
+ *[class*='authing-'] sup {
359
+ position: relative;
360
+ font-size: 75%;
361
+ line-height: 0;
362
+ vertical-align: baseline;
363
+ }
364
+ *[class*='authing-'] sub {
365
+ bottom: -0.25em;
366
+ }
367
+ *[class*='authing-'] sup {
368
+ top: -0.5em;
369
+ }
370
+ *[class*='authing-'] a {
371
+ color: #396aff;
372
+ text-decoration: none;
373
+ background-color: transparent;
374
+ outline: none;
375
+ cursor: pointer;
376
+ transition: color 0.3s;
377
+ -webkit-text-decoration-skip: objects;
378
+ }
379
+ *[class*='authing-'] a:hover {
380
+ color: #618eff;
381
+ }
382
+ *[class*='authing-'] a:active {
383
+ color: #254cd9;
384
+ }
385
+ *[class*='authing-'] a:active,
386
+ *[class*='authing-'] a:hover {
387
+ text-decoration: none;
388
+ outline: 0;
389
+ }
390
+ *[class*='authing-'] a:focus {
391
+ text-decoration: none;
392
+ outline: 0;
393
+ }
394
+ *[class*='authing-'] a[disabled] {
395
+ color: rgba(0, 0, 0, 0.25);
396
+ cursor: not-allowed;
397
+ pointer-events: none;
398
+ }
399
+ *[class*='authing-'] pre,
400
+ *[class*='authing-'] code,
401
+ *[class*='authing-'] kbd,
402
+ *[class*='authing-'] samp {
403
+ font-size: 1em;
404
+ font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
405
+ }
406
+ *[class*='authing-'] pre {
407
+ margin-top: 0;
408
+ margin-bottom: 1em;
409
+ overflow: auto;
410
+ }
411
+ *[class*='authing-'] figure {
412
+ margin: 0 0 1em;
413
+ }
414
+ *[class*='authing-'] img {
415
+ vertical-align: middle;
416
+ border-style: none;
417
+ }
418
+ *[class*='authing-'] svg:not(:root) {
419
+ overflow: hidden;
420
+ }
421
+ *[class*='authing-'] a,
422
+ *[class*='authing-'] area,
423
+ *[class*='authing-'] button,
424
+ *[class*='authing-'] [role='button'],
425
+ *[class*='authing-'] input:not([type='range']),
426
+ *[class*='authing-'] label,
427
+ *[class*='authing-'] select,
428
+ *[class*='authing-'] summary,
429
+ *[class*='authing-'] textarea {
430
+ touch-action: manipulation;
431
+ }
432
+ *[class*='authing-'] table {
433
+ border-collapse: collapse;
434
+ }
435
+ *[class*='authing-'] caption {
436
+ padding-top: 0.75em;
437
+ padding-bottom: 0.3em;
438
+ color: rgba(0, 0, 0, 0.45);
439
+ text-align: left;
440
+ caption-side: bottom;
441
+ }
442
+ *[class*='authing-'] th {
443
+ text-align: inherit;
444
+ }
445
+ *[class*='authing-'] input,
446
+ *[class*='authing-'] button,
447
+ *[class*='authing-'] select,
448
+ *[class*='authing-'] optgroup,
449
+ *[class*='authing-'] textarea {
450
+ margin: 0;
451
+ color: inherit;
452
+ font-size: inherit;
453
+ font-family: inherit;
454
+ line-height: inherit;
455
+ }
456
+ *[class*='authing-'] button,
457
+ *[class*='authing-'] input {
458
+ overflow: visible;
459
+ }
460
+ *[class*='authing-'] button,
461
+ *[class*='authing-'] select {
462
+ text-transform: none;
463
+ }
464
+ *[class*='authing-'] button,
465
+ *[class*='authing-'] html [type="button"],
466
+ *[class*='authing-'] [type="reset"],
467
+ *[class*='authing-'] [type="submit"] {
468
+ -webkit-appearance: button;
469
+ }
470
+ *[class*='authing-'] button::-moz-focus-inner,
471
+ *[class*='authing-'] [type='button']::-moz-focus-inner,
472
+ *[class*='authing-'] [type='reset']::-moz-focus-inner,
473
+ *[class*='authing-'] [type='submit']::-moz-focus-inner {
474
+ padding: 0;
475
+ border-style: none;
476
+ }
477
+ *[class*='authing-'] input[type='radio'],
478
+ *[class*='authing-'] input[type='checkbox'] {
479
+ box-sizing: border-box;
480
+ padding: 0;
481
+ }
482
+ *[class*='authing-'] input[type='date'],
483
+ *[class*='authing-'] input[type='time'],
484
+ *[class*='authing-'] input[type='datetime-local'],
485
+ *[class*='authing-'] input[type='month'] {
486
+ -webkit-appearance: listbox;
487
+ }
488
+ *[class*='authing-'] textarea {
489
+ overflow: auto;
490
+ resize: vertical;
491
+ }
492
+ *[class*='authing-'] fieldset {
493
+ min-width: 0;
494
+ margin: 0;
495
+ padding: 0;
496
+ border: 0;
497
+ }
498
+ *[class*='authing-'] legend {
499
+ display: block;
500
+ width: 100%;
501
+ max-width: 100%;
502
+ margin-bottom: 0.5em;
503
+ padding: 0;
504
+ color: inherit;
505
+ font-size: 1.5em;
506
+ line-height: inherit;
507
+ white-space: normal;
508
+ }
509
+ *[class*='authing-'] progress {
510
+ vertical-align: baseline;
511
+ }
512
+ *[class*='authing-'] [type='number']::-webkit-inner-spin-button,
513
+ *[class*='authing-'] [type='number']::-webkit-outer-spin-button {
514
+ height: auto;
515
+ }
516
+ *[class*='authing-'] [type='search'] {
517
+ outline-offset: -2px;
518
+ -webkit-appearance: none;
519
+ }
520
+ *[class*='authing-'] [type='search']::-webkit-search-cancel-button,
521
+ *[class*='authing-'] [type='search']::-webkit-search-decoration {
522
+ -webkit-appearance: none;
523
+ }
524
+ *[class*='authing-'] ::-webkit-file-upload-button {
525
+ font: inherit;
526
+ -webkit-appearance: button;
527
+ }
528
+ *[class*='authing-'] output {
529
+ display: inline-block;
530
+ }
531
+ *[class*='authing-'] summary {
532
+ display: list-item;
533
+ }
534
+ *[class*='authing-'] template {
535
+ display: none;
536
+ }
537
+ *[class*='authing-'] [hidden] {
538
+ display: none !important;
539
+ }
540
+ *[class*='authing-'] mark {
541
+ padding: 0.2em;
542
+ background-color: #feffe6;
543
+ }
544
+ *[class*='authing-'] ::selection {
545
+ color: #fff;
546
+ background: #396aff;
547
+ }
548
+ *[class*='authing-'] .clearfix::before {
549
+ display: table;
550
+ content: '';
551
+ }
552
+ *[class*='authing-'] .clearfix::after {
553
+ display: table;
554
+ clear: both;
555
+ content: '';
556
+ }
557
+ .authing-guard-text-btn {
558
+ color: #396aff;
559
+ padding: 0;
560
+ }
561
+ .authing-guard-text-btn:hover,
562
+ .authing-guard-text-btn:focus {
563
+ color: #6b90ff;
564
+ background-color: transparent;
565
+ }
566
+ .authing-text-center {
567
+ text-align: center;
568
+ }
569
+ .authing-text-center .authing-code-input {
570
+ justify-content: center;
571
+ }
572
+ .authing-text-center .authing-dropdown-menu-container {
573
+ text-align: left;
574
+ }
575
+ .authing-guard-form-actions {
576
+ display: flex;
577
+ justify-content: space-between;
578
+ margin-top: 8px;
579
+ align-items: center;
580
+ }
581
+ .authing-guard-form-actions .authing-ant-divider-vertical {
582
+ visibility: hidden;
583
+ }
584
+ .authing-guard-tip {
585
+ color: #999;
586
+ }
587
+ .authing-guard-tip-btn-comb {
588
+ margin-left: auto;
589
+ }
590
+ .authing-guard-full-width-space {
591
+ width: 100%;
592
+ }
593
+ .authing-data-tips {
594
+ position: relative;
595
+ }
596
+ .authing-data-tips::after {
597
+ content: attr(data-tips);
598
+ position: absolute;
599
+ white-space: nowrap;
600
+ top: 100%;
601
+ left: 50%;
602
+ -webkit-transform: translateX(-50%) translateY(6px);
603
+ transform: translateX(-50%) translateY(6px);
604
+ display: none;
605
+ background-color: rgba(0, 0, 0, 0.75);
606
+ font-size: 12px;
607
+ padding: 12px;
608
+ z-index: 500;
609
+ border-radius: 4px;
610
+ color: #fff;
611
+ }
612
+ .authing-data-tips:hover::after {
613
+ display: block;
614
+ }
615
+ .authing-data-tips__top {
616
+ position: relative;
617
+ }
618
+ .authing-data-tips__top::after {
619
+ top: auto;
620
+ bottom: 100%;
621
+ -webkit-transform: translateX(-50%) translateY(-6px);
622
+ transform: translateX(-50%) translateY(-6px);
623
+ }
624
+ .authing-guard-pointer {
625
+ cursor: pointer;
626
+ }
627
+ @media only screen and (max-width: 719px) {
628
+ .authing-guard-form-actions {
629
+ justify-content: flex-end !important;
630
+ }
631
+ .authing-guard-form-actions .authing-ant-divider-vertical {
632
+ visibility: initial;
633
+ }
634
+ .authing-guard-form-actions .authing-guard-text-btn {
635
+ color: #999999;
636
+ font-size: 12px;
637
+ }
638
+ .authing-guard-form-actions .authing-guard-tip-btn-comb {
639
+ margin-left: initial !important;
640
+ font-size: 12px;
641
+ font-weight: 400;
642
+ color: #999999;
643
+ }
644
+ }
645
+
646
+ @media only screen and (max-width: 719px) {
647
+ .authing-guard-form-submit-btn {
648
+ margin-top: 56px;
649
+ font-size: 14px;
650
+ }
651
+ }
652
+
653
+ .authing-guard-mfa-confirm-btn {
654
+ margin-top: 80px;
655
+ }
656
+
657
+
658
+ .authing-guard-mfa-title {
659
+ color: #181818;
660
+ font-size: 18px;
661
+ font-weight: 600;
662
+ text-align: center;
663
+ margin: 0;
664
+ }
665
+ .authing-guard-mfa-tips {
666
+ margin: 38px 0;
667
+ text-align: center;
668
+ }
669
+
670
+ .authing-guard-qr-form {
671
+ position: relative;
672
+ min-height: 300px;
673
+ }
674
+ .authing-guard-qr-loading {
675
+ position: absolute;
676
+ width: 100%;
677
+ height: 100%;
678
+ left: 0;
679
+ top: 0;
680
+ display: flex;
681
+ justify-content: center;
682
+ align-items: center;
683
+ }
684
+
685
+ .authing-send-code-btn {
686
+ display: inline-block;
687
+ border: none;
688
+ background-color: transparent;
689
+ font-size: inherit;
690
+ color: #396aff;
691
+ cursor: pointer;
692
+ padding: 0;
693
+ -webkit-user-select: none;
694
+ -ms-user-select: none;
695
+ user-select: none;
696
+ outline: none;
697
+ }
698
+ .authing-send-code-btn:focus {
699
+ outline: none;
700
+ }
701
+ .authing-send-code-btn[disabled] {
702
+ cursor: not-allowed;
703
+ -webkit-filter: opacity(0.5);
704
+ filter: opacity(0.5);
705
+ }
706
+ @media only screen and (max-width: 719px) {
707
+ .authing-send-code-btn {
708
+ font-size: 14px;
709
+ }
710
+ }
711
+
712
+ .authing-mfa-check-phone-from {
713
+ text-align: center;
714
+ }
715
+
716
+
717
+ .authing-tabs {
718
+ display: flex;
719
+ margin-bottom: 36px;
720
+ align-items: center;
721
+ }
722
+ .authing-tabs-inner {
723
+ display: flex;
724
+ justify-content: space-around;
725
+ align-items: center;
726
+ flex: 1;
727
+ }
728
+ .authing-tabs-inner--more {
729
+ box-shadow: inset -10px 0 8px -8px rgba(0, 0, 0, 0.08);
730
+ }
731
+ .authing-tab-item {
732
+ color: #aeb9d4;
733
+ font-size: 16px;
734
+ transition: all 0.3s ease-out;
735
+ white-space: nowrap;
736
+ cursor: pointer;
737
+ position: relative;
738
+ height: 28px;
739
+ margin-right: 32px;
740
+ }
741
+ .authing-tab-item:last-child {
742
+ margin-right: 12px;
743
+ }
744
+ .authing-tab-item:only-child {
745
+ margin-right: 0;
746
+ }
747
+ .authing-tab-item::after {
748
+ content: '';
749
+ width: 0;
750
+ height: 2px;
751
+ display: block;
752
+ position: absolute;
753
+ left: 50%;
754
+ bottom: -4px;
755
+ -webkit-transform: translateX(-50%);
756
+ transform: translateX(-50%);
757
+ background-color: transparent;
758
+ transition: all 0.3s ease-out;
759
+ }
760
+ .authing-tab-item__active {
761
+ color: #396aff;
762
+ font-size: 18px;
763
+ }
764
+ .authing-tab-item__active::after {
765
+ width: 26px;
766
+ background-color: #396aff;
767
+ }
768
+ .authing-tabs-show-more {
769
+ position: relative;
770
+ z-index: 2;
771
+ }
772
+ .authing-tabs-show-more.ant-btn {
773
+ padding: 0 12px;
774
+ }
775
+ .authing-tabs-show-more:hover,
776
+ .authing-tabs-show-more:focus,
777
+ .authing-tabs-show-more:active {
778
+ background-color: #fff;
779
+ }
780
+ .authing-tabs-show-more:hover .authing-tabs-more-panel {
781
+ height: auto;
782
+ opacity: 1;
783
+ padding: 4px 0;
784
+ }
785
+ .authing-tabs-show-more:after {
786
+ content: '';
787
+ display: block;
788
+ width: 100%;
789
+ height: 6px;
790
+ top: 100%;
791
+ left: 0;
792
+ position: absolute;
793
+ }
794
+ .authing-tabs-more-panel {
795
+ position: absolute;
796
+ box-sizing: border-box;
797
+ transition: all 0.3s;
798
+ height: 0;
799
+ opacity: 0;
800
+ right: 0;
801
+ top: 100%;
802
+ -webkit-transform: translateY(6px);
803
+ transform: translateY(6px);
804
+ background-color: #fff;
805
+ max-height: 200px;
806
+ margin: 0;
807
+ padding: 0;
808
+ overflow-x: hidden;
809
+ overflow-y: auto;
810
+ text-align: left;
811
+ list-style-type: none;
812
+ background-clip: padding-box;
813
+ border-radius: 2px;
814
+ outline: none;
815
+ box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
816
+ }
817
+ .authing-tabs-more-panel-item {
818
+ min-width: 120px;
819
+ margin: 0;
820
+ padding: 5px 12px;
821
+ overflow: hidden;
822
+ color: rgba(0, 0, 0, 0.85);
823
+ font-weight: 400;
824
+ font-size: 14px;
825
+ line-height: 22px;
826
+ white-space: nowrap;
827
+ text-overflow: ellipsis;
828
+ cursor: pointer;
829
+ transition: all 0.3s;
830
+ }
831
+ .authing-tabs-more-panel-item:hover {
832
+ background-color: #f5f5f5;
833
+ }
834
+ @media only screen and (max-width: 719px) {
835
+ .authing-tabs-inner {
836
+ justify-content: flex-start;
837
+ }
838
+ .authing-tab-item {
839
+ margin-right: 40px;
840
+ font-size: 14px;
841
+ }
842
+ .authing-tab-item__active {
843
+ font-size: 16px;
844
+ }
845
+ .authing-tab-pane {
846
+ padding-bottom: 70px;
847
+ }
848
+ }
849
+
850
+ .g2-mfa-bindTotp {
851
+ display: flex;
852
+ flex-direction: column;
853
+ align-items: center;
854
+ height: 100%;
855
+ }
856
+ .g2-mfa-bindTotp .g2-mfa-bindTotp-copySecret {
857
+ width: 100%;
858
+ height: 48px;
859
+ display: flex;
860
+ justify-content: center;
861
+ align-items: center;
862
+ background: #f5f6f7;
863
+ border-radius: 4px;
864
+ }
865
+ .g2-mfa-bindTotp .g2-mfa-bindTotp-copySecret .authing-ant-typography {
866
+ margin: 0;
867
+ }
868
+ .g2-mfa-bindTotp .g2-mfa-bindTotp-copySecret .authing-ant-typography svg {
869
+ color: #878a95 !important;
870
+ margin-left: 30px;
871
+ }
872
+ .g2-mfa-bindTotp .g2-mfa-bindTotp-secretSave {
873
+ margin-top: 16px;
874
+ }
875
+ .g2-mfa-bindTotp .g2-mfa-submit-button {
876
+ margin-top: 80px !important;
877
+ }
878
+ .g2-mfa-bindTotp .g2-mfa-bindTotp-qrcode {
879
+ box-shadow: 0px 0px 30px rgba(84, 89, 104, 0.15);
880
+ border-radius: 4px;
881
+ }
882
+ .g2-mfa-bindTotp .g2-mfa-bindTotp-securityCode-form {
883
+ display: flex;
884
+ flex-direction: column;
885
+ align-items: center;
886
+ }
887
+ .g2-mfa-bindTotp .g2-mfa-bindTotp-securityCode-form .g2-mfa-submit-button {
888
+ margin-top: 64px !important;
889
+ }
890
+ .g2-mfa-bindTotp .g2-mfa-bindTotp-securityCode-form .g2-mfa-totp-verify-input {
891
+ text-align: center;
892
+ margin-top: 40px !important;
893
+ }
894
+ .g2-mfa-bindTotp .g2-mfa-bindTotp-securityCode-form p {
895
+ color: #878a95;
896
+ }
897
+
898
+ .g2-completeInfo-content {
899
+ margin-bottom: 44px;
900
+ }
901
+ .g2-completeInfo-submit {
902
+ margin-top: 30px !important;
903
+ }
904
+
905
+ .authing-copy-text {
906
+ display: flex;
907
+ align-items: center;
908
+ }
909
+ .authing-copy-text-icon {
910
+ margin-left: 4px;
911
+ color: #396aff;
912
+ }
913
+ .authing-copy-text-icon__success {
914
+ color: #b7eb8f;
915
+ }
916
+
917
+ .g2-view-container-totp-dl {
918
+ width: 900px;
919
+ padding: 0;
920
+ }
921
+ .g2-mfa-totp-title {
922
+ width: 100%;
923
+ height: 54px;
924
+ display: flex;
925
+ align-items: center;
926
+ justify-content: center;
927
+ font-size: 16px;
928
+ color: #293350;
929
+ border-bottom: 1px solid #eaebee;
930
+ margin-bottom: 54px;
931
+ }
932
+ .g2-mfa-totp-download-tabs {
933
+ margin-top: 30px;
934
+ }
935
+ .g2-mfa-totp-download-tabs .authing-ant-tabs-tab-active .authing-ant-tabs-tab-btn {
936
+ font-weight: unset !important;
937
+ }
938
+ .g2-mfa-download-at-tab {
939
+ display: flex;
940
+ flex-direction: column;
941
+ align-items: center;
942
+ margin-top: 15px;
943
+ }
944
+ .g2-mfa-download-at-tab .g2-mfa-totp-download-subtitle {
945
+ color: #545968;
946
+ }
947
+ .g2-mfa-download-at-tab .g2-mfa-totp-download-qrcode-item {
948
+ display: flex;
949
+ flex-direction: column;
950
+ align-items: center;
951
+ margin-top: 35px;
952
+ }
953
+ .g2-mfa-download-at-tab .g2-mfa-totp-download-qrcode-item .g2-mfa-totp-download-image {
954
+ width: 130px;
955
+ height: 130px;
956
+ display: flex;
957
+ align-items: center;
958
+ justify-content: center;
959
+ box-shadow: 0px 0px 30px rgba(84, 89, 104, 0.15);
960
+ border-radius: 4px;
961
+ }
962
+ .g2-mfa-download-at-tab .g2-mfa-totp-download-qrcode-item .g2-mfa-totp-download-qrcode-text {
963
+ margin-top: 8px;
964
+ color: #545968;
965
+ }
966
+
967
+ .g2-error-content {
968
+ display: flex;
969
+ flex-direction: column;
970
+ align-items: center;
971
+ margin: auto 0;
972
+ }
973
+ .g2-error-content span {
974
+ margin-top: 33px;
975
+ color: #545968;
976
+ font-size: 14px;
977
+ }
978
+
979
+ /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
980
+ /* stylelint-disable no-duplicate-selectors */
981
+ /* stylelint-disable */
982
+ /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
983
+ *[class*='authing-'] {
984
+ /* stylelint-disable at-rule-no-unknown */
985
+ }
986
+ *[class*='authing-'] html,
987
+ *[class*='authing-'] body {
988
+ width: 100%;
989
+ height: 100%;
990
+ }
991
+ *[class*='authing-'] input::-ms-clear,
992
+ *[class*='authing-'] input::-ms-reveal {
993
+ display: none;
994
+ }
995
+ *[class*='authing-'] *,
996
+ *[class*='authing-'] *::before,
997
+ *[class*='authing-'] *::after {
998
+ box-sizing: border-box;
999
+ }
1000
+ *[class*='authing-'] html {
1001
+ font-family: sans-serif;
1002
+ line-height: 1.15;
1003
+ -webkit-text-size-adjust: 100%;
1004
+ -ms-text-size-adjust: 100%;
1005
+ -ms-overflow-style: scrollbar;
1006
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
1007
+ }
1008
+ @-ms-viewport {
1009
+ width: device-width;
1010
+ }
1011
+ *[class*='authing-'] body {
1012
+ margin: 0;
1013
+ color: rgba(0, 0, 0, 0.85);
1014
+ font-size: 14px;
1015
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
1016
+ font-variant: tabular-nums;
1017
+ line-height: 1.5715;
1018
+ background-color: #fff;
1019
+ -webkit-font-feature-settings: 'tnum';
1020
+ font-feature-settings: 'tnum';
1021
+ }
1022
+ *[class*='authing-'] [tabindex='-1']:focus {
1023
+ outline: none !important;
1024
+ }
1025
+ *[class*='authing-'] hr {
1026
+ box-sizing: content-box;
1027
+ height: 0;
1028
+ overflow: visible;
1029
+ }
1030
+ *[class*='authing-'] h1,
1031
+ *[class*='authing-'] h2,
1032
+ *[class*='authing-'] h3,
1033
+ *[class*='authing-'] h4,
1034
+ *[class*='authing-'] h5,
1035
+ *[class*='authing-'] h6 {
1036
+ margin-top: 0;
1037
+ margin-bottom: 0.5em;
1038
+ color: rgba(0, 0, 0, 0.85);
1039
+ font-weight: 500;
1040
+ }
1041
+ *[class*='authing-'] p {
1042
+ margin-top: 0;
1043
+ margin-bottom: 1em;
1044
+ }
1045
+ *[class*='authing-'] abbr[title],
1046
+ *[class*='authing-'] abbr[data-original-title] {
1047
+ text-decoration: underline;
1048
+ -webkit-text-decoration: underline dotted;
1049
+ text-decoration: underline dotted;
1050
+ border-bottom: 0;
1051
+ cursor: help;
1052
+ }
1053
+ *[class*='authing-'] address {
1054
+ margin-bottom: 1em;
1055
+ font-style: normal;
1056
+ line-height: inherit;
1057
+ }
1058
+ *[class*='authing-'] input[type='text'],
1059
+ *[class*='authing-'] input[type='password'],
1060
+ *[class*='authing-'] input[type='number'],
1061
+ *[class*='authing-'] textarea {
1062
+ -webkit-appearance: none;
1063
+ }
1064
+ *[class*='authing-'] ol,
1065
+ *[class*='authing-'] ul,
1066
+ *[class*='authing-'] dl {
1067
+ margin-top: 0;
1068
+ margin-bottom: 1em;
1069
+ }
1070
+ *[class*='authing-'] ol ol,
1071
+ *[class*='authing-'] ul ul,
1072
+ *[class*='authing-'] ol ul,
1073
+ *[class*='authing-'] ul ol {
1074
+ margin-bottom: 0;
1075
+ }
1076
+ *[class*='authing-'] dt {
1077
+ font-weight: 500;
1078
+ }
1079
+ *[class*='authing-'] dd {
1080
+ margin-bottom: 0.5em;
1081
+ margin-left: 0;
1082
+ }
1083
+ *[class*='authing-'] blockquote {
1084
+ margin: 0 0 1em;
1085
+ }
1086
+ *[class*='authing-'] dfn {
1087
+ font-style: italic;
1088
+ }
1089
+ *[class*='authing-'] b,
1090
+ *[class*='authing-'] strong {
1091
+ font-weight: bolder;
1092
+ }
1093
+ *[class*='authing-'] small {
1094
+ font-size: 80%;
1095
+ }
1096
+ *[class*='authing-'] sub,
1097
+ *[class*='authing-'] sup {
1098
+ position: relative;
1099
+ font-size: 75%;
1100
+ line-height: 0;
1101
+ vertical-align: baseline;
1102
+ }
1103
+ *[class*='authing-'] sub {
1104
+ bottom: -0.25em;
1105
+ }
1106
+ *[class*='authing-'] sup {
1107
+ top: -0.5em;
1108
+ }
1109
+ *[class*='authing-'] a {
1110
+ color: #396aff;
1111
+ text-decoration: none;
1112
+ background-color: transparent;
1113
+ outline: none;
1114
+ cursor: pointer;
1115
+ transition: color 0.3s;
1116
+ -webkit-text-decoration-skip: objects;
1117
+ }
1118
+ *[class*='authing-'] a:hover {
1119
+ color: #618eff;
1120
+ }
1121
+ *[class*='authing-'] a:active {
1122
+ color: #254cd9;
1123
+ }
1124
+ *[class*='authing-'] a:active,
1125
+ *[class*='authing-'] a:hover {
1126
+ text-decoration: none;
1127
+ outline: 0;
1128
+ }
1129
+ *[class*='authing-'] a:focus {
1130
+ text-decoration: none;
1131
+ outline: 0;
1132
+ }
1133
+ *[class*='authing-'] a[disabled] {
1134
+ color: rgba(0, 0, 0, 0.25);
1135
+ cursor: not-allowed;
1136
+ pointer-events: none;
1137
+ }
1138
+ *[class*='authing-'] pre,
1139
+ *[class*='authing-'] code,
1140
+ *[class*='authing-'] kbd,
1141
+ *[class*='authing-'] samp {
1142
+ font-size: 1em;
1143
+ font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
1144
+ }
1145
+ *[class*='authing-'] pre {
1146
+ margin-top: 0;
1147
+ margin-bottom: 1em;
1148
+ overflow: auto;
1149
+ }
1150
+ *[class*='authing-'] figure {
1151
+ margin: 0 0 1em;
1152
+ }
1153
+ *[class*='authing-'] img {
1154
+ vertical-align: middle;
1155
+ border-style: none;
1156
+ }
1157
+ *[class*='authing-'] svg:not(:root) {
1158
+ overflow: hidden;
1159
+ }
1160
+ *[class*='authing-'] a,
1161
+ *[class*='authing-'] area,
1162
+ *[class*='authing-'] button,
1163
+ *[class*='authing-'] [role='button'],
1164
+ *[class*='authing-'] input:not([type='range']),
1165
+ *[class*='authing-'] label,
1166
+ *[class*='authing-'] select,
1167
+ *[class*='authing-'] summary,
1168
+ *[class*='authing-'] textarea {
1169
+ touch-action: manipulation;
1170
+ }
1171
+ *[class*='authing-'] table {
1172
+ border-collapse: collapse;
1173
+ }
1174
+ *[class*='authing-'] caption {
1175
+ padding-top: 0.75em;
1176
+ padding-bottom: 0.3em;
1177
+ color: rgba(0, 0, 0, 0.45);
1178
+ text-align: left;
1179
+ caption-side: bottom;
1180
+ }
1181
+ *[class*='authing-'] th {
1182
+ text-align: inherit;
1183
+ }
1184
+ *[class*='authing-'] input,
1185
+ *[class*='authing-'] button,
1186
+ *[class*='authing-'] select,
1187
+ *[class*='authing-'] optgroup,
1188
+ *[class*='authing-'] textarea {
1189
+ margin: 0;
1190
+ color: inherit;
1191
+ font-size: inherit;
1192
+ font-family: inherit;
1193
+ line-height: inherit;
1194
+ }
1195
+ *[class*='authing-'] button,
1196
+ *[class*='authing-'] input {
1197
+ overflow: visible;
1198
+ }
1199
+ *[class*='authing-'] button,
1200
+ *[class*='authing-'] select {
1201
+ text-transform: none;
1202
+ }
1203
+ *[class*='authing-'] button,
1204
+ *[class*='authing-'] html [type="button"],
1205
+ *[class*='authing-'] [type="reset"],
1206
+ *[class*='authing-'] [type="submit"] {
1207
+ -webkit-appearance: button;
1208
+ }
1209
+ *[class*='authing-'] button::-moz-focus-inner,
1210
+ *[class*='authing-'] [type='button']::-moz-focus-inner,
1211
+ *[class*='authing-'] [type='reset']::-moz-focus-inner,
1212
+ *[class*='authing-'] [type='submit']::-moz-focus-inner {
1213
+ padding: 0;
1214
+ border-style: none;
1215
+ }
1216
+ *[class*='authing-'] input[type='radio'],
1217
+ *[class*='authing-'] input[type='checkbox'] {
1218
+ box-sizing: border-box;
1219
+ padding: 0;
1220
+ }
1221
+ *[class*='authing-'] input[type='date'],
1222
+ *[class*='authing-'] input[type='time'],
1223
+ *[class*='authing-'] input[type='datetime-local'],
1224
+ *[class*='authing-'] input[type='month'] {
1225
+ -webkit-appearance: listbox;
1226
+ }
1227
+ *[class*='authing-'] textarea {
1228
+ overflow: auto;
1229
+ resize: vertical;
1230
+ }
1231
+ *[class*='authing-'] fieldset {
1232
+ min-width: 0;
1233
+ margin: 0;
1234
+ padding: 0;
1235
+ border: 0;
1236
+ }
1237
+ *[class*='authing-'] legend {
1238
+ display: block;
1239
+ width: 100%;
1240
+ max-width: 100%;
1241
+ margin-bottom: 0.5em;
1242
+ padding: 0;
1243
+ color: inherit;
1244
+ font-size: 1.5em;
1245
+ line-height: inherit;
1246
+ white-space: normal;
1247
+ }
1248
+ *[class*='authing-'] progress {
1249
+ vertical-align: baseline;
1250
+ }
1251
+ *[class*='authing-'] [type='number']::-webkit-inner-spin-button,
1252
+ *[class*='authing-'] [type='number']::-webkit-outer-spin-button {
1253
+ height: auto;
1254
+ }
1255
+ *[class*='authing-'] [type='search'] {
1256
+ outline-offset: -2px;
1257
+ -webkit-appearance: none;
1258
+ }
1259
+ *[class*='authing-'] [type='search']::-webkit-search-cancel-button,
1260
+ *[class*='authing-'] [type='search']::-webkit-search-decoration {
1261
+ -webkit-appearance: none;
1262
+ }
1263
+ *[class*='authing-'] ::-webkit-file-upload-button {
1264
+ font: inherit;
1265
+ -webkit-appearance: button;
1266
+ }
1267
+ *[class*='authing-'] output {
1268
+ display: inline-block;
1269
+ }
1270
+ *[class*='authing-'] summary {
1271
+ display: list-item;
1272
+ }
1273
+ *[class*='authing-'] template {
1274
+ display: none;
1275
+ }
1276
+ *[class*='authing-'] [hidden] {
1277
+ display: none !important;
1278
+ }
1279
+ *[class*='authing-'] mark {
1280
+ padding: 0.2em;
1281
+ background-color: #feffe6;
1282
+ }
1283
+ *[class*='authing-'] ::selection {
1284
+ color: #fff;
1285
+ background: #396aff;
1286
+ }
1287
+ *[class*='authing-'] .clearfix::before {
1288
+ display: table;
1289
+ content: '';
1290
+ }
1291
+ *[class*='authing-'] .clearfix::after {
1292
+ display: table;
1293
+ clear: both;
1294
+ content: '';
1295
+ }
1296
+ .authing-g2-render-module {
1297
+ --sidePadding: 38px;
1298
+ --containerWidth: 456px;
1299
+ }
1300
+ .authing-g2-render-module-modal {
1301
+ --containerWidth: 456px;
1302
+ }
1303
+ @media only screen and (max-width: 450px) {
1304
+ .authing-g2-render-module {
1305
+ width: 100%;
1306
+ --sidePadding: 8px;
1307
+ --containerWidth: 100%;
1308
+ }
1309
+ .authing-g2-render-module-modal {
1310
+ width: 100%;
1311
+ --containerWidth: 100%;
1312
+ }
1313
+ .g2-view-container {
1314
+ box-shadow: initial !important;
1315
+ height: 100% !important;
1316
+ }
1317
+ }
1318
+ .g2-view-container {
1319
+ font-family: sans-serif;
1320
+ box-shadow: 0px 0px 60px rgba(84, 89, 104, 0.05);
1321
+ background: #ffffff;
1322
+ display: flex;
1323
+ flex-direction: column;
1324
+ width: var(--containerWidth);
1325
+ min-height: 610px;
1326
+ box-sizing: border-box;
1327
+ padding: 16px;
1328
+ border-radius: 8px;
1329
+ position: relative;
1330
+ }
1331
+ .g2-view-container .none {
1332
+ display: none;
1333
+ }
1334
+ .g2-view-container .g2-view-back {
1335
+ margin-top: 26px;
1336
+ padding-left: var(--sidePadding);
1337
+ cursor: pointer;
1338
+ font-size: 14px;
1339
+ color: #878a95;
1340
+ }
1341
+ .g2-view-container .g2-view-back .g2-view-back-hover:hover {
1342
+ color: #396aff;
1343
+ }
1344
+ .g2-view-container .g2-view-back .g2-view-back-hover .g2-icon {
1345
+ margin-right: 8px;
1346
+ }
1347
+ .g2-view-container .g2-view-back .g2-view-back-hover .g2-icon.g2-view-back-icon {
1348
+ font-size: 22px;
1349
+ margin-right: 5px;
1350
+ -webkit-transform: translateY(2px);
1351
+ transform: translateY(2px);
1352
+ }
1353
+ .g2-view-container .g2-mfa-content,
1354
+ .g2-view-container .g2-mfa-method {
1355
+ margin: 0 !important;
1356
+ padding: 0 var(--sidePadding) !important;
1357
+ }
1358
+ .g2-view-container .g2-view-header {
1359
+ -webkit-user-select: none;
1360
+ -ms-user-select: none;
1361
+ user-select: none;
1362
+ padding: 24px var(--sidePadding) 0;
1363
+ margin-bottom: 24px;
1364
+ }
1365
+ .g2-view-container .g2-view-header .icon {
1366
+ width: 48px;
1367
+ height: 48px;
1368
+ border-radius: 4px;
1369
+ margin-bottom: 8px;
1370
+ }
1371
+ .g2-view-container .g2-view-header .title {
1372
+ color: #282d3c;
1373
+ font-weight: 600;
1374
+ font-size: 24px;
1375
+ white-space: nowrap;
1376
+ overflow: hidden;
1377
+ text-overflow: ellipsis;
1378
+ }
1379
+ .g2-view-container .g2-view-header .title-explain {
1380
+ font-weight: 300;
1381
+ font-size: 14px;
1382
+ color: #545968;
1383
+ }
1384
+ .g2-view-container .g2-view-tabs {
1385
+ padding: 0 var(--sidePadding);
1386
+ }
1387
+ .g2-view-container .g2-view-tabs .authing-ant-tabs-tab {
1388
+ color: #878a95;
1389
+ }
1390
+ .g2-view-container .g2-view-tabs .authing-ant-tabs-tab:hover {
1391
+ color: #282d3c;
1392
+ }
1393
+ .g2-view-container .authing-g2-submit-button {
1394
+ width: calc(100% - 4px);
1395
+ border-radius: 4px;
1396
+ height: 42px;
1397
+ margin: 0 2px;
1398
+ margin-top: 16px;
1399
+ }
1400
+ .g2-view-container .authing-g2-submit-button.shaking {
1401
+ -webkit-animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
1402
+ animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
1403
+ }
1404
+ @-webkit-keyframes shake {
1405
+ 10%,
1406
+ 90% {
1407
+ -webkit-transform: translate3d(-1px, 0, 0);
1408
+ transform: translate3d(-1px, 0, 0);
1409
+ }
1410
+ 20%,
1411
+ 80% {
1412
+ -webkit-transform: translate3d(2px, 0, 0);
1413
+ transform: translate3d(2px, 0, 0);
1414
+ }
1415
+ 30%,
1416
+ 50%,
1417
+ 70% {
1418
+ -webkit-transform: translate3d(-4px, 0, 0);
1419
+ transform: translate3d(-4px, 0, 0);
1420
+ }
1421
+ 40%,
1422
+ 60% {
1423
+ -webkit-transform: translate3d(4px, 0, 0);
1424
+ transform: translate3d(4px, 0, 0);
1425
+ }
1426
+ }
1427
+ @keyframes shake {
1428
+ 10%,
1429
+ 90% {
1430
+ -webkit-transform: translate3d(-1px, 0, 0);
1431
+ transform: translate3d(-1px, 0, 0);
1432
+ }
1433
+ 20%,
1434
+ 80% {
1435
+ -webkit-transform: translate3d(2px, 0, 0);
1436
+ transform: translate3d(2px, 0, 0);
1437
+ }
1438
+ 30%,
1439
+ 50%,
1440
+ 70% {
1441
+ -webkit-transform: translate3d(-4px, 0, 0);
1442
+ transform: translate3d(-4px, 0, 0);
1443
+ }
1444
+ 40%,
1445
+ 60% {
1446
+ -webkit-transform: translate3d(4px, 0, 0);
1447
+ transform: translate3d(4px, 0, 0);
1448
+ }
1449
+ }
1450
+ .authing-g2-button-group {
1451
+ background: #eff2f6;
1452
+ border-radius: 8px;
1453
+ padding: 4px 2px;
1454
+ margin-bottom: 16px;
1455
+ width: -webkit-fit-content;
1456
+ width: -moz-fit-content;
1457
+ width: fit-content;
1458
+ }
1459
+ .authing-g2-button-group .authing-ant-radio-button-wrapper {
1460
+ margin: 0 2px;
1461
+ border-radius: 8px;
1462
+ color: #545968;
1463
+ cursor: pointer;
1464
+ border: none;
1465
+ background: none;
1466
+ height: auto;
1467
+ }
1468
+ .authing-g2-button-group .authing-ant-radio-button-wrapper.authing-ant-radio-button-wrapper-checked {
1469
+ color: #396aff;
1470
+ background: #ffffff;
1471
+ }
1472
+ .authing-g2-button-group .authing-ant-radio-button-wrapper:not(:first-child)::before {
1473
+ display: none;
1474
+ }
1475
+ .authing-g2-input-form {
1476
+ padding: 0 2px;
1477
+ margin-bottom: 16px;
1478
+ }
1479
+ .authing-g2-input-form .label-title {
1480
+ padding: 0 0 8px;
1481
+ }
1482
+ .authing-g2-input-form .authing-g2-select {
1483
+ border: 1px solid #f5f6f7;
1484
+ border-radius: 4px;
1485
+ }
1486
+ .authing-g2-input-form .authing-g2-select:hover {
1487
+ border-color: #eeeff1 !important;
1488
+ background: #eeeff1;
1489
+ }
1490
+ .authing-g2-input-form .authing-g2-select .authing-ant-select-selector {
1491
+ outline: 0;
1492
+ border-color: #f5f6f7 !important;
1493
+ height: 100% !important;
1494
+ background-color: #f5f6f7;
1495
+ }
1496
+ .authing-g2-input-form .authing-g2-select .authing-ant-select-selector:hover {
1497
+ border-color: #eeeff1 !important;
1498
+ background: #eeeff1;
1499
+ }
1500
+ .authing-g2-input-form .authing-g2-select.authing-ant-select-focused {
1501
+ border-color: #618eff;
1502
+ border-right-width: 1px !important;
1503
+ outline: 0;
1504
+ box-shadow: 0 0 0 2px rgba(57, 106, 255, 0.2);
1505
+ }
1506
+ .authing-g2-input-form .authing-g2-select.authing-ant-select-focused .authing-ant-select-selector {
1507
+ border-color: #eeeff1 !important;
1508
+ background: #fff !important;
1509
+ }
1510
+ .authing-g2-input-form.authing-ant-form-item-has-error .authing-g2-select:hover {
1511
+ border-color: #eeeff1 !important;
1512
+ background: #eeeff1;
1513
+ }
1514
+ .authing-g2-input-form.authing-ant-form-item-has-error .authing-g2-select.authing-ant-select-focused {
1515
+ border-color: #ff4d4f;
1516
+ border-right-width: 1px !important;
1517
+ outline: 0;
1518
+ box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.2);
1519
+ }
1520
+ .authing-g2-input-form.authing-ant-form-item-has-error .authing-g2-select.authing-ant-select-focused .authing-ant-select-selector {
1521
+ border-color: #eeeff1 !important;
1522
+ }
1523
+ .authing-g2-input-form.authing-ant-form-item-has-error .authing-g2-select.authing-ant-select-focused .authing-ant-select-selector {
1524
+ background: #fff !important;
1525
+ }
1526
+ .authing-g2-input {
1527
+ border: 1px solid #f5f6f7;
1528
+ border-radius: 4px;
1529
+ background: #f5f6f7;
1530
+ }
1531
+ .authing-g2-input:hover {
1532
+ background-color: #eeeff1;
1533
+ }
1534
+ .authing-g2-input:focus {
1535
+ background: #ffffff !important;
1536
+ border-color: #618eff;
1537
+ }
1538
+ .authing-g2-input input {
1539
+ font-size: 14px;
1540
+ height: 0;
1541
+ background-color: #f5f6f7;
1542
+ padding: 1em 0.5em !important;
1543
+ background-clip: content-box !important;
1544
+ }
1545
+ .authing-g2-input input::-webkit-input-placeholder {
1546
+ color: #c8c9cc;
1547
+ }
1548
+ .authing-g2-input input::placeholder,
1549
+ .authing-g2-input input::-webkit-input-placeholder {
1550
+ color: #c8c9cc;
1551
+ }
1552
+ .authing-g2-input.authing-ant-input-affix-wrapper:hover {
1553
+ border-color: #eeeff1;
1554
+ background: #eeeff1;
1555
+ }
1556
+ .authing-g2-input.authing-ant-input-affix-wrapper:hover .authing-ant-input {
1557
+ background: #eeeff1;
1558
+ }
1559
+ .authing-g2-input.authing-ant-input-affix-wrapper-focused {
1560
+ background: #ffffff !important;
1561
+ border-color: #618eff;
1562
+ }
1563
+ .authing-g2-input.authing-ant-input-affix-wrapper-focused input {
1564
+ height: 0;
1565
+ padding: 1em 0.5em !important;
1566
+ background-clip: content-box !important;
1567
+ }
1568
+ .authing-g2-input.authing-ant-input-affix-wrapper-focused input::-webkit-input-placeholder {
1569
+ color: #a7a7a7;
1570
+ }
1571
+ .authing-g2-input.authing-ant-input-affix-wrapper-focused input::placeholder,
1572
+ .authing-g2-input.authing-ant-input-affix-wrapper-focused input::-webkit-input-placeholder {
1573
+ color: #a7a7a7;
1574
+ }
1575
+ .authing-g2-input.add-after {
1576
+ border: none;
1577
+ }
1578
+ .authing-g2-input.add-after .authing-ant-input-group .authing-ant-input,
1579
+ .authing-g2-input.add-after .authing-ant-input-group .authing-ant-input-group-addon {
1580
+ border-radius: 4px;
1581
+ height: 46px;
1582
+ }
1583
+ .authing-g2-input.authing-ant-input-number {
1584
+ width: 100%;
1585
+ }
1586
+ .authing-g2-input.authing-ant-input-number input {
1587
+ padding: 1.4em 0.5em !important;
1588
+ }
1589
+ .authing-g2-input.authing-ant-input-number .authing-ant-input-number-handler-wrap {
1590
+ display: none;
1591
+ }
1592
+ .authing-g2-input .g2-captcha-code-image {
1593
+ min-width: 100px;
1594
+ }
1595
+ .g2-graphic-verify-code {
1596
+ display: flex;
1597
+ justify-content: space-between;
1598
+ }
1599
+ .g2-graphic-verify-code .authing-ant-input {
1600
+ width: 55%;
1601
+ }
1602
+ .g2-graphic-verify-code .g2-captcha-code-image {
1603
+ min-width: 100px;
1604
+ border-radius: 4px;
1605
+ border: 1px solid #eff2f6 !important;
1606
+ }
1607
+ .authing-ant-form-item-has-error .authing-ant-input-affix-wrapper:hover {
1608
+ border-color: #ff4d4f !important;
1609
+ }
1610
+ .authing-ant-form-item-has-error .authing-ant-input-affix-wrapper-focused {
1611
+ border-color: #ff4d4f !important;
1612
+ }
1613
+ .authing-g2-send-code {
1614
+ color: #396aff;
1615
+ cursor: pointer;
1616
+ }
1617
+ .authing-g2-send-code.sending {
1618
+ cursor: not-allowed;
1619
+ -webkit-filter: opacity(0.5);
1620
+ filter: opacity(0.5);
1621
+ }
1622
+ .g2-tips-line {
1623
+ display: flex;
1624
+ font-size: 14px;
1625
+ padding: 0 var(--sidePadding);
1626
+ height: 22px;
1627
+ }
1628
+ .g2-tips-line .link-like {
1629
+ color: #396aff;
1630
+ cursor: pointer;
1631
+ transition: all 0.3s;
1632
+ }
1633
+ .g2-tips-line .link-like:hover {
1634
+ color: #557fff;
1635
+ }
1636
+ .g2-tips-line .link-like:active {
1637
+ color: #254cd9;
1638
+ }
1639
+ .g2-tips-line .gray {
1640
+ color: #999;
1641
+ }
1642
+ .g2-tips-line .go-to-register {
1643
+ margin-left: auto;
1644
+ }
1645
+ .g2-tips-line .back-to-login {
1646
+ margin-left: auto;
1647
+ }
1648
+ .g2-tips-line .touch-tip {
1649
+ color: #d4d6dc;
1650
+ display: flex;
1651
+ align-items: center;
1652
+ cursor: pointer;
1653
+ }
1654
+ .g2-tips-line .touch-tip:hover {
1655
+ color: #396aff;
1656
+ }
1657
+ .g2-init-setting-loading {
1658
+ width: var(--containerWidth);
1659
+ min-height: 610px;
1660
+ display: flex;
1661
+ justify-content: center;
1662
+ align-items: center;
1663
+ box-shadow: 0px 0px 60px rgba(84, 89, 104, 0.05);
1664
+ }
1665
+ .g2-questions .authing-ant-upload-list-picture-card-container {
1666
+ height: 56px;
1667
+ width: 56px;
1668
+ }
1669
+ .g2-questions .authing-ant-upload-list-picture-card-container .authing-ant-upload-list-item-list-type-picture-card {
1670
+ padding: 4px;
1671
+ }
1672
+ .g2-questions .authing-ant-upload-select-picture-card {
1673
+ border-radius: 4px;
1674
+ height: 56px;
1675
+ width: 56px;
1676
+ border: none;
1677
+ background: #f5f6f7;
1678
+ transition: 0.2s all;
1679
+ margin: unset;
1680
+ }
1681
+ .g2-questions .authing-ant-upload-select-picture-card:hover {
1682
+ background: #eeeff1;
1683
+ }
1684
+ .g2-questions .authing-g2-questions-upload-self .anticon-plus {
1685
+ font-size: 18px;
1686
+ color: #545968;
1687
+ }
1688
+ .g2-questions-send-success-page {
1689
+ display: flex;
1690
+ flex-direction: column;
1691
+ justify-content: center;
1692
+ align-items: center;
1693
+ min-height: 610px;
1694
+ }
1695
+ .g2-questions-send-success-page .plate {
1696
+ margin-bottom: 14px;
1697
+ }
1698
+ .g2-questions-send-success-page .title {
1699
+ color: #282d3c;
1700
+ font-weight: 500;
1701
+ font-size: 16px;
1702
+ margin-bottom: 10px;
1703
+ }
1704
+ .g2-questions-send-success-page .message {
1705
+ font-size: 14px;
1706
+ color: #545968;
1707
+ margin-bottom: 32px;
1708
+ text-align: center;
1709
+ }
1710
+ .g2-questions-send-success-page .timer-tip {
1711
+ font-size: 14px;
1712
+ color: #545968;
1713
+ margin-top: 12px;
1714
+ }
1715
+ .g2-change-language-container {
1716
+ margin: auto 0;
1717
+ padding-top: 10px;
1718
+ text-align: center;
1719
+ }
1720
+ .g2-change-language-container .g2-change-language-button {
1721
+ display: flex;
1722
+ align-items: center;
1723
+ justify-content: center;
1724
+ -webkit-user-select: none;
1725
+ -ms-user-select: none;
1726
+ user-select: none;
1727
+ font-size: 14px;
1728
+ color: #878a95;
1729
+ cursor: pointer;
1730
+ margin: auto;
1731
+ transition: 0.2s all;
1732
+ }
1733
+ .g2-change-language-container .g2-change-language-button:hover {
1734
+ color: #282d3c;
1735
+ }
1736
+ .g2-change-language-container .g2-change-language-button .g2-change-language-text {
1737
+ margin-left: 5px;
1738
+ }
1739
+ .authing-g2-render-module-modal {
1740
+ width: var(--containerWidth);
1741
+ }
1742
+ .authing-g2-render-module-modal .authing-ant-modal-content {
1743
+ width: var(--containerWidth);
1744
+ border-radius: 8px;
1745
+ margin: auto;
1746
+ }
1747
+ .authing-g2-render-module-modal .authing-ant-modal-body {
1748
+ padding: 0;
1749
+ }
1750
+ .authing-g2-render-module-modal .authing-ant-modal-close {
1751
+ left: 0;
1752
+ border-radius: 4px;
1753
+ -webkit-transform: scale(0.5);
1754
+ transform: scale(0.5);
1755
+ color: #d4d6dc;
1756
+ transition: 0.2s all;
1757
+ width: 56px;
1758
+ height: 56px;
1759
+ }
1760
+ .authing-g2-render-module-modal .authing-ant-modal-close:hover {
1761
+ background: #eeeff1;
1762
+ color: #878a95;
1763
+ }
1764
+ .authing-g2-render-module-modal .authing-ant-modal-close .g2-modal-close {
1765
+ font-size: 36px;
1766
+ margin-top: 10px;
1767
+ }
1768
+ .authing-g2-render-module-modal .authing-ant-modal-footer {
1769
+ display: none;
1770
+ }
1771
+ .g2-send-code-input-col {
1772
+ /* Chrome, Safari, Edge, Opera */
1773
+ /* Firefox */
1774
+ }
1775
+ .g2-send-code-input-col input::-webkit-outer-spin-button,
1776
+ .g2-send-code-input-col input::-webkit-inner-spin-button {
1777
+ -webkit-appearance: none;
1778
+ margin: 0;
1779
+ }
1780
+ .g2-send-code-input-col input[type='number'] {
1781
+ -moz-appearance: textfield;
1782
+ }
1783
+ *[class*='authing-'].authing-ant-input-prefix {
1784
+ margin-right: 0px;
1785
+ }
1786
+ .authing-g2-form-required-item-icon-after label.authing-ant-form-item-required:not(.authing-ant-form-item-required-mark-optional)::before {
1787
+ display: none;
1788
+ }
1789
+ .authing-g2-form-required-item-icon-after label.authing-ant-form-item-required:not(.authing-ant-form-item-required-mark-optional)::after {
1790
+ display: inline-block;
1791
+ margin-right: 4px;
1792
+ margin-top: 4px;
1793
+ color: #ff4d4f;
1794
+ font-size: 14px;
1795
+ font-family: SimSun, sans-serif;
1796
+ line-height: 1;
1797
+ content: '*';
1798
+ }
1799
+ .authing-ant-tabs-tab-btn {
1800
+ font-weight: 400 !important;
1801
+ }
1802
+ .authing-g2-questions-textarea > textarea {
1803
+ resize: none;
1804
+ background: #f5f6f7;
1805
+ border: 1px solid #f5f6f7;
1806
+ }
1807
+ .authing-g2-questions-textarea > textarea:hover {
1808
+ border-color: #eeeff1 !important;
1809
+ background-color: #eeeff1;
1810
+ }
1811
+ .authing-g2-questions-textarea > textarea:focus {
1812
+ background: #fff;
1813
+ }
1814
+ .authing-g2-question-option {
1815
+ background: none !important;
1816
+ }
1817
+ .authing-g2-question-option.authing-g2-question-option-active {
1818
+ color: #396aff;
1819
+ }
1820
+ .authing-g2-question-option:hover {
1821
+ background: #f5f6f7 !important;
1822
+ }
1823
+ strong {
1824
+ font-weight: normal !important;
1825
+ }
1826
+ .authing-g2-completeInfo-form input:hover {
1827
+ border-color: #eeeff1 !important;
1828
+ }
1829
+ .authing-g2-completeInfo-form .authing-g2-input:hover {
1830
+ border-color: #eeeff1;
1831
+ }
1832
+ .authing-g2-completeInfo-form .authing-g2-input.authing-ant-picker-focused {
1833
+ background: #fff;
1834
+ }
1835
+ .authing-ant-select-selector {
1836
+ padding: 3px 11px !important;
1837
+ }
1838
+ .authing-ant-select-selector .authing-ant-select-selection-item {
1839
+ line-height: 30px !important;
1840
+ }
1841
+ .authing-ant-select-selector .authing-ant-select-selection-search {
1842
+ display: flex;
1843
+ align-items: center;
1844
+ }
1845
+
1846
+ .g2-icon {
1847
+ width: 1em;
1848
+ height: 1em;
1849
+ vertical-align: -0.15em;
1850
+ fill: currentColor;
1851
+ }
1852
+
1853
+ .g2-base-image-background-animation {
1854
+ background: linear-gradient(60deg, #888888, #cecece, #dfdfdf, #f0f0f0);
1855
+ -webkit-animation: gradientBG 3s ease infinite;
1856
+ animation: gradientBG 3s ease infinite;
1857
+ background-size: 400% 400%;
1858
+ }
1859
+ @-webkit-keyframes gradientBG {
1860
+ 0% {
1861
+ background-position: 0% 50%;
1862
+ }
1863
+ 50% {
1864
+ background-position: 100% 50%;
1865
+ }
1866
+ 100% {
1867
+ background-position: 0% 50%;
1868
+ }
1869
+ }
1870
+ @keyframes gradientBG {
1871
+ 0% {
1872
+ background-position: 0% 50%;
1873
+ }
1874
+ 50% {
1875
+ background-position: 100% 50%;
1876
+ }
1877
+ 100% {
1878
+ background-position: 0% 50%;
1879
+ }
1880
+ }
1881
+ .g2-base-imagepro-container {
1882
+ border-radius: 4px;
1883
+ display: inline-block;
1884
+ -webkit-user-select: none;
1885
+ -ms-user-select: none;
1886
+ user-select: none;
1887
+ }
1888
+ .g2-base-imagepro-container.loaded {
1889
+ background: none;
1890
+ }
1891
+ .g2-base-imagepro-container.loaded .imagePro {
1892
+ opacity: 1;
1893
+ }
1894
+ .g2-base-imagepro-container.unload .imagePro {
1895
+ opacity: 0;
1896
+ }
1897
+ .g2-base-imagepro {
1898
+ object-fit: cover;
1899
+ }
1900
+
1901
+ .g2-qrcode-switch {
1902
+ position: absolute;
1903
+ display: flex;
1904
+ right: 16px;
1905
+ }
1906
+ .g2-qrcode-switch :global(.authing-ant-popover-inner-content) {
1907
+ display: flex;
1908
+ justify-content: center;
1909
+ align-items: center;
1910
+ background: rgba(84, 89, 104, 0.1);
1911
+ height: 26px;
1912
+ margin-right: 4px;
1913
+ font-size: 12px;
1914
+ padding: 0 12px;
1915
+ border-radius: 4px;
1916
+ color: #545968;
1917
+ }
1918
+ @media (any-hover: hover) {
1919
+ .g2-qrcode-switch .switch-img:hover .imgae-mask {
1920
+ border-width: 0;
1921
+ right: 50px;
1922
+ top: 50px;
1923
+ }
1924
+ }
1925
+ .g2-qrcode-switch .imgae-mask {
1926
+ width: 0;
1927
+ height: 0;
1928
+ border-style: solid;
1929
+ border-width: 50px 0 0 50px;
1930
+ border-color: transparent transparent transparent #fff;
1931
+ position: absolute;
1932
+ right: 0;
1933
+ top: 0;
1934
+ transition: 0.2s all;
1935
+ }
1936
+ .g2-qrcode-switch .qrcode-switch-image {
1937
+ font-size: 50px;
1938
+ color: #396aff;
1939
+ cursor: pointer;
1940
+ }
1941
+ .authing-g2-login-app-qrcode {
1942
+ min-height: 288px;
1943
+ display: flex;
1944
+ justify-content: center;
1945
+ align-items: center;
1946
+ }
1947
+ .authing-g2-login-app-qrcode img {
1948
+ width: 200px;
1949
+ height: 200px;
1950
+ margin-top: 0px !important;
1951
+ }
1952
+ .authing-g2-login-app-qrcode .__authing__heading-subtitle-style {
1953
+ font-size: 14px;
1954
+ }
1955
+ .authing-g2-login-app-qrcode .__authing-shadow-style {
1956
+ width: 200px;
1957
+ height: 200px;
1958
+ margin-left: -100px;
1959
+ line-height: 200px;
1960
+ }
1961
+ .switch-text {
1962
+ left: -80px !important;
1963
+ top: 4px !important;
1964
+ }
1965
+ .switch-text .authing-ant-popover-inner {
1966
+ background: rgba(84, 89, 104, 0.1);
1967
+ border-radius: 4px;
1968
+ box-shadow: none;
1969
+ }
1970
+ .switch-text .authing-ant-popover-inner-content {
1971
+ display: flex;
1972
+ justify-content: center;
1973
+ align-items: center;
1974
+ height: 26px;
1975
+ width: 72px;
1976
+ white-space: nowrap;
1977
+ margin-right: 4px;
1978
+ font-size: 12px;
1979
+ padding: 0 12px;
1980
+ border-radius: 4px;
1981
+ color: #545968;
1982
+ }
1983
+ .switch-text .authing-ant-popover-arrow {
1984
+ border-color: rgba(84, 89, 104, 0.1) !important;
1985
+ border-width: 3px !important;
1986
+ background: #fff !important;
1987
+ width: 0px !important;
1988
+ height: 0px !important;
1989
+ right: 7px !important;
1990
+ }
1991
+
1992
+ .g2-guard-full-width-space {
1993
+ width: 100%;
1994
+ }
1995
+ .no-login-methods {
1996
+ padding: 38px;
1997
+ }
1998
+ .g2-guard-third-login-btn {
1999
+ display: flex !important;
2000
+ border: none !important;
2001
+ background-color: #f5f6f7 !important;
2002
+ border-radius: 4px !important;
2003
+ color: #282d3c !important;
2004
+ font-size: 14px !important;
2005
+ margin-bottom: 8px !important;
2006
+ margin-top: 8px !important;
2007
+ justify-content: center;
2008
+ align-items: center;
2009
+ }
2010
+ .g2-guard-third-login-btn:last-child {
2011
+ margin-bottom: 16px !important;
2012
+ }
2013
+ .g2-guard-third-login-btn:hover {
2014
+ background-color: rgba(84, 89, 104, 0.2) !important;
2015
+ }
2016
+ .g2-social-login-item {
2017
+ display: inline-flex;
2018
+ margin: 12px;
2019
+ width: 56px;
2020
+ height: 48px;
2021
+ background-color: #f5f6f7;
2022
+ border-radius: 4px;
2023
+ justify-content: center;
2024
+ align-items: center;
2025
+ cursor: pointer;
2026
+ -webkit-user-select: none;
2027
+ -ms-user-select: none;
2028
+ user-select: none;
2029
+ }
2030
+ .g2-social-login-item .g2-icon {
2031
+ font-size: 24px;
2032
+ transition: color 0.3s ease-out;
2033
+ }
2034
+ .g2-social-login-item:hover {
2035
+ background: rgba(84, 89, 104, 0.2);
2036
+ }
2037
+ .g2-social-login-title {
2038
+ text-align: center;
2039
+ font-size: 14px;
2040
+ color: #c8c9cc;
2041
+ }
2042
+ .g2-social-login-title::before,
2043
+ .g2-social-login-title::after {
2044
+ content: '——';
2045
+ color: #eeeeee;
2046
+ margin: 0 11px;
2047
+ }
2048
+ .g2-social-login-list {
2049
+ display: flex;
2050
+ flex-wrap: wrap;
2051
+ justify-content: center;
2052
+ padding: 0 35px;
2053
+ }
2054
+ .authing-ant-avatar > img {
2055
+ display: block;
2056
+ width: 100%;
2057
+ height: 100%;
2058
+ object-fit: cover;
2059
+ }
2060
+
2061
+ .authing-g2-mfa-title {
2062
+ color: #282d3c;
2063
+ font-size: 18px;
2064
+ font-weight: 600;
2065
+ text-align: center;
2066
+ margin-bottom: 8px;
2067
+ margin-top: 40px;
2068
+ }
2069
+ .authing-g2-mfa-tips {
2070
+ font-size: 14px;
2071
+ color: #545968;
2072
+ text-align: center;
2073
+ margin-bottom: 24px;
2074
+ min-height: 23px;
2075
+ }
2076
+ .g2-mfa-content {
2077
+ margin: 0 38px;
2078
+ }
2079
+ .g2-mfa-content .g2-mfa-submit-button {
2080
+ margin-top: 32px !important;
2081
+ }
2082
+ .g2-mfa-content .bind-totp {
2083
+ margin-top: 40px !important;
2084
+ }
2085
+ .g2-mfa-content .authing-ant-form-item-control-input-content {
2086
+ display: flex;
2087
+ justify-content: center;
2088
+ }
2089
+ .g2-mfa-content .g2-mfa-totp-verify-input {
2090
+ text-align: center;
2091
+ }
2092
+ .g2-mfa-content .g2-mfa-totp-verify-input .authing-code-input-item:not(:first-child) {
2093
+ margin-left: 14px;
2094
+ }
2095
+ .g2-mfa-content .authing-ant-form-horizontal {
2096
+ display: flex;
2097
+ justify-content: center;
2098
+ flex-direction: column;
2099
+ }
2100
+ .g2-mfa-content .g2-mfa-face-image {
2101
+ margin: 0px auto;
2102
+ display: block;
2103
+ margin-bottom: 24px;
2104
+ }
2105
+ .g2-mfa-content .g2-mfa-face-identifying {
2106
+ display: flex;
2107
+ justify-content: center;
2108
+ align-items: center;
2109
+ }
2110
+ .g2-mfa-content .g2-mfa-face-identifying .video-round {
2111
+ width: 210px;
2112
+ height: 210px;
2113
+ border-radius: 50%;
2114
+ vertical-align: middle;
2115
+ }
2116
+ .g2-mfa-content .g2-mfa-face-identifying .mesh {
2117
+ z-index: 100;
2118
+ -webkit-user-select: none;
2119
+ -ms-user-select: none;
2120
+ user-select: none;
2121
+ color: white;
2122
+ position: absolute;
2123
+ display: flex;
2124
+ justify-content: center;
2125
+ align-items: center;
2126
+ cursor: pointer;
2127
+ background: rgba(0, 0, 0, 0.4);
2128
+ }
2129
+ .g2-mfa-content .g2-mfa-face-identifying .ring {
2130
+ width: 240px;
2131
+ height: 240px;
2132
+ position: absolute;
2133
+ -webkit-transform: rotate(270deg);
2134
+ transform: rotate(270deg);
2135
+ }
2136
+ .svg-circle-bg {
2137
+ stroke-width: 4;
2138
+ }
2139
+ .svg-circle-running {
2140
+ stroke-width: 4;
2141
+ transition: all 0.2s linear;
2142
+ stroke: #396aff;
2143
+ stroke-linecap: round;
2144
+ }
2145
+ .g2-mfa-verifyCode-formItem .authing-ant-form-item-explain-error {
2146
+ display: flex;
2147
+ justify-content: center;
2148
+ }
2149
+
2150
+ .g2-mfa-method {
2151
+ padding: 0 38px;
2152
+ }
2153
+ .g2-mfa-method-title {
2154
+ text-align: center;
2155
+ font-size: 14px;
2156
+ color: #c8c9cc;
2157
+ margin-bottom: 8px;
2158
+ width: 100%;
2159
+ }
2160
+ .g2-mfa-method-title::before,
2161
+ .g2-mfa-method-title::after {
2162
+ content: '——';
2163
+ color: #eeeeee;
2164
+ margin: 0 11px;
2165
+ }
2166
+ .g2-guard-mfa-methods-btn {
2167
+ border: none !important;
2168
+ background-color: #f5f6f7 !important;
2169
+ border-radius: 4px !important;
2170
+ color: #282d3c !important;
2171
+ font-size: 14px !important;
2172
+ height: 49px !important;
2173
+ margin-top: 8px !important;
2174
+ width: 100%;
2175
+ justify-content: center;
2176
+ align-items: center;
2177
+ font-size: 14px;
2178
+ }
2179
+ .g2-guard-mfa-methods-btn:hover {
2180
+ background: rgba(84, 89, 104, 0.2) !important;
2181
+ }
2182
+ .g2-guard-mfa-methods-btn .g2-icon {
2183
+ font-size: 16px;
2184
+ margin-right: 8px;
2185
+ }
2186
+
2187
+ .authing-g2-code-input-item {
2188
+ text-align: center;
2189
+ width: 40px;
2190
+ min-width: 40px;
2191
+ min-height: 40px;
2192
+ height: 40px;
2193
+ line-height: 40px;
2194
+ background-color: #f5f6f7;
2195
+ border: unset;
2196
+ border-radius: 4px;
2197
+ }
2198
+ .authing-g2-code-input-item:not(:first-child) {
2199
+ margin-left: 18px;
2200
+ }
2201
+ .authing-g2-code-input-item input {
2202
+ text-align: center;
2203
+ }
2204
+ .authing-g2-code-input-divider {
2205
+ width: 14px;
2206
+ min-width: 14px;
2207
+ max-width: 14px;
2208
+ margin-left: 10px;
2209
+ }
2210
+ .authing-g2-code-input {
2211
+ display: flex;
2212
+ align-items: center;
2213
+ }
2214
+ .authing-ant-form-item-has-error .authing-g2-code-input-item {
2215
+ background-color: #f5f6f7;
2216
+ border: 1px solid #ff4d4f;
2217
+ }
2218
+
2219
+ .g2-mfa-recovery-code .authing-g2-mfa-title {
2220
+ margin-top: 92px;
2221
+ }
2222
+ .g2-mfa-recovery-code .authing-g2-mfa-tips {
2223
+ margin-bottom: 52px;
2224
+ }
2225
+ .g2-mfa-recovery-code .submit-form {
2226
+ margin-top: 64px !important;
2227
+ }
2228
+
2229
+ .authing-agreements {
2230
+ margin-top: 20px;
2231
+ margin-bottom: 20px;
2232
+ }
2233
+ .authing-agreements.authing-agreements-error .authing-agreements-item-invalid {
2234
+ color: #ff4d4f;
2235
+ }
2236
+ .authing-agreements.authing-agreements-error .authing-agreements-item-invalid a {
2237
+ color: #ff4d4f;
2238
+ }
2239
+ .authing-agreements.authing-agreements-error .authing-agreements-item-invalid :global(.ant-checkbox-inner) {
2240
+ border-color: #ff4d4f;
2241
+ }
2242
+ .authing-agreements-item {
2243
+ color: #999999;
2244
+ -webkit-user-select: none;
2245
+ -ms-user-select: none;
2246
+ user-select: none;
2247
+ cursor: pointer;
2248
+ font-size: 12px;
2249
+ }
2250
+ .authing-agreements-item:not(:first-child) {
2251
+ margin-top: 4px;
2252
+ }
2253
+ .authing-agreements-item p {
2254
+ margin-bottom: 0;
2255
+ display: inline-block;
2256
+ }
2257
+ .authing-agreements-checkbox {
2258
+ margin-bottom: 2px;
2259
+ }
2260
+ .authing-agreements-checkbox :global(.ant-checkbox-inner) {
2261
+ width: 14px;
2262
+ height: 14px;
2263
+ }
2264
+ .authing-agreements-checkbox :global(.ant-checkbox-inner)::after {
2265
+ left: 20%;
2266
+ }
2267
+ .authing-agreements-item-content {
2268
+ line-height: 23px;
2269
+ }
2270
+
2271
+ .authing-g2-send-code-btn {
2272
+ height: 43px;
2273
+ width: 100%;
2274
+ border: 1px solid #d4d6dc;
2275
+ border-radius: 4px;
2276
+ }
2277
+ .authing-g2-send-code-btn:hover {
2278
+ background: rgba(57, 106, 255, 0.1);
2279
+ }
2280
+ .authing-g2-send-code-btn:focus {
2281
+ outline: none;
2282
+ }
2283
+ .authing-g2-send-code-btn[disabled] {
2284
+ cursor: not-allowed;
2285
+ -webkit-filter: opacity(0.5);
2286
+ filter: opacity(0.5);
2287
+ }
2288
+ @media only screen and (max-width: 719px) {
2289
+ .authing-g2-send-code-btn {
2290
+ font-size: 14px;
2291
+ }
2292
+ }
2293
+ .g2-loading-btn-center .authing-ant-btn-loading-icon .anticon {
2294
+ padding-right: 0;
2295
+ }
2296
+
2297
+ .authing-code-input-item {
2298
+ text-align: center;
2299
+ width: 40px;
2300
+ min-width: 40px;
2301
+ min-height: 40px;
2302
+ height: 40px;
2303
+ line-height: 40px;
2304
+ }
2305
+ .authing-code-input-item:not(:first-child) {
2306
+ margin-left: 18px;
2307
+ }
2308
+ .authing-code-input-item input {
2309
+ text-align: center;
2310
+ }
2311
+ .authing-code-input-divider {
2312
+ width: 14px;
2313
+ min-width: 14px;
2314
+ max-width: 14px;
2315
+ margin-left: 18px;
2316
+ }
2317
+ .authing-code-input {
2318
+ display: flex;
2319
+ align-items: center;
2320
+ }
2321
+
2322
+ .authing-dropdown {
2323
+ display: inline-flex;
2324
+ position: relative;
2325
+ align-items: center;
2326
+ }
2327
+ .authing-dropdown-trigger {
2328
+ cursor: pointer;
2329
+ }
2330
+ .authing-dropdown-menu-container {
2331
+ height: 0;
2332
+ opacity: 0;
2333
+ position: absolute;
2334
+ top: 100%;
2335
+ left: 0;
2336
+ transition: all 0.3s;
2337
+ cursor: pointer;
2338
+ background-color: #fff;
2339
+ padding: 4px 0;
2340
+ border-radius: 2px;
2341
+ box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
2342
+ pointer-events: none;
2343
+ }
2344
+ .authing-dropdown-menu-container__visible {
2345
+ height: auto;
2346
+ opacity: 1;
2347
+ pointer-events: unset;
2348
+ }
2349
+ .authing-dropdown-menu-item {
2350
+ padding: 5px 12px;
2351
+ transition: all 0.3s;
2352
+ }
2353
+ .authing-dropdown-menu-item:hover {
2354
+ background-color: #f5f5f5;
2355
+ }
2356
+ .authing-dropdown-icon {
2357
+ margin-left: 8px;
2358
+ }