@authing/react-ui-components 3.1.14-rc.1 → 3.1.15-rc.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/lib/index.d.ts +15 -7
- package/lib/index.min.css +1 -1
- package/lib/index.min.js +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -445,7 +445,6 @@ declare module '@authing/react-ui-components/components/AuthingGuard/api/appConf
|
|
|
445
445
|
defaultISOType: string;
|
|
446
446
|
};
|
|
447
447
|
css: string;
|
|
448
|
-
customLoading?: string;
|
|
449
448
|
name: string;
|
|
450
449
|
logo: string;
|
|
451
450
|
description?: string;
|
|
@@ -2460,9 +2459,9 @@ declare module '@authing/react-ui-components/components/SendCode/SendCodeBtn' {
|
|
|
2460
2459
|
}
|
|
2461
2460
|
declare module '@authing/react-ui-components/components/SendCode/SendCodeByEmail' {
|
|
2462
2461
|
import { FC } from 'react';
|
|
2463
|
-
import { EmailScene } from 'authing-js-sdk';
|
|
2464
2462
|
import './style.less';
|
|
2465
2463
|
import { InputProps } from 'antd/lib/input';
|
|
2464
|
+
import { EmailScene } from '@authing/react-ui-components/components/Type/index';
|
|
2466
2465
|
export interface SendCodeByEmailProps extends InputProps {
|
|
2467
2466
|
data: string;
|
|
2468
2467
|
form?: any;
|
|
@@ -2532,7 +2531,6 @@ declare module '@authing/react-ui-components/components/SubmitButton/index' {
|
|
|
2532
2531
|
text?: string;
|
|
2533
2532
|
className?: string;
|
|
2534
2533
|
onClick?: any;
|
|
2535
|
-
disabled?: boolean;
|
|
2536
2534
|
}
|
|
2537
2535
|
const _default: React.ForwardRefExoticComponent<SubmitButtonProps & React.RefAttributes<unknown>>;
|
|
2538
2536
|
export default _default;
|
|
@@ -2627,6 +2625,19 @@ declare module '@authing/react-ui-components/components/Type/index' {
|
|
|
2627
2625
|
showChangeLanguage: boolean;
|
|
2628
2626
|
};
|
|
2629
2627
|
}
|
|
2628
|
+
export enum EmailScene {
|
|
2629
|
+
WELCOME_EMAIL = "WELCOME_EMAIL",
|
|
2630
|
+
FIRST_CREATED_USER = "FIRST_CREATED_USER",
|
|
2631
|
+
REGISTER_VERIFY_CODE = "REGISTER_VERIFY_CODE",
|
|
2632
|
+
LOGIN_VERIFY_CODE = "LOGIN_VERIFY_CODE",
|
|
2633
|
+
MFA_VERIFY_CODE = "MFA_VERIFY_CODE",
|
|
2634
|
+
INFORMATION_COMPLETION_VERIFY_CODE = "INFORMATION_COMPLETION_VERIFY_CODE",
|
|
2635
|
+
FIRST_EMAIL_LOGIN_VERIFY = "FIRST_EMAIL_LOGIN_VERIFY",
|
|
2636
|
+
CONSOLE_CONDUCTED_VERIFY = "CONSOLE_CONDUCTED_VERIFY",
|
|
2637
|
+
RESET_PASSWORD_VERIFY_CODE = "RESET_PASSWORD_VERIFY_CODE",
|
|
2638
|
+
EMAIL_BIND_VERIFY_CODE = "EMAIL_BIND_VERIFY_CODE",
|
|
2639
|
+
EMAIL_UNBIND_VERIFY_CODE = "EMAIL_UNBIND_VERIFY_CODE"
|
|
2640
|
+
}
|
|
2630
2641
|
|
|
2631
2642
|
}
|
|
2632
2643
|
declare module '@authing/react-ui-components/components/ValidatorRules/PasswordFormItem' {
|
|
@@ -2655,7 +2666,6 @@ declare module '@authing/react-ui-components/components/ValidatorRules/index' {
|
|
|
2655
2666
|
form?: FormInstance;
|
|
2656
2667
|
checkRepeat?: boolean;
|
|
2657
2668
|
areaCode?: string;
|
|
2658
|
-
isCheckI18nSms?: boolean;
|
|
2659
2669
|
}
|
|
2660
2670
|
export interface ValidatorFormItemMetaProps extends ValidatorFormItemProps {
|
|
2661
2671
|
form?: FormInstance;
|
|
@@ -3072,8 +3082,6 @@ declare module '@authing/react-ui-components/components/_utils/index' {
|
|
|
3072
3082
|
export const isXiaomiBrowser: () => boolean | null;
|
|
3073
3083
|
export const isDingtalkBrowser: () => boolean | null;
|
|
3074
3084
|
export const isQQBrowser: () => boolean | null;
|
|
3075
|
-
export const isQQBuiltInBrowser: () => boolean | null;
|
|
3076
|
-
export const isWeWorkBuiltInBrowser: () => boolean | null;
|
|
3077
3085
|
export const isSpecialBrowser: () => boolean | null;
|
|
3078
3086
|
export const assembledAppHost: (identifier: string, host: string) => string;
|
|
3079
3087
|
export const assembledRequestHost: (requestHostname: string, configHost: string) => string;
|
|
@@ -3281,7 +3289,7 @@ declare module '@authing/react-ui-components/components/version/index' {
|
|
|
3281
3289
|
|
|
3282
3290
|
}
|
|
3283
3291
|
declare module '@authing/react-ui-components/components/version/version' {
|
|
3284
|
-
const _default: "3.1.
|
|
3292
|
+
const _default: "3.1.15-rc.1";
|
|
3285
3293
|
export default _default;
|
|
3286
3294
|
|
|
3287
3295
|
}
|