@authing/react-ui-components 3.1.23-rc.0 → 3.1.23-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/lib/index.d.ts CHANGED
@@ -1998,6 +1998,7 @@ declare module '@authing/react-ui-components/components/Login/core/withPassword/
1998
1998
  agreements: Agreement[];
1999
1999
  loginWay?: LoginMethods;
2000
2000
  submitButText?: string;
2001
+ saveIdentify?: (type: LoginMethods, identity: string) => void;
2001
2002
  }
2002
2003
  export const LoginWithPassword: (props: LoginWithPasswordProps) => JSX.Element;
2003
2004
  export {};
@@ -2576,12 +2577,14 @@ declare module '@authing/react-ui-components/components/Register/utils' {
2576
2577
 
2577
2578
  }
2578
2579
  declare module '@authing/react-ui-components/components/SelfUnlock/core/selfUnlock' {
2579
- /// <reference types="react" />
2580
+ import React from 'react';
2580
2581
  export enum InputMethodMap {
2581
2582
  email = "email-code",
2582
2583
  phone = "phone-code"
2583
2584
  }
2584
- export const SelfUnlock: () => JSX.Element;
2585
+ export const SelfUnlock: ({ identifyRef, }: {
2586
+ identifyRef?: React.MutableRefObject<string> | undefined;
2587
+ }) => JSX.Element;
2585
2588
 
2586
2589
  }
2587
2590
  declare module '@authing/react-ui-components/components/SelfUnlock/index' {
@@ -3311,6 +3314,7 @@ declare module '@authing/react-ui-components/components/_utils/index' {
3311
3314
  specifyDefaultLoginMethod: LoginMethods;
3312
3315
  lockMethod?: undefined;
3313
3316
  } | undefined;
3317
+ export const getPasswordIdentify: (identity: string) => string;
3314
3318
 
3315
3319
  }
3316
3320
  declare module '@authing/react-ui-components/components/_utils/initAppId' {
@@ -3505,7 +3509,7 @@ declare module '@authing/react-ui-components/components/version/index' {
3505
3509
 
3506
3510
  }
3507
3511
  declare module '@authing/react-ui-components/components/version/version' {
3508
- const _default: "3.1.23-rc.0";
3512
+ const _default: "3.1.23-rc.3";
3509
3513
  export default _default;
3510
3514
 
3511
3515
  }