@authing/react-ui-components 4.4.3-ey.6 → 4.4.3-ey.7

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.4.3-ey.6",
3
+ "version": "4.4.3-ey.7",
4
4
  "private": false,
5
5
  "main": "lib/index.min.js",
6
6
  "typings": "types/index.d.ts",
@@ -3,6 +3,7 @@ import { CompleteInfoMetaData, CompleteInfoRequest } from '../interface';
3
3
  export interface CompleteInfoProps {
4
4
  metaData: CompleteInfoMetaData[];
5
5
  businessRequest: (data: CompleteInfoRequest) => Promise<void>;
6
+ submitText?: string;
6
7
  }
7
8
  export interface FieldMetadata {
8
9
  key: string;
@@ -7,5 +7,5 @@ export declare const GuardCompleteInfo: React.FC<{
7
7
  skipComplateFileds: boolean;
8
8
  businessRequest: (action: CompleteInfoAuthFlowAction, data?: CompleteInfoRequest) => Promise<void>;
9
9
  }>;
10
- export declare const EyGuardLoginCompleteInfoView: React.FC;
11
- export declare const EyGuardRegisterCompleteInfoView: React.FC;
10
+ export declare const GuardLoginCompleteInfoView: React.FC;
11
+ export declare const GuardRegisterCompleteInfoView: React.FC;
@@ -1,2 +1,2 @@
1
1
  /// <reference types="react" />
2
- export declare const EyGuardErrorView: () => JSX.Element;
2
+ export declare const EyGuardInviteExpireView: () => JSX.Element;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const EyGuardInviteCompleteView: () => JSX.Element;
@@ -1,2 +1,2 @@
1
1
  /// <reference types="react" />
2
- export declare const EmailFormItem: () => JSX.Element;
2
+ export declare const EmailFormItem: (props: any) => JSX.Element;
@@ -1,6 +1,5 @@
1
1
  import React from 'react';
2
2
  import { GuardProps } from '..';
3
- import '../../assets/fonts/index.css';
4
3
  import '../styles.less';
5
4
  import '../ey.styles.less';
6
5
  export declare enum LangMAP {
@@ -39,9 +39,9 @@ export declare enum GuardModuleType {
39
39
  */
40
40
  EY_CHECK_CAPTCHA = "ey_check_captcha",
41
41
  /**
42
- * error
42
+ * invite expire
43
43
  */
44
- EY_ERROR = "ey_error",
44
+ EY_INVITE_EXPIRE = "ey_invite_expire",
45
45
  /**
46
46
  * invite login
47
47
  */
@@ -49,7 +49,11 @@ export declare enum GuardModuleType {
49
49
  /**
50
50
  * identity bind
51
51
  */
52
- EY_IDENTITY_BIND = "ey_identity_bind"
52
+ EY_IDENTITY_BIND = "ey_identity_bind",
53
+ /**
54
+ * invite complete
55
+ */
56
+ EY_INVITE_COMPLETE = "ey_invite_complete"
53
57
  }
54
58
  export interface GuardModuleAction {
55
59
  action: string;
@@ -0,0 +1,14 @@
1
+ import React, { FC } from 'react';
2
+ import './style.less';
3
+ interface VerifyCodeInputProps extends React.HTMLAttributes<HTMLDivElement> {
4
+ length?: number;
5
+ size?: string;
6
+ gutter?: string;
7
+ onEenter?: Function;
8
+ showDivider?: boolean;
9
+ onChange?: any;
10
+ value?: Array<number | string>;
11
+ onFinish?: any;
12
+ }
13
+ export declare const EyVerifyCodeInput: FC<VerifyCodeInputProps>;
14
+ export {};
@@ -21,6 +21,7 @@ export declare enum ApiCode {
21
21
  FLOW_SELECT_ACCOUNT = 2921,
22
22
  SELECT_ACCOUNT_2_LOGIN = 2930,
23
23
  TENANT_PORTAL = 1644,
24
- RESET_ACCOUNT_NAME = 1108
24
+ RESET_ACCOUNT_NAME = 1108,
25
+ EY_INVITE_EXPIRE = 408
25
26
  }
26
27
  export declare const ChangeModuleApiCodeMapping: Record<string, GuardModuleType>;
@@ -1,2 +1,2 @@
1
- declare const _default: "4.4.3-ey.6";
1
+ declare const _default: "4.4.3-ey.7";
2
2
  export default _default;