@authing/react-ui-components 4.0.5 → 4.0.6-rc.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@authing/react-ui-components",
3
- "version": "4.0.5",
3
+ "version": "4.0.6-rc.0",
4
4
  "private": false,
5
5
  "main": "lib/index.min.js",
6
6
  "typings": "types/index.d.ts",
@@ -3,7 +3,8 @@ import { GuardProps } from '..';
3
3
  import '../styles.less';
4
4
  export declare enum LangMAP {
5
5
  zhCn = "zh-CN",
6
- enUs = "en-US"
6
+ enUs = "en-US",
7
+ jaJp = "ja-JP"
7
8
  }
8
9
  export declare const RenderModule: React.FC<{
9
10
  guardProps: GuardProps;
@@ -0,0 +1,11 @@
1
+ /// <reference types="react" />
2
+ import { StoreInstance } from '../../Guard/core/hooks/useMultipleAccounts';
3
+ interface LoginWithLandrayQrcodeProps {
4
+ onLoginSuccess: any;
5
+ canLoop: boolean;
6
+ qrCodeScanOptions: any;
7
+ id: string;
8
+ multipleInstance?: StoreInstance;
9
+ }
10
+ export declare const LoginWithLandrayQrcode: (props: LoginWithLandrayQrcodeProps) => JSX.Element | null;
11
+ export {};
@@ -4,7 +4,7 @@ import { FacePlugin } from '../_utils/facePlugin/interface';
4
4
  import { ApplicationConfig } from './application';
5
5
  export * from './application';
6
6
  export type { CommonMessage, User };
7
- export declare type Lang = 'zh-CN' | 'en-US' | 'zh-TW';
7
+ export declare type Lang = 'zh-CN' | 'en-US' | 'zh-TW' | 'ja-JP';
8
8
  export declare enum GuardMode {
9
9
  Modal = "modal",
10
10
  Normal = "normal"
@@ -0,0 +1,4 @@
1
+ import common from './common.json';
2
+ import login from './login.json';
3
+ import user from './user.json';
4
+ export { common, login, user };
@@ -0,0 +1,13 @@
1
+ export declare enum SceneType {
2
+ SCENE_TYPE_LOGIN = "CHANNEL_LOGIN",
3
+ SCENE_TYPE_REGISTER = "CHANNEL_REGISTER",
4
+ SCENE_TYPE_RESET = "CHANNEL_RESET_PASSWORD",
5
+ SCENE_TYPE_BIND = "CHANNEL_BIND_PHONE",
6
+ SCENE_TYPE_UNBIND = "CHANNEL_UNBIND_PHONE",
7
+ SCENE_TYPE_MFA_BIND = "CHANNEL_BIND_MFA",
8
+ SCENE_TYPE_MFA_VERIFY = "CHANNEL_VERIFY_MFA",
9
+ SCENE_TYPE_MFA_UNBIND = "CHANNEL_UNBIND_MFA",
10
+ SCENE_TYPE_COMPLETE_PHONE = "CHANNEL_COMPLETE_PHONE",
11
+ CHANNEL_IDENTITY_VERIFICATION = "CHANNEL_IDENTITY_VERIFICATION",
12
+ CHANNEL_DELETE_ACCOUNT = "CHANNEL_DELETE_ACCOUNT"
13
+ }
@@ -1,2 +1,2 @@
1
- declare const _default: "4.0.5";
1
+ declare const _default: "4.0.6-rc.0";
2
2
  export default _default;