@authing/react-ui-components 4.4.4-ey.25 → 4.4.4-ey.26
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
|
@@ -10,6 +10,7 @@ interface VerifyCodeInputProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
10
10
|
value?: string;
|
|
11
11
|
onFinish?: any;
|
|
12
12
|
beforeSend: () => Promise<boolean>;
|
|
13
|
+
verifyType: 'emailCode' | 'phoneCode';
|
|
13
14
|
}
|
|
14
|
-
export declare const EyVerifyCodeInput: React.ForwardRefExoticComponent<
|
|
15
|
+
export declare const EyVerifyCodeInput: React.ForwardRefExoticComponent<VerifyCodeInputProps & React.RefAttributes<any>>;
|
|
15
16
|
export {};
|
|
@@ -6,5 +6,6 @@ export interface SendCodeProps extends ButtonProps {
|
|
|
6
6
|
btnRef?: React.RefObject<HTMLButtonElement>;
|
|
7
7
|
setSent?: (value: boolean) => void;
|
|
8
8
|
sendDesc?: string;
|
|
9
|
+
timerTime?: number;
|
|
9
10
|
}
|
|
10
11
|
export declare const SendCodeBtn: React.ForwardRefExoticComponent<SendCodeProps & React.RefAttributes<unknown>>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "4.4.4-ey.
|
|
1
|
+
declare const _default: "4.4.4-ey.26";
|
|
2
2
|
export default _default;
|