@authing/react-ui-components 4.0.0-beta.0 → 4.0.0-beta.1
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 +6 -5
- package/lib/index.min.js +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -1935,6 +1935,7 @@ declare module '@authing/react-ui-components/Type/index' {
|
|
|
1935
1935
|
import { GuardModuleType } from '@authing/react-ui-components/Guard/module';
|
|
1936
1936
|
import { FacePlugin } from '@authing/react-ui-components/_utils/facePlugin/interface';
|
|
1937
1937
|
import { ApplicationConfig } from '@authing/react-ui-components/Type/application';
|
|
1938
|
+
export * from '@authing/react-ui-components/Type/application';
|
|
1938
1939
|
export type Lang = 'zh-CN' | 'en-US' | 'zh-TW';
|
|
1939
1940
|
export enum GuardMode {
|
|
1940
1941
|
Modal = "modal",
|
|
@@ -2139,7 +2140,7 @@ declare module '@authing/react-ui-components/_utils/config/index' {
|
|
|
2139
2140
|
defaultRegisterMethod?: RegisterMethods | undefined;
|
|
2140
2141
|
publicKey?: string | undefined;
|
|
2141
2142
|
agreementEnabled?: boolean | undefined;
|
|
2142
|
-
agreements?: import("@authing/react-ui-components/Type/
|
|
2143
|
+
agreements?: import("@authing/react-ui-components/Type/index").Agreement[] | undefined;
|
|
2143
2144
|
registerContext?: any;
|
|
2144
2145
|
title?: string | undefined;
|
|
2145
2146
|
logo?: string | undefined;
|
|
@@ -2157,9 +2158,9 @@ declare module '@authing/react-ui-components/_utils/config/index' {
|
|
|
2157
2158
|
__unAuthFlow__?: boolean | undefined;
|
|
2158
2159
|
autoRegister?: boolean | undefined;
|
|
2159
2160
|
disableResetPwd?: boolean | undefined;
|
|
2160
|
-
defaultLoginMethod?: import("@authing/react-ui-components/Type/
|
|
2161
|
-
loginMethods?: import("@authing/react-ui-components/Type/
|
|
2162
|
-
passwordLoginMethods?: import("@authing/react-ui-components/Type/
|
|
2161
|
+
defaultLoginMethod?: import("@authing/react-ui-components/Type/index").LoginMethods | undefined;
|
|
2162
|
+
loginMethods?: import("@authing/react-ui-components/Type/index").LoginMethods[] | undefined;
|
|
2163
|
+
passwordLoginMethods?: import("@authing/react-ui-components/Type/index").PasswordLoginMethods[] | undefined;
|
|
2163
2164
|
socialConnections?: import("authing-js-sdk").SocialConnectionProvider[] | undefined;
|
|
2164
2165
|
socialConnectionsBtnShape?: "default" | "button" | "icon" | undefined;
|
|
2165
2166
|
enterpriseConnections?: string[] | undefined;
|
|
@@ -2669,7 +2670,7 @@ declare module '@authing/react-ui-components/version/index' {
|
|
|
2669
2670
|
|
|
2670
2671
|
}
|
|
2671
2672
|
declare module '@authing/react-ui-components/version/version' {
|
|
2672
|
-
const _default: "4.0.0-beta.
|
|
2673
|
+
const _default: "4.0.0-beta.1";
|
|
2673
2674
|
export default _default;
|
|
2674
2675
|
|
|
2675
2676
|
}
|