@authing/react-ui-components 2.4.55-alpha.1 → 2.4.55-alpha.5

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
@@ -455,6 +455,7 @@ declare module '@authing/react-ui-components/components/AuthingGuard/api/appConf
455
455
  loginTabs: {
456
456
  list: string[];
457
457
  default: string;
458
+ defaultV2?: string;
458
459
  title: {
459
460
  [x: string]: string;
460
461
  };
@@ -601,8 +602,10 @@ declare module '@authing/react-ui-components/components/AuthingGuard/api/userPoo
601
602
  }
602
603
  export interface SocialConnectionItem {
603
604
  name: string;
605
+ displayName: string;
604
606
  logo: string;
605
607
  description: string;
608
+ identifier: string;
606
609
  provider: SocialConnectionProvider;
607
610
  authorizationUrl: string;
608
611
  tooltip: Record<Lang, string>;
@@ -763,6 +766,7 @@ declare module '@authing/react-ui-components/components/AuthingGuard/types/Forms
763
766
  }
764
767
  export interface QrLoginFormProps extends BaseFormProps {
765
768
  type: LoginMethods.AppQr | LoginMethods.WxMinQr | LoginMethods.WechatMpQrcode;
769
+ idpId?: string;
766
770
  }
767
771
  export interface EmailRegisterFormProps extends BaseFormProps {
768
772
  onValidateFail?: (error: any) => void;
@@ -1053,6 +1057,7 @@ declare module '@authing/react-ui-components/components/AuthingGuard/types/Guard
1053
1057
  publicKey: ApplicationConfig['publicKey'];
1054
1058
  agreementEnabled: boolean;
1055
1059
  agreements: Agreement[];
1060
+ loginMethodTitleMapping: Record<string, string>;
1056
1061
  }
1057
1062
  export interface LocalesConfig {
1058
1063
  defaultLang?: Lang;