@authing/react-ui-components 4.1.1-rc.6 → 4.1.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@authing/react-ui-components",
|
|
3
|
-
"version": "4.1.1
|
|
3
|
+
"version": "4.1.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"main": "lib/index.min.js",
|
|
6
6
|
"typings": "types/index.d.ts",
|
|
@@ -235,5 +235,5 @@
|
|
|
235
235
|
"webpack-manifest-plugin": "2.2.0",
|
|
236
236
|
"workbox-webpack-plugin": "5.1.4"
|
|
237
237
|
},
|
|
238
|
-
"gitHead": "
|
|
238
|
+
"gitHead": "c616051e26f0d80cbf04fb4f677719391b916802"
|
|
239
239
|
}
|
package/types/Guard/module.d.ts
CHANGED
|
@@ -21,7 +21,8 @@ export declare const enum GuardModuleType {
|
|
|
21
21
|
SELF_UNLOCK = "selfUnlock",
|
|
22
22
|
FLOW_SELECT_ACCOUNT = "flowSelectAccount",
|
|
23
23
|
/** 多租户门户选择页 */
|
|
24
|
-
TENANT_PORTAL = "tenant-portal"
|
|
24
|
+
TENANT_PORTAL = "tenant-portal",
|
|
25
|
+
New_SUBMIT_SUCCESS = "newSubmitSuccess"
|
|
25
26
|
}
|
|
26
27
|
export interface GuardModuleAction {
|
|
27
28
|
action: string;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { GuardModuleType } from '../Guard';
|
|
2
|
+
import { IG2Config, IG2Events, IG2FCViewProps } from '../Type';
|
|
3
|
+
export interface SubmitSuccessEvents extends IG2Events {
|
|
4
|
+
}
|
|
5
|
+
export interface SubmitSuccessConfig extends IG2Config {
|
|
6
|
+
}
|
|
7
|
+
export interface SubmitSuccessInitData {
|
|
8
|
+
title?: string;
|
|
9
|
+
message?: string;
|
|
10
|
+
text?: string;
|
|
11
|
+
countDesc?: string;
|
|
12
|
+
changeModule?: GuardModuleType;
|
|
13
|
+
}
|
|
14
|
+
export interface GuardNewSubmitSuccessViewProps extends IG2FCViewProps, SubmitSuccessEvents {
|
|
15
|
+
config: SubmitSuccessConfig;
|
|
16
|
+
initData?: SubmitSuccessInitData;
|
|
17
|
+
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "4.1.1
|
|
1
|
+
declare const _default: "4.1.1";
|
|
2
2
|
export default _default;
|