@authing/react-ui-components 4.3.2-rc.1 → 4.3.2-rc.3
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/package.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
import React from 'react';
|
|
2
2
|
export declare enum InputMethodMap {
|
|
3
3
|
email = "email-code",
|
|
4
4
|
phone = "phone-code"
|
|
@@ -10,6 +10,7 @@ interface ResetPasswordProps {
|
|
|
10
10
|
setPolicyStrength: any;
|
|
11
11
|
setCustomPasswordStrength: any;
|
|
12
12
|
setPhoneOrEmailText: any;
|
|
13
|
+
setResetToken: React.Dispatch<React.SetStateAction<string>>;
|
|
13
14
|
}
|
|
14
15
|
export declare const ResetPassword: (props: ResetPasswordProps) => JSX.Element;
|
|
15
16
|
export {};
|
|
@@ -307,10 +307,4 @@ export interface ApplicationConfig {
|
|
|
307
307
|
mfa: {
|
|
308
308
|
faceScore: number;
|
|
309
309
|
};
|
|
310
|
-
/** 是否开启自定义安全规则 */
|
|
311
|
-
customSecurityEnabled: boolean;
|
|
312
|
-
/** 应用的人机验证策略,始终开启、不开启、设置条件触发 */
|
|
313
|
-
appRobotVerify: 'always_enable' | 'disable' | 'condition_set';
|
|
314
|
-
/** 用户池的人机验证策略,始终开启、不开启、设置条件触发 */
|
|
315
|
-
userpoolRobotVerify: 'always_enable' | 'disable' | 'condition_set';
|
|
316
310
|
}
|
|
@@ -154,5 +154,3 @@ export declare const useGuardPhoneRegex: () => RegExp | null;
|
|
|
154
154
|
export declare const useGuardDefaultLanguage: () => Lang;
|
|
155
155
|
/** 用来操作和获取租户相关的内容 */
|
|
156
156
|
export declare const useGuardTenantProvider: () => MultipleTenant | undefined;
|
|
157
|
-
/** 当前人机验证策略 */
|
|
158
|
-
export declare const useRobotVerify: () => "always_enable" | "disable" | "condition_set";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "4.3.2-rc.
|
|
1
|
+
declare const _default: "4.3.2-rc.3";
|
|
2
2
|
export default _default;
|