@authing/react-ui-components 4.1.1-rc.4 → 4.1.1-rc.6

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-rc.4",
3
+ "version": "4.1.1-rc.6",
4
4
  "private": false,
5
5
  "main": "lib/index.min.js",
6
6
  "typings": "types/index.d.ts",
@@ -234,5 +234,6 @@
234
234
  "webpack-dev-server": "3.11.0",
235
235
  "webpack-manifest-plugin": "2.2.0",
236
236
  "workbox-webpack-plugin": "5.1.4"
237
- }
237
+ },
238
+ "gitHead": "f641e20b39c734497224741c7bc19b46cb320560"
238
239
  }
@@ -21,8 +21,7 @@ export declare const enum GuardModuleType {
21
21
  SELF_UNLOCK = "selfUnlock",
22
22
  FLOW_SELECT_ACCOUNT = "flowSelectAccount",
23
23
  /** 多租户门户选择页 */
24
- TENANT_PORTAL = "tenant-portal",
25
- New_SUBMIT_SUCCESS = "newSubmitSuccess"
24
+ TENANT_PORTAL = "tenant-portal"
26
25
  }
27
26
  export interface GuardModuleAction {
28
27
  action: string;
@@ -27,7 +27,7 @@ export declare const getClassnames: (classnames: (string | boolean | undefined)[
27
27
  * @param item
28
28
  * @returns {boolean}
29
29
  */
30
- export declare function isObject(item: any): any;
30
+ export declare function isObject(item: any): boolean;
31
31
  /**
32
32
  * https://www.itranslater.com/qa/details/2115518846294557696
33
33
  * Deep merge two objects.
@@ -1,2 +1,2 @@
1
- declare const _default: "4.1.1-rc.4";
1
+ declare const _default: "4.1.1-rc.6";
2
2
  export default _default;
@@ -1,2 +0,0 @@
1
- import React from 'react';
2
- export declare const GuardNewSubmitSuccessView: React.FC;
@@ -1,17 +0,0 @@
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
- }