@authing/react-ui-components 3.1.5 → 3.1.8
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.css +2 -2
- package/lib/index.min.js +1 -1
- package/package.json +2 -2
package/lib/index.d.ts
CHANGED
|
@@ -422,6 +422,7 @@ declare module '@authing/react-ui-components/components/AuthingGuard/api/appConf
|
|
|
422
422
|
publicKey: string;
|
|
423
423
|
internationalSmsConfig?: {
|
|
424
424
|
enabled: boolean;
|
|
425
|
+
defaultISOType: string;
|
|
425
426
|
};
|
|
426
427
|
css: string;
|
|
427
428
|
name: string;
|
|
@@ -1056,6 +1057,19 @@ declare module '@authing/react-ui-components/components/AuthingTabs/index' {
|
|
|
1056
1057
|
}
|
|
1057
1058
|
export const AuthingTabs: FC<AuthingTabsProps>;
|
|
1058
1059
|
|
|
1060
|
+
}
|
|
1061
|
+
declare module '@authing/react-ui-components/components/Back/index' {
|
|
1062
|
+
import React from 'react';
|
|
1063
|
+
import './styles.less';
|
|
1064
|
+
export interface BackProps {
|
|
1065
|
+
isRender?: boolean;
|
|
1066
|
+
}
|
|
1067
|
+
export const BackLogin: React.FC<BackProps>;
|
|
1068
|
+
export interface BackCustomProps extends BackProps {
|
|
1069
|
+
onBack?: () => void;
|
|
1070
|
+
}
|
|
1071
|
+
export const BackCustom: React.FC<BackCustomProps>;
|
|
1072
|
+
|
|
1059
1073
|
}
|
|
1060
1074
|
declare module '@authing/react-ui-components/components/BindTotp/businessRequest' {
|
|
1061
1075
|
export enum BindTotpBusinessAction {
|
|
@@ -1165,6 +1179,7 @@ declare module '@authing/react-ui-components/components/CompleteInfo/businessReq
|
|
|
1165
1179
|
Skip = "skip-completion"
|
|
1166
1180
|
}
|
|
1167
1181
|
export const authFlow: (action: CompleteInfoAuthFlowAction, data?: CompleteInfoRequest | undefined) => Promise<import("@authing/react-ui-components/components/_utils/http").AuthingGuardResponse<any>>;
|
|
1182
|
+
export const registerSkipMethod: (fnName: 'registerByEmail' | 'registerByPhoneCode', content: any) => Promise<import("authing-js-sdk").User> | undefined;
|
|
1168
1183
|
export const registerRequest: (action: CompleteInfoAuthFlowAction, registerFnName: 'registerByEmail' | 'registerByPhoneCode', registerContent: any, registerProfile?: any) => Promise<import("authing-js-sdk").User | undefined>;
|
|
1169
1184
|
|
|
1170
1185
|
}
|
|
@@ -2864,7 +2879,6 @@ declare module '@authing/react-ui-components/components/_utils/hooks/index' {
|
|
|
2864
2879
|
MountShaking: () => void;
|
|
2865
2880
|
UnMountShaking: () => void;
|
|
2866
2881
|
};
|
|
2867
|
-
export const defaultAreaCode: any;
|
|
2868
2882
|
/**
|
|
2869
2883
|
* 解析手机号
|
|
2870
2884
|
* @param fieldValue 字段值
|
|
@@ -3174,7 +3188,7 @@ declare module '@authing/react-ui-components/components/version/index' {
|
|
|
3174
3188
|
|
|
3175
3189
|
}
|
|
3176
3190
|
declare module '@authing/react-ui-components/components/version/version' {
|
|
3177
|
-
const _default: "3.1.
|
|
3191
|
+
const _default: "3.1.8";
|
|
3178
3192
|
export default _default;
|
|
3179
3193
|
|
|
3180
3194
|
}
|