@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/build/asset-manifest.json +10 -10
- package/build/index.html +1 -1
- package/build/static/css/2.e5f4a1ca.chunk.css +2 -0
- package/build/static/css/2.e5f4a1ca.chunk.css.map +1 -0
- package/build/static/js/{2.06cb6b53.chunk.js → 2.b28e1968.chunk.js} +3 -3
- package/build/static/js/{2.06cb6b53.chunk.js.LICENSE.txt → 2.b28e1968.chunk.js.LICENSE.txt} +0 -0
- package/build/static/js/{2.06cb6b53.chunk.js.map → 2.b28e1968.chunk.js.map} +1 -1
- package/build/static/js/{main.1de9a856.chunk.js → main.eeb41586.chunk.js} +1 -1
- package/build/static/js/{main.1de9a856.chunk.js.map → main.eeb41586.chunk.js.map} +1 -1
- package/lib/index.d.ts +5 -0
- package/lib/index.min.css +1 -1
- package/lib/index.min.js +1 -1
- package/package.json +2 -2
- package/src/components/AuthingGuard/Forms/SocialAndIdpLogin/index.tsx +3 -3
- package/src/components/AuthingGuard/api/userPoolConfig.ts +2 -0
- package/yarn-error.log +19616 -0
- package/build/static/css/2.19155096.chunk.css +0 -2
- package/build/static/css/2.19155096.chunk.css.map +0 -1
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;
|