@authing/guard-shim-react 4.5.40-hep.1 → 4.5.40-hep.10
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.
|
@@ -272,6 +272,7 @@ export interface ApplicationConfig {
|
|
|
272
272
|
identifier: string;
|
|
273
273
|
requestHostname: string;
|
|
274
274
|
identityProviders: {
|
|
275
|
+
id: string;
|
|
275
276
|
identifier: string;
|
|
276
277
|
protocol: Protocol;
|
|
277
278
|
displayName: string;
|
|
@@ -386,4 +387,6 @@ export interface ApplicationConfig {
|
|
|
386
387
|
};
|
|
387
388
|
/** 特殊浏览器匹配字符串 */
|
|
388
389
|
specialBrowserSymbols?: string[];
|
|
390
|
+
/** 密码策略 message 提示 */
|
|
391
|
+
passwordCheckMessage?: string;
|
|
389
392
|
}
|
|
@@ -4,5 +4,6 @@ export interface PasswordFormItemProps extends FormItemProps {
|
|
|
4
4
|
}
|
|
5
5
|
export interface ExPasswordFormItemProps extends PasswordFormItemProps {
|
|
6
6
|
fieldRequiredRuleMessage?: string;
|
|
7
|
+
noCheckSecond?: boolean;
|
|
7
8
|
}
|
|
8
9
|
export declare const PasswordFormItem: React.FC<ExPasswordFormItemProps>;
|
package/package.json
CHANGED