@authing/react-ui-components 3.1.23 → 3.1.25-beta.2

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
@@ -451,6 +451,7 @@ declare module '@authing/react-ui-components/components/AuthingGuard/api/appConf
451
451
  description?: string;
452
452
  redirectUris: string[];
453
453
  registerDisabled: boolean;
454
+ mergeAdAndAccountPasswordLogin: boolean;
454
455
  registerTabs: {
455
456
  list: string[];
456
457
  default: string;
@@ -520,6 +521,7 @@ declare module '@authing/react-ui-components/components/AuthingGuard/api/appConf
520
521
  websocket: string;
521
522
  welcomeMessage: any;
522
523
  skipComplateFileds: boolean;
524
+ selfUnlockStrategy: 'captcha' | 'password-captcha';
523
525
  }
524
526
  export const fetchAppConfig: (appId: string) => Promise<import("@authing/react-ui-components/components/_utils/http").AuthingResponse<ApplicationConfig>>;
525
527
 
@@ -1998,6 +2000,7 @@ declare module '@authing/react-ui-components/components/Login/core/withPassword/
1998
2000
  agreements: Agreement[];
1999
2001
  loginWay?: LoginMethods;
2000
2002
  submitButText?: string;
2003
+ saveIdentify?: (type: LoginMethods, identity: string) => void;
2001
2004
  }
2002
2005
  export const LoginWithPassword: (props: LoginWithPasswordProps) => JSX.Element;
2003
2006
  export {};
@@ -2576,12 +2579,14 @@ declare module '@authing/react-ui-components/components/Register/utils' {
2576
2579
 
2577
2580
  }
2578
2581
  declare module '@authing/react-ui-components/components/SelfUnlock/core/selfUnlock' {
2579
- /// <reference types="react" />
2582
+ import React from 'react';
2580
2583
  export enum InputMethodMap {
2581
2584
  email = "email-code",
2582
2585
  phone = "phone-code"
2583
2586
  }
2584
- export const SelfUnlock: () => JSX.Element;
2587
+ export const SelfUnlock: ({ identifyRef, }: {
2588
+ identifyRef?: React.MutableRefObject<string> | undefined;
2589
+ }) => JSX.Element;
2585
2590
 
2586
2591
  }
2587
2592
  declare module '@authing/react-ui-components/components/SelfUnlock/index' {
@@ -3173,6 +3178,10 @@ declare module '@authing/react-ui-components/components/_utils/hooks/index' {
3173
3178
  countryCode: string | undefined;
3174
3179
  phoneNumber: string;
3175
3180
  };
3181
+ export enum SocialConnectionEvent {
3182
+ Message = "message",
3183
+ Auth = "auth"
3184
+ }
3176
3185
  /**
3177
3186
  *
3178
3187
  * @param config
@@ -3307,6 +3316,7 @@ declare module '@authing/react-ui-components/components/_utils/index' {
3307
3316
  specifyDefaultLoginMethod: LoginMethods;
3308
3317
  lockMethod?: undefined;
3309
3318
  } | undefined;
3319
+ export const getPasswordIdentify: (identity: string) => string;
3310
3320
 
3311
3321
  }
3312
3322
  declare module '@authing/react-ui-components/components/_utils/initAppId' {
@@ -3501,7 +3511,7 @@ declare module '@authing/react-ui-components/components/version/index' {
3501
3511
 
3502
3512
  }
3503
3513
  declare module '@authing/react-ui-components/components/version/version' {
3504
- const _default: "3.1.23";
3514
+ const _default: "3.1.25-beta.2";
3505
3515
  export default _default;
3506
3516
 
3507
3517
  }