@authing/react-ui-components 3.1.8 → 3.1.10-rc.1
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.
- package/lib/index.d.ts +15 -2
- package/lib/index.min.js +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -2404,9 +2404,9 @@ declare module '@authing/react-ui-components/components/SendCode/SendCodeBtn' {
|
|
|
2404
2404
|
}
|
|
2405
2405
|
declare module '@authing/react-ui-components/components/SendCode/SendCodeByEmail' {
|
|
2406
2406
|
import { FC } from 'react';
|
|
2407
|
-
import { EmailScene } from 'authing-js-sdk';
|
|
2408
2407
|
import './style.less';
|
|
2409
2408
|
import { InputProps } from 'antd/lib/input';
|
|
2409
|
+
import { EmailScene } from '@authing/react-ui-components/components/Type/index';
|
|
2410
2410
|
export interface SendCodeByEmailProps extends InputProps {
|
|
2411
2411
|
data: string;
|
|
2412
2412
|
form?: any;
|
|
@@ -2559,6 +2559,19 @@ declare module '@authing/react-ui-components/components/Type/index' {
|
|
|
2559
2559
|
showChangeLanguage: boolean;
|
|
2560
2560
|
};
|
|
2561
2561
|
}
|
|
2562
|
+
export enum EmailScene {
|
|
2563
|
+
WELCOME_EMAIL = "WELCOME_EMAIL",
|
|
2564
|
+
FIRST_CREATED_USER = "FIRST_CREATED_USER",
|
|
2565
|
+
REGISTER_VERIFY_CODE = "REGISTER_VERIFY_CODE",
|
|
2566
|
+
LOGIN_VERIFY_CODE = "LOGIN_VERIFY_CODE",
|
|
2567
|
+
MFA_VERIFY_CODE = "MFA_VERIFY_CODE",
|
|
2568
|
+
INFORMATION_COMPLETION_VERIFY_CODE = "INFORMATION_COMPLETION_VERIFY_CODE",
|
|
2569
|
+
FIRST_EMAIL_LOGIN_VERIFY = "FIRST_EMAIL_LOGIN_VERIFY",
|
|
2570
|
+
CONSOLE_CONDUCTED_VERIFY = "CONSOLE_CONDUCTED_VERIFY",
|
|
2571
|
+
RESET_PASSWORD_VERIFY_CODE = "RESET_PASSWORD_VERIFY_CODE",
|
|
2572
|
+
EMAIL_BIND_VERIFY_CODE = "EMAIL_BIND_VERIFY_CODE",
|
|
2573
|
+
EMAIL_UNBIND_VERIFY_CODE = "EMAIL_UNBIND_VERIFY_CODE"
|
|
2574
|
+
}
|
|
2562
2575
|
|
|
2563
2576
|
}
|
|
2564
2577
|
declare module '@authing/react-ui-components/components/ValidatorRules/PasswordFormItem' {
|
|
@@ -3188,7 +3201,7 @@ declare module '@authing/react-ui-components/components/version/index' {
|
|
|
3188
3201
|
|
|
3189
3202
|
}
|
|
3190
3203
|
declare module '@authing/react-ui-components/components/version/version' {
|
|
3191
|
-
const _default: "3.1.
|
|
3204
|
+
const _default: "3.1.10-rc.1";
|
|
3192
3205
|
export default _default;
|
|
3193
3206
|
|
|
3194
3207
|
}
|