@authing/react-ui-components 3.1.14-rc.1 → 3.1.14-rc.4
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 +16 -2
- package/lib/index.min.js +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -2460,9 +2460,9 @@ declare module '@authing/react-ui-components/components/SendCode/SendCodeBtn' {
|
|
|
2460
2460
|
}
|
|
2461
2461
|
declare module '@authing/react-ui-components/components/SendCode/SendCodeByEmail' {
|
|
2462
2462
|
import { FC } from 'react';
|
|
2463
|
-
import { EmailScene } from 'authing-js-sdk';
|
|
2464
2463
|
import './style.less';
|
|
2465
2464
|
import { InputProps } from 'antd/lib/input';
|
|
2465
|
+
import { EmailScene } from '@authing/react-ui-components/components/Type/index';
|
|
2466
2466
|
export interface SendCodeByEmailProps extends InputProps {
|
|
2467
2467
|
data: string;
|
|
2468
2468
|
form?: any;
|
|
@@ -2627,6 +2627,19 @@ declare module '@authing/react-ui-components/components/Type/index' {
|
|
|
2627
2627
|
showChangeLanguage: boolean;
|
|
2628
2628
|
};
|
|
2629
2629
|
}
|
|
2630
|
+
export enum EmailScene {
|
|
2631
|
+
WELCOME_EMAIL = "WELCOME_EMAIL",
|
|
2632
|
+
FIRST_CREATED_USER = "FIRST_CREATED_USER",
|
|
2633
|
+
REGISTER_VERIFY_CODE = "REGISTER_VERIFY_CODE",
|
|
2634
|
+
LOGIN_VERIFY_CODE = "LOGIN_VERIFY_CODE",
|
|
2635
|
+
MFA_VERIFY_CODE = "MFA_VERIFY_CODE",
|
|
2636
|
+
INFORMATION_COMPLETION_VERIFY_CODE = "INFORMATION_COMPLETION_VERIFY_CODE",
|
|
2637
|
+
FIRST_EMAIL_LOGIN_VERIFY = "FIRST_EMAIL_LOGIN_VERIFY",
|
|
2638
|
+
CONSOLE_CONDUCTED_VERIFY = "CONSOLE_CONDUCTED_VERIFY",
|
|
2639
|
+
RESET_PASSWORD_VERIFY_CODE = "RESET_PASSWORD_VERIFY_CODE",
|
|
2640
|
+
EMAIL_BIND_VERIFY_CODE = "EMAIL_BIND_VERIFY_CODE",
|
|
2641
|
+
EMAIL_UNBIND_VERIFY_CODE = "EMAIL_UNBIND_VERIFY_CODE"
|
|
2642
|
+
}
|
|
2630
2643
|
|
|
2631
2644
|
}
|
|
2632
2645
|
declare module '@authing/react-ui-components/components/ValidatorRules/PasswordFormItem' {
|
|
@@ -2770,6 +2783,7 @@ declare module '@authing/react-ui-components/components/_utils/config/index' {
|
|
|
2770
2783
|
socialConnectionsBtnShape?: "default" | "button" | "icon" | undefined;
|
|
2771
2784
|
enterpriseConnections?: string[] | undefined;
|
|
2772
2785
|
qrCodeScanOptions?: {
|
|
2786
|
+
currentDocument?: Document | undefined;
|
|
2773
2787
|
extIdpConnId?: string | undefined;
|
|
2774
2788
|
autoExchangeUserInfo?: boolean | undefined;
|
|
2775
2789
|
size?: {
|
|
@@ -3281,7 +3295,7 @@ declare module '@authing/react-ui-components/components/version/index' {
|
|
|
3281
3295
|
|
|
3282
3296
|
}
|
|
3283
3297
|
declare module '@authing/react-ui-components/components/version/version' {
|
|
3284
|
-
const _default: "3.1.14-rc.
|
|
3298
|
+
const _default: "3.1.14-rc.4";
|
|
3285
3299
|
export default _default;
|
|
3286
3300
|
|
|
3287
3301
|
}
|