@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/lib/index.min.css +1 -1
- package/lib/index.min.js +1 -1
- package/package.json +1 -1
- package/types/CompleteInfo/core/completeInfo.d.ts +1 -0
- package/types/CompleteInfo/index.d.ts +2 -2
- package/types/EY/Error/index.d.ts +1 -1
- package/types/EY/InviteComplete/index.d.ts +2 -0
- package/types/EY/components/EmailFormItem.d.ts +1 -1
- package/types/Guard/core/renderModule.d.ts +0 -1
- package/types/Guard/module.d.ts +7 -3
- package/types/MFA/VerifyCodeInput/ey.d.ts +14 -0
- package/types/_utils/responseManagement/interface.d.ts +2 -1
- package/types/version/version.d.ts +1 -1
package/package.json
CHANGED
|
@@ -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
|
|
11
|
-
export declare const
|
|
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
|
|
2
|
+
export declare const EyGuardInviteExpireView: () => 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;
|
package/types/Guard/module.d.ts
CHANGED
|
@@ -39,9 +39,9 @@ export declare enum GuardModuleType {
|
|
|
39
39
|
*/
|
|
40
40
|
EY_CHECK_CAPTCHA = "ey_check_captcha",
|
|
41
41
|
/**
|
|
42
|
-
*
|
|
42
|
+
* invite expire
|
|
43
43
|
*/
|
|
44
|
-
|
|
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.
|
|
1
|
+
declare const _default: "4.4.3-ey.7";
|
|
2
2
|
export default _default;
|