@authing/react-ui-components 3.1.16-rc.3 → 3.1.17-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 +18 -1
- 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
|
@@ -1764,6 +1764,12 @@ declare module '@authing/react-ui-components/components/IdentityBinding/business
|
|
|
1764
1764
|
account: string;
|
|
1765
1765
|
password: string;
|
|
1766
1766
|
}
|
|
1767
|
+
export enum IdentityBindingAction {
|
|
1768
|
+
CreateUser = "create-federation-account",
|
|
1769
|
+
BindByPassword = "bind-identity-by-password",
|
|
1770
|
+
BindByPhoneCode = "bind-identity-by-phone-code",
|
|
1771
|
+
BindByEmailCode = "bind-identity-by-email-code"
|
|
1772
|
+
}
|
|
1767
1773
|
export const PhoneCode: (params: PhoneCodeParams) => Promise<import("@authing/react-ui-components/components/_utils/http").AuthingGuardResponse<any>>;
|
|
1768
1774
|
export const EmailCode: (params: EmailCodeParams) => Promise<import("@authing/react-ui-components/components/_utils/http").AuthingGuardResponse<any>>;
|
|
1769
1775
|
export const Password: (params: PasswordParams) => Promise<import("@authing/react-ui-components/components/_utils/http").AuthingGuardResponse<any>>;
|
|
@@ -2472,6 +2478,7 @@ declare module '@authing/react-ui-components/components/Register/core/WithEmailC
|
|
|
2472
2478
|
agreements: Agreement[];
|
|
2473
2479
|
publicConfig?: ApplicationConfig;
|
|
2474
2480
|
registeContext?: any;
|
|
2481
|
+
needPassword?: boolean;
|
|
2475
2482
|
}
|
|
2476
2483
|
export const RegisterWithEmailCode: React.FC<RegisterWithEmailCodeProps>;
|
|
2477
2484
|
|
|
@@ -2485,6 +2492,7 @@ declare module '@authing/react-ui-components/components/Register/core/WithPhone'
|
|
|
2485
2492
|
agreements: Agreement[];
|
|
2486
2493
|
publicConfig?: ApplicationConfig;
|
|
2487
2494
|
registeContext?: any;
|
|
2495
|
+
needPassword?: boolean;
|
|
2488
2496
|
}
|
|
2489
2497
|
export const RegisterWithPhone: React.FC<RegisterWithPhoneProps>;
|
|
2490
2498
|
|
|
@@ -2869,6 +2877,7 @@ declare module '@authing/react-ui-components/components/_utils/config/index' {
|
|
|
2869
2877
|
socialConnectionsBtnShape?: "default" | "button" | "icon" | undefined;
|
|
2870
2878
|
enterpriseConnections?: string[] | undefined;
|
|
2871
2879
|
qrCodeScanOptions?: {
|
|
2880
|
+
currentDocument?: Document | undefined;
|
|
2872
2881
|
extIdpConnId?: string | undefined;
|
|
2873
2882
|
autoExchangeUserInfo?: boolean | undefined;
|
|
2874
2883
|
size?: {
|
|
@@ -3010,6 +3019,13 @@ declare module '@authing/react-ui-components/components/_utils/facePlugin/interf
|
|
|
3010
3019
|
nets: any;
|
|
3011
3020
|
}
|
|
3012
3021
|
|
|
3022
|
+
}
|
|
3023
|
+
declare module '@authing/react-ui-components/components/_utils/flowHandleStorage' {
|
|
3024
|
+
export const getFlowHandle: () => string | undefined;
|
|
3025
|
+
export const useFlowHandle: () => string | undefined;
|
|
3026
|
+
export const updateFlowHandle: (flowHandle: string) => void;
|
|
3027
|
+
export const useUpdateFlowHandle: (flowHandle: string) => void;
|
|
3028
|
+
|
|
3013
3029
|
}
|
|
3014
3030
|
declare module '@authing/react-ui-components/components/_utils/guardDocument' {
|
|
3015
3031
|
export const getGuardDocument: () => Document;
|
|
@@ -3116,6 +3132,7 @@ declare module '@authing/react-ui-components/components/_utils/http' {
|
|
|
3116
3132
|
data?: T;
|
|
3117
3133
|
messages?: string;
|
|
3118
3134
|
message?: string;
|
|
3135
|
+
flowHandle?: string;
|
|
3119
3136
|
}
|
|
3120
3137
|
export interface AuthingGuardResponse<T = any> extends AuthingResponse<T> {
|
|
3121
3138
|
onGuardHandling?: () => CodeAction;
|
|
@@ -3391,7 +3408,7 @@ declare module '@authing/react-ui-components/components/version/index' {
|
|
|
3391
3408
|
|
|
3392
3409
|
}
|
|
3393
3410
|
declare module '@authing/react-ui-components/components/version/version' {
|
|
3394
|
-
const _default: "3.1.
|
|
3411
|
+
const _default: "3.1.17-rc.0";
|
|
3395
3412
|
export default _default;
|
|
3396
3413
|
|
|
3397
3414
|
}
|