@authing/react-ui-components 4.1.1-beta.0 → 4.1.1-beta.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
|
@@ -264,11 +264,6 @@ export interface ApplicationConfig {
|
|
|
264
264
|
* 是否开启注册密码补全
|
|
265
265
|
*/
|
|
266
266
|
enableCompletePassword: boolean;
|
|
267
|
-
regexRules?: {
|
|
268
|
-
key: string;
|
|
269
|
-
appLevel: string;
|
|
270
|
-
userpoolLevel: string;
|
|
271
|
-
}[];
|
|
272
267
|
/** 是否为租户控制台应用 */
|
|
273
268
|
isTenantConsole?: boolean;
|
|
274
269
|
/** 是否默认为租户应用面板应用 */
|
|
@@ -43,7 +43,6 @@ export interface IGuardContext {
|
|
|
43
43
|
*/
|
|
44
44
|
clearBackFillData?: () => void;
|
|
45
45
|
};
|
|
46
|
-
phoneRegex: RegExp | null;
|
|
47
46
|
/** 租户信息获取和操作处理相关 */
|
|
48
47
|
tenantInstance?: MultipleTenant;
|
|
49
48
|
}
|
|
@@ -141,6 +140,5 @@ export declare const useGuardMultipleInstance: () => {
|
|
|
141
140
|
*/
|
|
142
141
|
clearBackFillData?: (() => void) | undefined;
|
|
143
142
|
};
|
|
144
|
-
export declare const useGuardPhoneRegex: () => RegExp | null;
|
|
145
143
|
/** 用来操作和获取租户相关的内容 */
|
|
146
144
|
export declare const useGuardTenantProvider: () => MultipleTenant | undefined;
|
package/types/_utils/index.d.ts
CHANGED
|
@@ -91,4 +91,3 @@ export declare const getLoginTypePipe: (publicConfig: ApplicationConfig, registe
|
|
|
91
91
|
} | undefined;
|
|
92
92
|
export declare const getPasswordIdentify: (identity: string) => string;
|
|
93
93
|
export declare const getCurrentLng: () => Lang;
|
|
94
|
-
export declare const regexFromString: (string: string) => RegExp | null;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "4.1.1-beta.
|
|
1
|
+
declare const _default: "4.1.1-beta.1";
|
|
2
2
|
export default _default;
|