@authing/react-ui-components 3.1.14-rc.2 → 3.1.15-rc.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.
- package/lib/index.d.ts +19 -2
- package/lib/index.min.css +1 -1
- package/lib/index.min.js +1 -1
- package/package.json +2 -2
package/lib/index.d.ts
CHANGED
|
@@ -1178,6 +1178,7 @@ declare module '@authing/react-ui-components/components/ChangePassword/core/rota
|
|
|
1178
1178
|
/// <reference types="react" />
|
|
1179
1179
|
interface RotateResetProps {
|
|
1180
1180
|
onReset: any;
|
|
1181
|
+
onFinishCallBack?: any;
|
|
1181
1182
|
}
|
|
1182
1183
|
export const RotateReset: (props: RotateResetProps) => JSX.Element;
|
|
1183
1184
|
export {};
|
|
@@ -1191,6 +1192,7 @@ declare module '@authing/react-ui-components/components/ChangePassword/index' {
|
|
|
1191
1192
|
}>;
|
|
1192
1193
|
export const GuardFirstLoginPasswordResetView: React.FC;
|
|
1193
1194
|
export const GuardForcedPasswordResetView: React.FC;
|
|
1195
|
+
export const GuardNoticePasswordResetView: React.FC;
|
|
1194
1196
|
|
|
1195
1197
|
}
|
|
1196
1198
|
declare module '@authing/react-ui-components/components/CompleteInfo/businessRequest' {
|
|
@@ -1611,6 +1613,7 @@ declare module '@authing/react-ui-components/components/Guard/module' {
|
|
|
1611
1613
|
MFA = "mfa",
|
|
1612
1614
|
FORGET_PWD = "forgetPassword",
|
|
1613
1615
|
FORCED_PASSWORD_RESET = "forcedPasswordReset",
|
|
1616
|
+
NOTICE_PASSWORD_RESET = "noticePasswordReset",
|
|
1614
1617
|
FIRST_LOGIN_PASSWORD = "firstLoginPassword",
|
|
1615
1618
|
DOWNLOAD_AT = "downloadAT",
|
|
1616
1619
|
BIND_TOTP = "bindTotp",
|
|
@@ -2460,9 +2463,9 @@ declare module '@authing/react-ui-components/components/SendCode/SendCodeBtn' {
|
|
|
2460
2463
|
}
|
|
2461
2464
|
declare module '@authing/react-ui-components/components/SendCode/SendCodeByEmail' {
|
|
2462
2465
|
import { FC } from 'react';
|
|
2463
|
-
import { EmailScene } from 'authing-js-sdk';
|
|
2464
2466
|
import './style.less';
|
|
2465
2467
|
import { InputProps } from 'antd/lib/input';
|
|
2468
|
+
import { EmailScene } from '@authing/react-ui-components/components/Type/index';
|
|
2466
2469
|
export interface SendCodeByEmailProps extends InputProps {
|
|
2467
2470
|
data: string;
|
|
2468
2471
|
form?: any;
|
|
@@ -2627,6 +2630,19 @@ declare module '@authing/react-ui-components/components/Type/index' {
|
|
|
2627
2630
|
showChangeLanguage: boolean;
|
|
2628
2631
|
};
|
|
2629
2632
|
}
|
|
2633
|
+
export enum EmailScene {
|
|
2634
|
+
WELCOME_EMAIL = "WELCOME_EMAIL",
|
|
2635
|
+
FIRST_CREATED_USER = "FIRST_CREATED_USER",
|
|
2636
|
+
REGISTER_VERIFY_CODE = "REGISTER_VERIFY_CODE",
|
|
2637
|
+
LOGIN_VERIFY_CODE = "LOGIN_VERIFY_CODE",
|
|
2638
|
+
MFA_VERIFY_CODE = "MFA_VERIFY_CODE",
|
|
2639
|
+
INFORMATION_COMPLETION_VERIFY_CODE = "INFORMATION_COMPLETION_VERIFY_CODE",
|
|
2640
|
+
FIRST_EMAIL_LOGIN_VERIFY = "FIRST_EMAIL_LOGIN_VERIFY",
|
|
2641
|
+
CONSOLE_CONDUCTED_VERIFY = "CONSOLE_CONDUCTED_VERIFY",
|
|
2642
|
+
RESET_PASSWORD_VERIFY_CODE = "RESET_PASSWORD_VERIFY_CODE",
|
|
2643
|
+
EMAIL_BIND_VERIFY_CODE = "EMAIL_BIND_VERIFY_CODE",
|
|
2644
|
+
EMAIL_UNBIND_VERIFY_CODE = "EMAIL_UNBIND_VERIFY_CODE"
|
|
2645
|
+
}
|
|
2630
2646
|
|
|
2631
2647
|
}
|
|
2632
2648
|
declare module '@authing/react-ui-components/components/ValidatorRules/PasswordFormItem' {
|
|
@@ -2770,6 +2786,7 @@ declare module '@authing/react-ui-components/components/_utils/config/index' {
|
|
|
2770
2786
|
socialConnectionsBtnShape?: "default" | "button" | "icon" | undefined;
|
|
2771
2787
|
enterpriseConnections?: string[] | undefined;
|
|
2772
2788
|
qrCodeScanOptions?: {
|
|
2789
|
+
currentDocument?: Document | undefined;
|
|
2773
2790
|
extIdpConnId?: string | undefined;
|
|
2774
2791
|
autoExchangeUserInfo?: boolean | undefined;
|
|
2775
2792
|
size?: {
|
|
@@ -3281,7 +3298,7 @@ declare module '@authing/react-ui-components/components/version/index' {
|
|
|
3281
3298
|
|
|
3282
3299
|
}
|
|
3283
3300
|
declare module '@authing/react-ui-components/components/version/version' {
|
|
3284
|
-
const _default: "3.1.
|
|
3301
|
+
const _default: "3.1.15-rc.0";
|
|
3285
3302
|
export default _default;
|
|
3286
3303
|
|
|
3287
3304
|
}
|