@authing/react-ui-components 3.0.0-rc.15 → 3.0.0-rc.19
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 +23 -1287
- package/lib/index.min.css +1 -1
- package/lib/index.min.js +1 -1
- package/package.json +6 -5
package/lib/index.d.ts
CHANGED
|
@@ -410,6 +410,8 @@ declare module '@authing/react-ui-components/components/AuthingGuard/api/appConf
|
|
|
410
410
|
export type ComplateFiledsPlace = 'register' | 'login';
|
|
411
411
|
export interface ApplicationConfig {
|
|
412
412
|
id: string;
|
|
413
|
+
allowedOrigins: string[];
|
|
414
|
+
corsWhitelist: string[];
|
|
413
415
|
cdnBase: string;
|
|
414
416
|
userPoolId: string;
|
|
415
417
|
rootUserPoolId: string;
|
|
@@ -474,6 +476,7 @@ declare module '@authing/react-ui-components/components/AuthingGuard/api/appConf
|
|
|
474
476
|
passwordStrength: PasswordStrength;
|
|
475
477
|
verifyCodeLength: number;
|
|
476
478
|
websocket: string;
|
|
479
|
+
welcomeMessage: any;
|
|
477
480
|
}
|
|
478
481
|
export const fetchAppConfig: (appId: string) => Promise<import("@authing/react-ui-components/components/_utils/http").AuthingResponse<ApplicationConfig>>;
|
|
479
482
|
|
|
@@ -1918,6 +1921,7 @@ declare module '@authing/react-ui-components/components/Register/core/WithEmail'
|
|
|
1918
1921
|
onBeforeRegister?: Function;
|
|
1919
1922
|
publicConfig?: ApplicationConfig;
|
|
1920
1923
|
agreements: Agreement[];
|
|
1924
|
+
registeContext?: any;
|
|
1921
1925
|
}
|
|
1922
1926
|
export const RegisterWithEmail: React.FC<RegisterWithEmailProps>;
|
|
1923
1927
|
|
|
@@ -1929,6 +1933,7 @@ declare module '@authing/react-ui-components/components/Register/core/WithPhone'
|
|
|
1929
1933
|
onRegister: Function;
|
|
1930
1934
|
agreements: Agreement[];
|
|
1931
1935
|
publicConfig?: ApplicationConfig;
|
|
1936
|
+
registeContext?: any;
|
|
1932
1937
|
}
|
|
1933
1938
|
export const RegisterWithPhone: React.FC<RegisterWithPhoneProps>;
|
|
1934
1939
|
|
|
@@ -1951,6 +1956,7 @@ declare module '@authing/react-ui-components/components/Register/interface' {
|
|
|
1951
1956
|
publicKey?: string;
|
|
1952
1957
|
agreementEnabled?: boolean;
|
|
1953
1958
|
agreements?: Agreement[];
|
|
1959
|
+
registeContext?: any;
|
|
1954
1960
|
}
|
|
1955
1961
|
export interface RegisterEvents extends IG2Events {
|
|
1956
1962
|
onBeforeRegister?: (registerInfo: EmailRegisterParams | PhoneRegisterParams, authClient: AuthenticationClient) => boolean | Promise<boolean>;
|
|
@@ -2004,6 +2010,18 @@ declare module '@authing/react-ui-components/components/ShieldSpin/index' {
|
|
|
2004
2010
|
export const Spin: () => JSX.Element;
|
|
2005
2011
|
export {};
|
|
2006
2012
|
|
|
2013
|
+
}
|
|
2014
|
+
declare module '@authing/react-ui-components/components/SingleComponent/SingleComponent' {
|
|
2015
|
+
import React from 'react';
|
|
2016
|
+
import { IG2FCProps } from '@authing/react-ui-components/components/index';
|
|
2017
|
+
export function SingleComponent<T extends IG2FCProps>(props: T, Component: React.FC<any>): JSX.Element;
|
|
2018
|
+
|
|
2019
|
+
}
|
|
2020
|
+
declare module '@authing/react-ui-components/components/SingleComponent/index' {
|
|
2021
|
+
import React from 'react';
|
|
2022
|
+
import { GuardRegisterProps } from '@authing/react-ui-components/components/Register/interface';
|
|
2023
|
+
export const Register: React.FC<GuardRegisterProps>;
|
|
2024
|
+
|
|
2007
2025
|
}
|
|
2008
2026
|
declare module '@authing/react-ui-components/components/SubmitButton/index' {
|
|
2009
2027
|
import React from 'react';
|
|
@@ -2175,6 +2193,10 @@ declare module '@authing/react-ui-components/components/_utils/context' {
|
|
|
2175
2193
|
};
|
|
2176
2194
|
export const usePublicConfig: () => ApplicationConfig | undefined;
|
|
2177
2195
|
|
|
2196
|
+
}
|
|
2197
|
+
declare module '@authing/react-ui-components/components/_utils/corsVerification' {
|
|
2198
|
+
export const corsVerification: (allowedOrigins?: string[], corsWhitelist?: string[]) => void;
|
|
2199
|
+
|
|
2178
2200
|
}
|
|
2179
2201
|
declare module '@authing/react-ui-components/components/_utils/errorFace' {
|
|
2180
2202
|
enum FaceErrorName {
|
|
@@ -2438,7 +2460,7 @@ declare module '@authing/react-ui-components/components/version/index' {
|
|
|
2438
2460
|
|
|
2439
2461
|
}
|
|
2440
2462
|
declare module '@authing/react-ui-components/components/version/version' {
|
|
2441
|
-
const _default: "3.0.0-rc.
|
|
2463
|
+
const _default: "3.0.0-rc.19";
|
|
2442
2464
|
export default _default;
|
|
2443
2465
|
|
|
2444
2466
|
}
|
|
@@ -2805,1292 +2827,6 @@ declare module '@authing/react-ui-components/config/webpackDevServer.config' {
|
|
|
2805
2827
|
};
|
|
2806
2828
|
export = _exports;
|
|
2807
2829
|
|
|
2808
|
-
}
|
|
2809
|
-
declare module '@authing/react-ui-components/es/AuthingDropdown/index' {
|
|
2810
|
-
export function AuthingDropdown(_ref: any): React.DetailedReactHTMLElement<{
|
|
2811
|
-
className: string;
|
|
2812
|
-
onMouseEnter: () => any;
|
|
2813
|
-
onMouseLeave: () => any;
|
|
2814
|
-
}, HTMLElement>;
|
|
2815
|
-
import React from "react";
|
|
2816
|
-
|
|
2817
|
-
}
|
|
2818
|
-
declare module '@authing/react-ui-components/es/AuthingDropdown/style/css' {
|
|
2819
|
-
export {};
|
|
2820
|
-
|
|
2821
|
-
}
|
|
2822
|
-
declare module '@authing/react-ui-components/es/AuthingDropdown/style/index' {
|
|
2823
|
-
export {};
|
|
2824
|
-
|
|
2825
|
-
}
|
|
2826
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/AppMFALayout/index' {
|
|
2827
|
-
export function AppMfaLayout(): React.DetailedReactHTMLElement<{
|
|
2828
|
-
className: string;
|
|
2829
|
-
}, HTMLElement>;
|
|
2830
|
-
import React from "react";
|
|
2831
|
-
|
|
2832
|
-
}
|
|
2833
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/CompleteUserInfoLayout/index' {
|
|
2834
|
-
export function CompleteUserInfoLayout(): React.DetailedReactHTMLElement<React.HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
2835
|
-
import React from "react";
|
|
2836
|
-
|
|
2837
|
-
}
|
|
2838
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/Forms/ADLoginForm/index' {
|
|
2839
|
-
export var ADLoginForm: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
|
|
2840
|
-
import React from "react";
|
|
2841
|
-
|
|
2842
|
-
}
|
|
2843
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/Forms/Agreements/index' {
|
|
2844
|
-
export function Agreements(_ref: any): React.DetailedReactHTMLElement<{
|
|
2845
|
-
className: string;
|
|
2846
|
-
}, HTMLElement>;
|
|
2847
|
-
import React from "react";
|
|
2848
|
-
|
|
2849
|
-
}
|
|
2850
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/Forms/CompleteUserInfoForm/index' {
|
|
2851
|
-
export function CompleteUserInfoForm(_ref: any): React.CElement<import("antd/lib/spin").SpinProps, _Spin>;
|
|
2852
|
-
import _Spin from "antd/lib/spin";
|
|
2853
|
-
import React from "react";
|
|
2854
|
-
|
|
2855
|
-
}
|
|
2856
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/Forms/EmailMfaVerifyForm/CheckEmailForm' {
|
|
2857
|
-
export function CheckEmailForm(_ref: any): React.FunctionComponentElement<{}>;
|
|
2858
|
-
import React from "react";
|
|
2859
|
-
|
|
2860
|
-
}
|
|
2861
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/Forms/EmailMfaVerifyForm/VerifyCodeForm' {
|
|
2862
|
-
export function VerifyCodeForm(_ref: any): React.FunctionComponentElement<{}>;
|
|
2863
|
-
import React from "react";
|
|
2864
|
-
|
|
2865
|
-
}
|
|
2866
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/Forms/EmailMfaVerifyForm/index' {
|
|
2867
|
-
export function EmailMfaVerifyForm(_ref: any): React.FunctionComponentElement<{}>;
|
|
2868
|
-
import React from "react";
|
|
2869
|
-
|
|
2870
|
-
}
|
|
2871
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/Forms/EmailRegisterForm/index' {
|
|
2872
|
-
export var EmailRegisterForm: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
|
|
2873
|
-
import React from "react";
|
|
2874
|
-
|
|
2875
|
-
}
|
|
2876
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/Forms/LdapLoginForm/index' {
|
|
2877
|
-
export var LdapLoginForm: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
|
|
2878
|
-
import React from "react";
|
|
2879
|
-
|
|
2880
|
-
}
|
|
2881
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/Forms/LoginFormFooter/index' {
|
|
2882
|
-
export function LoginFormFooter(_ref: any): React.FunctionComponentElement<{}>;
|
|
2883
|
-
import React from "react";
|
|
2884
|
-
|
|
2885
|
-
}
|
|
2886
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/Forms/MfaResetCodeForm/Step1' {
|
|
2887
|
-
export function MfaResetStep1(_ref: any): React.FunctionComponentElement<import("antd/lib/form").FormProps<unknown> & {
|
|
2888
|
-
ref?: ((instance: import("antd/lib/form").FormInstance<unknown> | null) => void) | React.RefObject<import("antd/lib/form").FormInstance<unknown>> | null | undefined;
|
|
2889
|
-
}>;
|
|
2890
|
-
import React from "react";
|
|
2891
|
-
|
|
2892
|
-
}
|
|
2893
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/Forms/MfaResetCodeForm/Step2' {
|
|
2894
|
-
export function MfaResetStep2(_ref: any): React.FunctionComponentElement<import("antd/lib/form").FormProps<unknown> & {
|
|
2895
|
-
ref?: ((instance: import("antd/lib/form").FormInstance<unknown> | null) => void) | React.RefObject<import("antd/lib/form").FormInstance<unknown>> | null | undefined;
|
|
2896
|
-
}>;
|
|
2897
|
-
import React from "react";
|
|
2898
|
-
|
|
2899
|
-
}
|
|
2900
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/Forms/MfaResetCodeForm/index' {
|
|
2901
|
-
export function MfaResetCodeForm(_ref: any): React.FunctionComponentElement<{}>;
|
|
2902
|
-
import React from "react";
|
|
2903
|
-
|
|
2904
|
-
}
|
|
2905
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/Forms/MfaVerifyForm/index' {
|
|
2906
|
-
export function MFAVerifyForm(_ref: any): React.FunctionComponentElement<{}>;
|
|
2907
|
-
import React from "react";
|
|
2908
|
-
|
|
2909
|
-
}
|
|
2910
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/Forms/PasswordLoginForm/index' {
|
|
2911
|
-
export var PasswordLoginForm: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
|
|
2912
|
-
import React from "react";
|
|
2913
|
-
|
|
2914
|
-
}
|
|
2915
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/Forms/PhoneCodeLoginForm/index' {
|
|
2916
|
-
export var PhoneCodeLoginForm: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
|
|
2917
|
-
import React from "react";
|
|
2918
|
-
|
|
2919
|
-
}
|
|
2920
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/Forms/PhoneRegisterForm/index' {
|
|
2921
|
-
export var PhoneRegisterForm: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
|
|
2922
|
-
import React from "react";
|
|
2923
|
-
|
|
2924
|
-
}
|
|
2925
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/Forms/QrCodeLoginForm/index' {
|
|
2926
|
-
export function QrCodeLoginForm(_ref: any): React.DetailedReactHTMLElement<{
|
|
2927
|
-
className: string;
|
|
2928
|
-
}, HTMLElement>;
|
|
2929
|
-
import React from "react";
|
|
2930
|
-
|
|
2931
|
-
}
|
|
2932
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/Forms/RegisterFormFooter/index' {
|
|
2933
|
-
export function RegisterFormFooter(_ref: any): React.FunctionComponentElement<{}>;
|
|
2934
|
-
import React from "react";
|
|
2935
|
-
|
|
2936
|
-
}
|
|
2937
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/Forms/ResetPwdForm/Footer' {
|
|
2938
|
-
export function ResetPwdFormFooter(): React.FunctionComponentElement<Partial<{
|
|
2939
|
-
href: string;
|
|
2940
|
-
target?: string | undefined;
|
|
2941
|
-
onClick?: ((event: React.MouseEvent<HTMLElement, MouseEvent>) => void) | undefined;
|
|
2942
|
-
} & import("antd/lib/button/button").BaseButtonProps & Pick<React.AnchorHTMLAttributes<any>, "onLoad" | "children" | "lang" | "slot" | "style" | "title" | "dir" | "onChange" | "onBlur" | "id" | "target" | "download" | "href" | "hrefLang" | "media" | "ping" | "rel" | "referrerPolicy" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture"> & {
|
|
2943
|
-
htmlType?: "button" | "submit" | "reset" | undefined;
|
|
2944
|
-
onClick?: ((event: React.MouseEvent<HTMLElement, MouseEvent>) => void) | undefined;
|
|
2945
|
-
} & Pick<React.ButtonHTMLAttributes<any>, "onLoad" | "value" | "children" | "lang" | "form" | "slot" | "style" | "title" | "dir" | "onChange" | "onBlur" | "id" | "name" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget">> & React.RefAttributes<HTMLElement>>;
|
|
2946
|
-
import React from "react";
|
|
2947
|
-
|
|
2948
|
-
}
|
|
2949
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/Forms/ResetPwdForm/Step1' {
|
|
2950
|
-
export function ResetPasswordStep1(_ref: any): React.FunctionComponentElement<import("antd/lib/form").FormProps<unknown> & {
|
|
2951
|
-
ref?: ((instance: import("antd/lib/form").FormInstance<unknown> | null) => void) | React.RefObject<import("antd/lib/form").FormInstance<unknown>> | null | undefined;
|
|
2952
|
-
}>;
|
|
2953
|
-
import React from "react";
|
|
2954
|
-
|
|
2955
|
-
}
|
|
2956
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/Forms/ResetPwdForm/Step2' {
|
|
2957
|
-
export function ResetPasswordStep2(_ref: any): React.FunctionComponentElement<import("antd/lib/form").FormProps<unknown> & {
|
|
2958
|
-
ref?: ((instance: import("antd/lib/form").FormInstance<unknown> | null) => void) | React.RefObject<import("antd/lib/form").FormInstance<unknown>> | null | undefined;
|
|
2959
|
-
}>;
|
|
2960
|
-
import React from "react";
|
|
2961
|
-
|
|
2962
|
-
}
|
|
2963
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/Forms/ResetPwdForm/Step3' {
|
|
2964
|
-
export function ResetPasswordStep3(_ref: any): React.FunctionComponentElement<{}>;
|
|
2965
|
-
import React from "react";
|
|
2966
|
-
|
|
2967
|
-
}
|
|
2968
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/Forms/ResetPwdForm/Step4' {
|
|
2969
|
-
export function ResetPasswordStep4(): React.DetailedReactHTMLElement<{
|
|
2970
|
-
style: {
|
|
2971
|
-
textAlign: "center";
|
|
2972
|
-
};
|
|
2973
|
-
}, HTMLElement>;
|
|
2974
|
-
import React from "react";
|
|
2975
|
-
|
|
2976
|
-
}
|
|
2977
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/Forms/ResetPwdForm/index' {
|
|
2978
|
-
export function ResetPasswordForm(_ref: any): React.DetailedReactHTMLElement<React.HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
2979
|
-
import React from "react";
|
|
2980
|
-
|
|
2981
|
-
}
|
|
2982
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/Forms/SendPhoneCode/SendCodeBtn' {
|
|
2983
|
-
export function SendCodeBtn(_ref: any): React.ReactElement<{
|
|
2984
|
-
type: string;
|
|
2985
|
-
className: string;
|
|
2986
|
-
disabled: any;
|
|
2987
|
-
onClick: (_x: any, ...args: any[]) => any;
|
|
2988
|
-
ref: any;
|
|
2989
|
-
}, string | ((props: any) => React.ReactElement<any, string | any | (new (props: any) => React.Component<any, any, any>)> | null) | (new (props: any) => React.Component<any, any, any>)>;
|
|
2990
|
-
import React from "react";
|
|
2991
|
-
|
|
2992
|
-
}
|
|
2993
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/Forms/SendPhoneCode/index' {
|
|
2994
|
-
export function SendPhoneCode(_ref: any): React.FunctionComponentElement<import("@authing/react-ui-components/es/AuthingGuard/Forms/SendPhoneCode/SendCodeBtn").SendCodeProps>;
|
|
2995
|
-
import React from "react";
|
|
2996
|
-
|
|
2997
|
-
}
|
|
2998
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/Forms/SmsMfaVerifyForm/CheckPhoneForm' {
|
|
2999
|
-
export function CheckPhoneForm(_ref: any): React.FunctionComponentElement<{}>;
|
|
3000
|
-
import React from "react";
|
|
3001
|
-
|
|
3002
|
-
}
|
|
3003
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/Forms/SmsMfaVerifyForm/VerifyCodeForm' {
|
|
3004
|
-
export function VerifyCodeForm(_ref: any): React.FunctionComponentElement<{}>;
|
|
3005
|
-
import React from "react";
|
|
3006
|
-
|
|
3007
|
-
}
|
|
3008
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/Forms/SmsMfaVerifyForm/index' {
|
|
3009
|
-
export function SmsMfaVerifyForm(_ref: any): React.FunctionComponentElement<{}>;
|
|
3010
|
-
import React from "react";
|
|
3011
|
-
|
|
3012
|
-
}
|
|
3013
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/Forms/SocialAndIdpLogin/index' {
|
|
3014
|
-
export function SocialAndIdpLogin(_ref: any): React.FunctionComponentElement<{}>;
|
|
3015
|
-
import React from "react";
|
|
3016
|
-
|
|
3017
|
-
}
|
|
3018
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/Forms/UploadImage/index' {
|
|
3019
|
-
export function UploadImage(_ref: any): React.FunctionComponentElement<import("antd/lib/upload").UploadProps<any> & {
|
|
3020
|
-
children?: React.ReactNode;
|
|
3021
|
-
} & React.RefAttributes<any>>;
|
|
3022
|
-
import React from "react";
|
|
3023
|
-
|
|
3024
|
-
}
|
|
3025
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/Forms/index' {
|
|
3026
|
-
export * from "@authing/react-ui-components/es/AuthingGuard/Forms/ADLoginForm/index";
|
|
3027
|
-
export * from "@authing/react-ui-components/es/AuthingGuard/Forms/ResetPwdForm/index";
|
|
3028
|
-
export * from "@authing/react-ui-components/es/AuthingGuard/Forms/MfaVerifyForm/index";
|
|
3029
|
-
export * from "@authing/react-ui-components/es/AuthingGuard/Forms/LdapLoginForm/index";
|
|
3030
|
-
export * from "@authing/react-ui-components/es/AuthingGuard/Forms/QrCodeLoginForm/index";
|
|
3031
|
-
export * from "@authing/react-ui-components/es/AuthingGuard/Forms/MfaResetCodeForm/index";
|
|
3032
|
-
export * from "@authing/react-ui-components/es/AuthingGuard/Forms/EmailRegisterForm/index";
|
|
3033
|
-
export * from "@authing/react-ui-components/es/AuthingGuard/Forms/PhoneRegisterForm/index";
|
|
3034
|
-
export * from "@authing/react-ui-components/es/AuthingGuard/Forms/PasswordLoginForm/index";
|
|
3035
|
-
export * from "@authing/react-ui-components/es/AuthingGuard/Forms/SocialAndIdpLogin/index";
|
|
3036
|
-
export * from "@authing/react-ui-components/es/AuthingGuard/Forms/PhoneCodeLoginForm/index";
|
|
3037
|
-
export * from "@authing/react-ui-components/es/AuthingGuard/Forms/SmsMfaVerifyForm/index";
|
|
3038
|
-
export * from "@authing/react-ui-components/es/AuthingGuard/Forms/EmailMfaVerifyForm/index";
|
|
3039
|
-
|
|
3040
|
-
}
|
|
3041
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/GuardLayout/index' {
|
|
3042
|
-
export function GuardLayout(_ref4: any): React.DOMElement<{
|
|
3043
|
-
id: any;
|
|
3044
|
-
style: any;
|
|
3045
|
-
className: string;
|
|
3046
|
-
onTransitionEnd: () => void;
|
|
3047
|
-
}, Element>;
|
|
3048
|
-
import React from "react";
|
|
3049
|
-
|
|
3050
|
-
}
|
|
3051
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/Header/index' {
|
|
3052
|
-
export function GuardHeader(props: any): React.DetailedReactHTMLElement<{
|
|
3053
|
-
className: string;
|
|
3054
|
-
}, HTMLElement>;
|
|
3055
|
-
import React from "react";
|
|
3056
|
-
|
|
3057
|
-
}
|
|
3058
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/IconFont/iconfont' {
|
|
3059
|
-
export {};
|
|
3060
|
-
|
|
3061
|
-
}
|
|
3062
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/IconFont/index' {
|
|
3063
|
-
export function IconFont(_ref: any): React.ReactSVGElement;
|
|
3064
|
-
import React from "react";
|
|
3065
|
-
|
|
3066
|
-
}
|
|
3067
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/IconFont/svg' {
|
|
3068
|
-
export var svgStr: string;
|
|
3069
|
-
|
|
3070
|
-
}
|
|
3071
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/LoginLayout/index' {
|
|
3072
|
-
export function LoginLayout(): React.FunctionComponentElement<{}>;
|
|
3073
|
-
import React from "react";
|
|
3074
|
-
|
|
3075
|
-
}
|
|
3076
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/MfaLayout/Steps' {
|
|
3077
|
-
export var Steps: any;
|
|
3078
|
-
|
|
3079
|
-
}
|
|
3080
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/MfaLayout/index' {
|
|
3081
|
-
export function MfaLayout(): React.DetailedReactHTMLElement<React.HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
3082
|
-
import React from "react";
|
|
3083
|
-
|
|
3084
|
-
}
|
|
3085
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/RegisterLayout/index' {
|
|
3086
|
-
export function RegisterLayout(): React.FunctionComponentElement<import("@authing/react-ui-components/es/AuthingTabs/index").AuthingTabsProps>;
|
|
3087
|
-
import React from "react";
|
|
3088
|
-
|
|
3089
|
-
}
|
|
3090
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/ResetPwdLayout/index' {
|
|
3091
|
-
export function ResetPwdLayout(): React.FunctionComponentElement<import("@authing/react-ui-components/components/index").ResetPasswordFormProps>;
|
|
3092
|
-
import React from "react";
|
|
3093
|
-
|
|
3094
|
-
}
|
|
3095
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/ToggleLang/index' {
|
|
3096
|
-
export function ToggleLang(): React.FunctionComponentElement<import("antd/lib/dropdown").DropDownProps>;
|
|
3097
|
-
import React from "react";
|
|
3098
|
-
|
|
3099
|
-
}
|
|
3100
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/api/appConfig' {
|
|
3101
|
-
export var ApplicationMfaType: any;
|
|
3102
|
-
export function ApplicationMfaTypeLabel(): {};
|
|
3103
|
-
export function fetchAppConfig(appId: any): Promise<import("@authing/react-ui-components/es/_utils/http").AuthingResponse<any>>;
|
|
3104
|
-
|
|
3105
|
-
}
|
|
3106
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/api/index' {
|
|
3107
|
-
export * from "@authing/react-ui-components/es/AuthingGuard/api/sso";
|
|
3108
|
-
export * from "@authing/react-ui-components/es/AuthingGuard/api/appConfig";
|
|
3109
|
-
export * from "@authing/react-ui-components/es/AuthingGuard/api/userPoolConfig";
|
|
3110
|
-
|
|
3111
|
-
}
|
|
3112
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/api/sso' {
|
|
3113
|
-
export function trackSession(): Promise<import("@authing/react-ui-components/es/_utils/http").AuthingResponse<any>>;
|
|
3114
|
-
|
|
3115
|
-
}
|
|
3116
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/api/userPoolConfig' {
|
|
3117
|
-
export var OIDCConnectionMode: any;
|
|
3118
|
-
|
|
3119
|
-
}
|
|
3120
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/constants' {
|
|
3121
|
-
export var OTP_MFA_CODE: number;
|
|
3122
|
-
export var APP_MFA_CODE: number;
|
|
3123
|
-
export var NEED_CAPTCHA: number;
|
|
3124
|
-
export function LOGIN_METHODS_MAP(): {};
|
|
3125
|
-
export function REGISTER_METHODS_MAP(): {};
|
|
3126
|
-
export var HIDE_SOCIALS: string[];
|
|
3127
|
-
export var ApplicationMfaType: any;
|
|
3128
|
-
export namespace defaultGuardConfig {
|
|
3129
|
-
const isSSO: boolean;
|
|
3130
|
-
const title: string;
|
|
3131
|
-
namespace text {
|
|
3132
|
-
const loginTabs: {};
|
|
3133
|
-
namespace loginBtn {
|
|
3134
|
-
const normal: string;
|
|
3135
|
-
const loading: string;
|
|
3136
|
-
}
|
|
3137
|
-
namespace registerBtn {
|
|
3138
|
-
const normal_1: string;
|
|
3139
|
-
export { normal_1 as normal };
|
|
3140
|
-
const loading_1: string;
|
|
3141
|
-
export { loading_1 as loading };
|
|
3142
|
-
}
|
|
3143
|
-
}
|
|
3144
|
-
const escCloseable: boolean;
|
|
3145
|
-
const autoRegister: boolean;
|
|
3146
|
-
const clickCloseable: boolean;
|
|
3147
|
-
const mode: GuardMode;
|
|
3148
|
-
const disableRegister: boolean;
|
|
3149
|
-
const disableResetPwd: boolean;
|
|
3150
|
-
const defaultScenes: GuardScenes;
|
|
3151
|
-
const appHost: string;
|
|
3152
|
-
const defaultLoginMethod: LoginMethods;
|
|
3153
|
-
const defaultRegisterMethod: RegisterMethods;
|
|
3154
|
-
const loginMethods: LoginMethods[];
|
|
3155
|
-
const registerMethods: RegisterMethods[];
|
|
3156
|
-
const logo: string;
|
|
3157
|
-
const passwordLoginMethods: string[];
|
|
3158
|
-
}
|
|
3159
|
-
export namespace defaultLocalesConfig {
|
|
3160
|
-
const defaultLang: string;
|
|
3161
|
-
const isShowChange: boolean;
|
|
3162
|
-
}
|
|
3163
|
-
export var defaultHeaders: {
|
|
3164
|
-
'userpool-id': string;
|
|
3165
|
-
'app-id': string;
|
|
3166
|
-
'tenant-id': string;
|
|
3167
|
-
'request-from': string;
|
|
3168
|
-
'sdk-version': string;
|
|
3169
|
-
lang: string;
|
|
3170
|
-
};
|
|
3171
|
-
import { GuardMode } from "@authing/react-ui-components/components/AuthingGuard/types/GuardConfig";
|
|
3172
|
-
import { GuardScenes } from "@authing/react-ui-components/components/AuthingGuard/types/GuardConfig";
|
|
3173
|
-
import { LoginMethods } from "@authing/react-ui-components/components/AuthingGuard/types/GuardConfig";
|
|
3174
|
-
import { RegisterMethods } from "@authing/react-ui-components/components/AuthingGuard/types/GuardConfig";
|
|
3175
|
-
|
|
3176
|
-
}
|
|
3177
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/hooks/index' {
|
|
3178
|
-
export function initAuthClient(config: any): any;
|
|
3179
|
-
export function useAuthing(config: any): {
|
|
3180
|
-
authClient: any;
|
|
3181
|
-
};
|
|
3182
|
-
export function getAuthClient(config: any): any;
|
|
3183
|
-
|
|
3184
|
-
}
|
|
3185
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/hooks/useScreenSize' {
|
|
3186
|
-
export var ScreenSize: any;
|
|
3187
|
-
export var SCREEN_SIZE_RANG: {
|
|
3188
|
-
size: any;
|
|
3189
|
-
range: number[];
|
|
3190
|
-
}[];
|
|
3191
|
-
export function getScreenSize(): any;
|
|
3192
|
-
export function useScreenSize(): any[];
|
|
3193
|
-
|
|
3194
|
-
}
|
|
3195
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/index' {
|
|
3196
|
-
export function AuthingGuard(_ref: any): React.FunctionComponentElement<import("antd/lib/config-provider").ConfigProviderProps>;
|
|
3197
|
-
import React from "react";
|
|
3198
|
-
|
|
3199
|
-
}
|
|
3200
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/style/css' {
|
|
3201
|
-
export {};
|
|
3202
|
-
|
|
3203
|
-
}
|
|
3204
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/style/index' {
|
|
3205
|
-
export {};
|
|
3206
|
-
|
|
3207
|
-
}
|
|
3208
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/types/Forms' {
|
|
3209
|
-
export {};
|
|
3210
|
-
|
|
3211
|
-
}
|
|
3212
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/types/GuardConfig' {
|
|
3213
|
-
export var GuardMode: any;
|
|
3214
|
-
export var LoginMethods: any;
|
|
3215
|
-
export var RegisterMethods: any;
|
|
3216
|
-
export var GuardScenes: any;
|
|
3217
|
-
export var ResetPwdMethods: any;
|
|
3218
|
-
export var SocialConnections: any;
|
|
3219
|
-
export var Protocol: any;
|
|
3220
|
-
export namespace GuardEventsCamelToKebabMap {
|
|
3221
|
-
const onLoad: string;
|
|
3222
|
-
const onLoadError: string;
|
|
3223
|
-
const onLogin: string;
|
|
3224
|
-
const onBeforeLogin: string;
|
|
3225
|
-
const onLoginError: string;
|
|
3226
|
-
const onRegister: string;
|
|
3227
|
-
const onBeforeRegister: string;
|
|
3228
|
-
const onRegisterError: string;
|
|
3229
|
-
const onPwdEmailSend: string;
|
|
3230
|
-
const onPwdEmailSendError: string;
|
|
3231
|
-
const onPwdPhoneSend: string;
|
|
3232
|
-
const onPwdPhoneSendError: string;
|
|
3233
|
-
const onPwdReset: string;
|
|
3234
|
-
const onPwdResetError: string;
|
|
3235
|
-
const onClose: string;
|
|
3236
|
-
const onLoginTabChange: string;
|
|
3237
|
-
const onRegisterTabChange: string;
|
|
3238
|
-
const onRegisterInfoCompleted: string;
|
|
3239
|
-
const onRegisterInfoCompletedError: string;
|
|
3240
|
-
}
|
|
3241
|
-
|
|
3242
|
-
}
|
|
3243
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/types/GuardState' {
|
|
3244
|
-
export {};
|
|
3245
|
-
|
|
3246
|
-
}
|
|
3247
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/types/Locales' {
|
|
3248
|
-
export var LANG_MAP: {
|
|
3249
|
-
label: string;
|
|
3250
|
-
value: string;
|
|
3251
|
-
}[];
|
|
3252
|
-
|
|
3253
|
-
}
|
|
3254
|
-
declare module '@authing/react-ui-components/es/AuthingGuard/types/index' {
|
|
3255
|
-
export * from "@authing/react-ui-components/es/AuthingGuard/types/Forms";
|
|
3256
|
-
export * from "@authing/react-ui-components/es/AuthingGuard/types/GuardState";
|
|
3257
|
-
export * from "@authing/react-ui-components/es/AuthingGuard/types/GuardConfig";
|
|
3258
|
-
export * from "@authing/react-ui-components/es/AuthingGuard/types/Locales";
|
|
3259
|
-
|
|
3260
|
-
}
|
|
3261
|
-
declare module '@authing/react-ui-components/es/AuthingTabs/index' {
|
|
3262
|
-
export function AuthingTabs(_ref: any): React.FunctionComponentElement<{}>;
|
|
3263
|
-
import React from "react";
|
|
3264
|
-
|
|
3265
|
-
}
|
|
3266
|
-
declare module '@authing/react-ui-components/es/AuthingTabs/style/css' {
|
|
3267
|
-
export {};
|
|
3268
|
-
|
|
3269
|
-
}
|
|
3270
|
-
declare module '@authing/react-ui-components/es/AuthingTabs/style/index' {
|
|
3271
|
-
export {};
|
|
3272
|
-
|
|
3273
|
-
}
|
|
3274
|
-
declare module '@authing/react-ui-components/es/BindTotp/core/bindSuccess' {
|
|
3275
|
-
export function BindSuccess(_ref: any): React.FunctionComponentElement<{}>;
|
|
3276
|
-
import React from "react";
|
|
3277
|
-
|
|
3278
|
-
}
|
|
3279
|
-
declare module '@authing/react-ui-components/es/BindTotp/core/securityCode' {
|
|
3280
|
-
export function SecurityCode(_ref: any): React.FunctionComponentElement<{}>;
|
|
3281
|
-
import React from "react";
|
|
3282
|
-
|
|
3283
|
-
}
|
|
3284
|
-
declare module '@authing/react-ui-components/es/BindTotp/index' {
|
|
3285
|
-
export function GuardBindTotpView(_ref: any): React.FunctionComponentElement<{}>;
|
|
3286
|
-
import React from "react";
|
|
3287
|
-
|
|
3288
|
-
}
|
|
3289
|
-
declare module '@authing/react-ui-components/es/BindTotp/interface' {
|
|
3290
|
-
export function getDefaultMFAConfig(): any;
|
|
3291
|
-
|
|
3292
|
-
}
|
|
3293
|
-
declare module '@authing/react-ui-components/es/BindTotp/style/css' {
|
|
3294
|
-
export {};
|
|
3295
|
-
|
|
3296
|
-
}
|
|
3297
|
-
declare module '@authing/react-ui-components/es/BindTotp/style/index' {
|
|
3298
|
-
export {};
|
|
3299
|
-
|
|
3300
|
-
}
|
|
3301
|
-
declare module '@authing/react-ui-components/es/ChangeLanguage/index' {
|
|
3302
|
-
export function ChangeLanguage(props: any): React.FunctionComponentElement<{}> | React.DetailedReactHTMLElement<{
|
|
3303
|
-
className: string;
|
|
3304
|
-
}, HTMLElement>;
|
|
3305
|
-
import React from "react";
|
|
3306
|
-
|
|
3307
|
-
}
|
|
3308
|
-
declare module '@authing/react-ui-components/es/ChangePassword/core/firstLoginReset' {
|
|
3309
|
-
export function FirstLoginReset(props: any): React.DetailedReactHTMLElement<{
|
|
3310
|
-
className: string;
|
|
3311
|
-
}, HTMLElement>;
|
|
3312
|
-
import React from "react";
|
|
3313
|
-
|
|
3314
|
-
}
|
|
3315
|
-
declare module '@authing/react-ui-components/es/ChangePassword/core/rotateReset' {
|
|
3316
|
-
export function RotateReset(props: any): React.DetailedReactHTMLElement<{
|
|
3317
|
-
className: string;
|
|
3318
|
-
}, HTMLElement>;
|
|
3319
|
-
import React from "react";
|
|
3320
|
-
|
|
3321
|
-
}
|
|
3322
|
-
declare module '@authing/react-ui-components/es/ChangePassword/index' {
|
|
3323
|
-
export function GuardChangePassword(props: any): React.DetailedReactHTMLElement<{
|
|
3324
|
-
className: string;
|
|
3325
|
-
}, HTMLElement>;
|
|
3326
|
-
import React from "react";
|
|
3327
|
-
|
|
3328
|
-
}
|
|
3329
|
-
declare module '@authing/react-ui-components/es/CompleteInfo/core/completeInfo' {
|
|
3330
|
-
export function CompleteInfo(props: any): React.FunctionComponentElement<import("antd/lib/form").FormProps<unknown> & {
|
|
3331
|
-
ref?: ((instance: import("antd/lib/form").FormInstance<unknown> | null) => void) | React.RefObject<import("antd/lib/form").FormInstance<unknown>> | null | undefined;
|
|
3332
|
-
}>;
|
|
3333
|
-
import React from "react";
|
|
3334
|
-
|
|
3335
|
-
}
|
|
3336
|
-
declare module '@authing/react-ui-components/es/CompleteInfo/index' {
|
|
3337
|
-
export function GuardCompleteInfoView(_ref: any): React.DetailedReactHTMLElement<{
|
|
3338
|
-
className: string;
|
|
3339
|
-
}, HTMLElement>;
|
|
3340
|
-
import React from "react";
|
|
3341
|
-
|
|
3342
|
-
}
|
|
3343
|
-
declare module '@authing/react-ui-components/es/CompleteInfo/interface' {
|
|
3344
|
-
export function getDefaultCompleteInfoConfig(): any;
|
|
3345
|
-
|
|
3346
|
-
}
|
|
3347
|
-
declare module '@authing/react-ui-components/es/CompleteInfo/style/css' {
|
|
3348
|
-
export {};
|
|
3349
|
-
|
|
3350
|
-
}
|
|
3351
|
-
declare module '@authing/react-ui-components/es/CompleteInfo/style/index' {
|
|
3352
|
-
export {};
|
|
3353
|
-
|
|
3354
|
-
}
|
|
3355
|
-
declare module '@authing/react-ui-components/es/CompleteInfo/utils' {
|
|
3356
|
-
export function completeFieldsFilter(user: any, field: any): boolean;
|
|
3357
|
-
|
|
3358
|
-
}
|
|
3359
|
-
declare module '@authing/react-ui-components/es/CopyAbleText/index' {
|
|
3360
|
-
export function CopyAbleText(_ref: any): React.DetailedReactHTMLElement<{
|
|
3361
|
-
className: string;
|
|
3362
|
-
ref: React.MutableRefObject<null>;
|
|
3363
|
-
}, HTMLElement>;
|
|
3364
|
-
import React from "react";
|
|
3365
|
-
|
|
3366
|
-
}
|
|
3367
|
-
declare module '@authing/react-ui-components/es/CopyAbleText/style/css' {
|
|
3368
|
-
export {};
|
|
3369
|
-
|
|
3370
|
-
}
|
|
3371
|
-
declare module '@authing/react-ui-components/es/CopyAbleText/style/index' {
|
|
3372
|
-
export {};
|
|
3373
|
-
|
|
3374
|
-
}
|
|
3375
|
-
declare module '@authing/react-ui-components/es/DownloadAuthenticator/index' {
|
|
3376
|
-
export function GuardDownloadATView(_ref: any): React.DetailedReactHTMLElement<{
|
|
3377
|
-
className: string;
|
|
3378
|
-
}, HTMLElement>;
|
|
3379
|
-
import React from "react";
|
|
3380
|
-
|
|
3381
|
-
}
|
|
3382
|
-
declare module '@authing/react-ui-components/es/DownloadAuthenticator/interface' {
|
|
3383
|
-
export function getDefaultDownloadAuthenticatorConfig(): any;
|
|
3384
|
-
|
|
3385
|
-
}
|
|
3386
|
-
declare module '@authing/react-ui-components/es/DownloadAuthenticator/style/css' {
|
|
3387
|
-
export {};
|
|
3388
|
-
|
|
3389
|
-
}
|
|
3390
|
-
declare module '@authing/react-ui-components/es/DownloadAuthenticator/style/index' {
|
|
3391
|
-
export {};
|
|
3392
|
-
|
|
3393
|
-
}
|
|
3394
|
-
declare module '@authing/react-ui-components/es/Error/index' {
|
|
3395
|
-
export function GuardErrorView(props: any): React.DetailedReactHTMLElement<{
|
|
3396
|
-
className: string;
|
|
3397
|
-
}, HTMLElement>;
|
|
3398
|
-
import React from "react";
|
|
3399
|
-
|
|
3400
|
-
}
|
|
3401
|
-
declare module '@authing/react-ui-components/es/Error/interface' {
|
|
3402
|
-
export {};
|
|
3403
|
-
|
|
3404
|
-
}
|
|
3405
|
-
declare module '@authing/react-ui-components/es/Error/style/css' {
|
|
3406
|
-
export {};
|
|
3407
|
-
|
|
3408
|
-
}
|
|
3409
|
-
declare module '@authing/react-ui-components/es/Error/style/index' {
|
|
3410
|
-
export {};
|
|
3411
|
-
|
|
3412
|
-
}
|
|
3413
|
-
declare module '@authing/react-ui-components/es/ForgetPassword/core/resetPassword' {
|
|
3414
|
-
export function ResetPassword(props: any): React.DetailedReactHTMLElement<{
|
|
3415
|
-
className: string;
|
|
3416
|
-
}, HTMLElement>;
|
|
3417
|
-
import React from "react";
|
|
3418
|
-
|
|
3419
|
-
}
|
|
3420
|
-
declare module '@authing/react-ui-components/es/ForgetPassword/index' {
|
|
3421
|
-
export function GuardForgetPassword(props: any): React.DetailedReactHTMLElement<{
|
|
3422
|
-
className: string;
|
|
3423
|
-
}, HTMLElement>;
|
|
3424
|
-
import React from "react";
|
|
3425
|
-
|
|
3426
|
-
}
|
|
3427
|
-
declare module '@authing/react-ui-components/es/ForgetPassword/interface' {
|
|
3428
|
-
export {};
|
|
3429
|
-
|
|
3430
|
-
}
|
|
3431
|
-
declare module '@authing/react-ui-components/es/Guard/Guard' {
|
|
3432
|
-
export function Guard(props: any): React.FunctionComponentElement<import("antd/lib/config-provider").ConfigProviderProps>;
|
|
3433
|
-
import React from "react";
|
|
3434
|
-
|
|
3435
|
-
}
|
|
3436
|
-
declare module '@authing/react-ui-components/es/Guard/authClient' {
|
|
3437
|
-
export function initGuardAuthClient(config: any, appId: any, tenantId: any): any;
|
|
3438
|
-
export function getGuardAuthClient(): any;
|
|
3439
|
-
export function useGuardAuthClient(): any;
|
|
3440
|
-
|
|
3441
|
-
}
|
|
3442
|
-
declare module '@authing/react-ui-components/es/Guard/config' {
|
|
3443
|
-
export function getDefaultGuardLocalConfig(): any;
|
|
3444
|
-
|
|
3445
|
-
}
|
|
3446
|
-
declare module '@authing/react-ui-components/es/Guard/event' {
|
|
3447
|
-
export function guardEventsFilter(props: any): any;
|
|
3448
|
-
export function guardEventsHijacking(events: any): any;
|
|
3449
|
-
|
|
3450
|
-
}
|
|
3451
|
-
declare module '@authing/react-ui-components/es/Guard/index' {
|
|
3452
|
-
export * from "@authing/react-ui-components/es/Guard/Guard";
|
|
3453
|
-
export * from "@authing/react-ui-components/es/Guard/module";
|
|
3454
|
-
export * from "@authing/react-ui-components/es/Guard/event";
|
|
3455
|
-
export * from "@authing/react-ui-components/es/Guard/config";
|
|
3456
|
-
|
|
3457
|
-
}
|
|
3458
|
-
declare module '@authing/react-ui-components/es/Guard/module' {
|
|
3459
|
-
export var GuardModuleType: any;
|
|
3460
|
-
|
|
3461
|
-
}
|
|
3462
|
-
declare module '@authing/react-ui-components/es/Guard/sso' {
|
|
3463
|
-
export function trackSession(...args: any[]): any;
|
|
3464
|
-
|
|
3465
|
-
}
|
|
3466
|
-
declare module '@authing/react-ui-components/es/Guard/stateMachine' {
|
|
3467
|
-
export var ActionType: any;
|
|
3468
|
-
export var GuardStateMachine: any;
|
|
3469
|
-
export function useHistoryHijack(back: any): ((...args: any[]) => void)[];
|
|
3470
|
-
export function initGuardStateMachine(changeMouleEvent: any, initData: any): any;
|
|
3471
|
-
export function getGuardStateMachine(): any;
|
|
3472
|
-
export function useGuardStateMachine(): any;
|
|
3473
|
-
|
|
3474
|
-
}
|
|
3475
|
-
declare module '@authing/react-ui-components/es/Guard/style/css' {
|
|
3476
|
-
export {};
|
|
3477
|
-
|
|
3478
|
-
}
|
|
3479
|
-
declare module '@authing/react-ui-components/es/Guard/style/index' {
|
|
3480
|
-
export {};
|
|
3481
|
-
|
|
3482
|
-
}
|
|
3483
|
-
declare module '@authing/react-ui-components/es/IconFont/iconfont' {
|
|
3484
|
-
export {};
|
|
3485
|
-
|
|
3486
|
-
}
|
|
3487
|
-
declare module '@authing/react-ui-components/es/IconFont/index' {
|
|
3488
|
-
export function IconFont(_ref: any): React.ReactSVGElement;
|
|
3489
|
-
import React from "react";
|
|
3490
|
-
|
|
3491
|
-
}
|
|
3492
|
-
declare module '@authing/react-ui-components/es/IconFont/style/css' {
|
|
3493
|
-
export {};
|
|
3494
|
-
|
|
3495
|
-
}
|
|
3496
|
-
declare module '@authing/react-ui-components/es/IconFont/style/index' {
|
|
3497
|
-
export {};
|
|
3498
|
-
|
|
3499
|
-
}
|
|
3500
|
-
declare module '@authing/react-ui-components/es/IconFont/svg' {
|
|
3501
|
-
export var svgStr: string;
|
|
3502
|
-
|
|
3503
|
-
}
|
|
3504
|
-
declare module '@authing/react-ui-components/es/ImagePro/index' {
|
|
3505
|
-
export function ImagePro(props: any): React.DetailedReactHTMLElement<{
|
|
3506
|
-
style: {
|
|
3507
|
-
width: number;
|
|
3508
|
-
height: number;
|
|
3509
|
-
};
|
|
3510
|
-
className: string;
|
|
3511
|
-
}, HTMLElement>;
|
|
3512
|
-
import React from "react";
|
|
3513
|
-
|
|
3514
|
-
}
|
|
3515
|
-
declare module '@authing/react-ui-components/es/ImagePro/style/css' {
|
|
3516
|
-
export {};
|
|
3517
|
-
|
|
3518
|
-
}
|
|
3519
|
-
declare module '@authing/react-ui-components/es/ImagePro/style/index' {
|
|
3520
|
-
export {};
|
|
3521
|
-
|
|
3522
|
-
}
|
|
3523
|
-
declare module '@authing/react-ui-components/es/InputNumber/index' {
|
|
3524
|
-
export var InputNumber: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
|
|
3525
|
-
import React from "react";
|
|
3526
|
-
|
|
3527
|
-
}
|
|
3528
|
-
declare module '@authing/react-ui-components/es/InputPassword/index' {
|
|
3529
|
-
export var InputPassword: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
|
|
3530
|
-
import React from "react";
|
|
3531
|
-
|
|
3532
|
-
}
|
|
3533
|
-
declare module '@authing/react-ui-components/es/Login/codemap' {
|
|
3534
|
-
export var codeMap: {};
|
|
3535
|
-
|
|
3536
|
-
}
|
|
3537
|
-
declare module '@authing/react-ui-components/es/Login/core/withAD' {
|
|
3538
|
-
export function LoginWithAD(props: any): React.DetailedReactHTMLElement<{
|
|
3539
|
-
className: string;
|
|
3540
|
-
}, HTMLElement>;
|
|
3541
|
-
import React from "react";
|
|
3542
|
-
|
|
3543
|
-
}
|
|
3544
|
-
declare module '@authing/react-ui-components/es/Login/core/withAppQrcode' {
|
|
3545
|
-
export function LoginWithAppQrcode(props: any): React.DetailedReactHTMLElement<{
|
|
3546
|
-
className: string;
|
|
3547
|
-
}, HTMLElement>;
|
|
3548
|
-
import React from "react";
|
|
3549
|
-
|
|
3550
|
-
}
|
|
3551
|
-
declare module '@authing/react-ui-components/es/Login/core/withLDAP' {
|
|
3552
|
-
export function LoginWithLDAP(props: any): React.DetailedReactHTMLElement<{
|
|
3553
|
-
className: string;
|
|
3554
|
-
}, HTMLElement>;
|
|
3555
|
-
import React from "react";
|
|
3556
|
-
|
|
3557
|
-
}
|
|
3558
|
-
declare module '@authing/react-ui-components/es/Login/core/withPassword/FormItemAccount' {
|
|
3559
|
-
export function FormItemAccount(props: any): React.FunctionComponentElement<{}>;
|
|
3560
|
-
import React from "react";
|
|
3561
|
-
|
|
3562
|
-
}
|
|
3563
|
-
declare module '@authing/react-ui-components/es/Login/core/withPassword/GraphicVerifyCode' {
|
|
3564
|
-
export function GraphicVerifyCode(props: any): React.DetailedReactHTMLElement<{
|
|
3565
|
-
className: string;
|
|
3566
|
-
}, HTMLElement>;
|
|
3567
|
-
import React from "react";
|
|
3568
|
-
|
|
3569
|
-
}
|
|
3570
|
-
declare module '@authing/react-ui-components/es/Login/core/withPassword/InputAccount' {
|
|
3571
|
-
export function InputAccount(props: any): React.FunctionComponentElement<{}>;
|
|
3572
|
-
import React from "react";
|
|
3573
|
-
|
|
3574
|
-
}
|
|
3575
|
-
declare module '@authing/react-ui-components/es/Login/core/withPassword/index' {
|
|
3576
|
-
export function LoginWithPassword(props: any): React.DetailedReactHTMLElement<{
|
|
3577
|
-
className: string;
|
|
3578
|
-
}, HTMLElement>;
|
|
3579
|
-
import React from "react";
|
|
3580
|
-
|
|
3581
|
-
}
|
|
3582
|
-
declare module '@authing/react-ui-components/es/Login/core/withPhonecode' {
|
|
3583
|
-
export function LoginWithPhoneCode(props: any): React.DetailedReactHTMLElement<{
|
|
3584
|
-
className: string;
|
|
3585
|
-
}, HTMLElement>;
|
|
3586
|
-
import React from "react";
|
|
3587
|
-
|
|
3588
|
-
}
|
|
3589
|
-
declare module '@authing/react-ui-components/es/Login/core/withWechatMiniQrcode' {
|
|
3590
|
-
export function LoginWithWechatMiniQrcode(props: any): React.DetailedReactHTMLElement<{
|
|
3591
|
-
className: string;
|
|
3592
|
-
}, HTMLElement>;
|
|
3593
|
-
import React from "react";
|
|
3594
|
-
|
|
3595
|
-
}
|
|
3596
|
-
declare module '@authing/react-ui-components/es/Login/core/withWechatmpQrcode' {
|
|
3597
|
-
export function LoginWithWechatmpQrcode(props: any): React.DetailedReactHTMLElement<{
|
|
3598
|
-
className: string;
|
|
3599
|
-
}, HTMLElement>;
|
|
3600
|
-
import React from "react";
|
|
3601
|
-
|
|
3602
|
-
}
|
|
3603
|
-
declare module '@authing/react-ui-components/es/Login/index' {
|
|
3604
|
-
export function GuardLoginView(props: any): React.DetailedReactHTMLElement<{
|
|
3605
|
-
className: string;
|
|
3606
|
-
}, HTMLElement>;
|
|
3607
|
-
import React from "react";
|
|
3608
|
-
|
|
3609
|
-
}
|
|
3610
|
-
declare module '@authing/react-ui-components/es/Login/interface' {
|
|
3611
|
-
export function getDefaultLoginConfig(): any;
|
|
3612
|
-
|
|
3613
|
-
}
|
|
3614
|
-
declare module '@authing/react-ui-components/es/Login/socialLogin/index' {
|
|
3615
|
-
export function SocialLogin(_ref: any): React.FunctionComponentElement<{}>;
|
|
3616
|
-
import React from "react";
|
|
3617
|
-
|
|
3618
|
-
}
|
|
3619
|
-
declare module '@authing/react-ui-components/es/Login/style/css' {
|
|
3620
|
-
export {};
|
|
3621
|
-
|
|
3622
|
-
}
|
|
3623
|
-
declare module '@authing/react-ui-components/es/Login/style/index' {
|
|
3624
|
-
export {};
|
|
3625
|
-
|
|
3626
|
-
}
|
|
3627
|
-
declare module '@authing/react-ui-components/es/MFA/VerifyCodeInput/VerifyCodeFormItem' {
|
|
3628
|
-
export function VerifyCodeFormItem(props: any): React.FunctionComponentElement<import("antd/lib/form").FormItemProps<unknown>>;
|
|
3629
|
-
import React from "react";
|
|
3630
|
-
|
|
3631
|
-
}
|
|
3632
|
-
declare module '@authing/react-ui-components/es/MFA/VerifyCodeInput/index' {
|
|
3633
|
-
export function VerifyCodeInput(_ref: any): React.DetailedReactHTMLElement<any, HTMLElement>;
|
|
3634
|
-
import React from "react";
|
|
3635
|
-
|
|
3636
|
-
}
|
|
3637
|
-
declare module '@authing/react-ui-components/es/MFA/codemap' {
|
|
3638
|
-
export var codeMap: {
|
|
3639
|
-
2021: {
|
|
3640
|
-
action: string;
|
|
3641
|
-
module: GuardModuleType;
|
|
3642
|
-
};
|
|
3643
|
-
1700: {
|
|
3644
|
-
action: string;
|
|
3645
|
-
message: string;
|
|
3646
|
-
};
|
|
3647
|
-
1701: {
|
|
3648
|
-
action: string;
|
|
3649
|
-
message: string;
|
|
3650
|
-
};
|
|
3651
|
-
1702: {
|
|
3652
|
-
action: string;
|
|
3653
|
-
message: string;
|
|
3654
|
-
};
|
|
3655
|
-
500: {
|
|
3656
|
-
action: string;
|
|
3657
|
-
};
|
|
3658
|
-
6001: {
|
|
3659
|
-
action: string;
|
|
3660
|
-
};
|
|
3661
|
-
};
|
|
3662
|
-
import { GuardModuleType } from "@authing/react-ui-components/es/Guard/module";
|
|
3663
|
-
|
|
3664
|
-
}
|
|
3665
|
-
declare module '@authing/react-ui-components/es/MFA/core/email' {
|
|
3666
|
-
export function BindMFAEmail(_ref: any): React.FunctionComponentElement<{}>;
|
|
3667
|
-
export function VerifyMFAEmail(_ref4: any): React.FunctionComponentElement<{}>;
|
|
3668
|
-
export function MFAEmail(_ref7: any): React.FunctionComponentElement<{}>;
|
|
3669
|
-
import React from "react";
|
|
3670
|
-
|
|
3671
|
-
}
|
|
3672
|
-
declare module '@authing/react-ui-components/es/MFA/core/face' {
|
|
3673
|
-
export function MFAFace(props: any): React.DetailedReactHTMLElement<React.HTMLAttributes<HTMLElement>, HTMLElement>;
|
|
3674
|
-
import React from "react";
|
|
3675
|
-
|
|
3676
|
-
}
|
|
3677
|
-
declare module '@authing/react-ui-components/es/MFA/core/face_deps' {
|
|
3678
|
-
export function getFaceDetectorOptions(): TinyFaceDetectorOptions;
|
|
3679
|
-
export function getCurrentFaceDetectionNet(): import("face-api.js").TinyFaceDetector;
|
|
3680
|
-
export function isFaceDetectionModelLoaded(): boolean;
|
|
3681
|
-
export function dataURItoBlob(base64Data: any): Blob;
|
|
3682
|
-
export namespace devicesConstraints {
|
|
3683
|
-
namespace video {
|
|
3684
|
-
const width: number;
|
|
3685
|
-
const height: number;
|
|
3686
|
-
}
|
|
3687
|
-
}
|
|
3688
|
-
export var FACE_SCORE: number;
|
|
3689
|
-
import { TinyFaceDetectorOptions } from "face-api.js/build/commonjs/tinyFaceDetector/TinyFaceDetectorOptions";
|
|
3690
|
-
|
|
3691
|
-
}
|
|
3692
|
-
declare module '@authing/react-ui-components/es/MFA/core/sms' {
|
|
3693
|
-
export function BindMFASms(_ref: any): React.FunctionComponentElement<{}>;
|
|
3694
|
-
export function VerifyMFASms(_ref4: any): React.FunctionComponentElement<{}>;
|
|
3695
|
-
export function MFASms(_ref7: any): React.FunctionComponentElement<{}>;
|
|
3696
|
-
import React from "react";
|
|
3697
|
-
|
|
3698
|
-
}
|
|
3699
|
-
declare module '@authing/react-ui-components/es/MFA/core/totp' {
|
|
3700
|
-
export function BindMFATotp(_ref: any): React.FunctionComponentElement<{}>;
|
|
3701
|
-
export function VerifyMFATotp(_ref2: any): React.FunctionComponentElement<{}>;
|
|
3702
|
-
export function MFATotp(_ref4: any): React.FunctionComponentElement<{}>;
|
|
3703
|
-
import React from "react";
|
|
3704
|
-
|
|
3705
|
-
}
|
|
3706
|
-
declare module '@authing/react-ui-components/es/MFA/index' {
|
|
3707
|
-
export function GuardMFAView(_ref5: any): React.DetailedReactHTMLElement<{
|
|
3708
|
-
className: string;
|
|
3709
|
-
}, HTMLElement>;
|
|
3710
|
-
import React from "react";
|
|
3711
|
-
|
|
3712
|
-
}
|
|
3713
|
-
declare module '@authing/react-ui-components/es/MFA/interface' {
|
|
3714
|
-
export function getDefaultMFAConfig(): any;
|
|
3715
|
-
export var MFAType: any;
|
|
3716
|
-
|
|
3717
|
-
}
|
|
3718
|
-
declare module '@authing/react-ui-components/es/MFA/mfaMethods/index' {
|
|
3719
|
-
export function MFAMethods(_ref: any): React.FunctionComponentElement<{}>;
|
|
3720
|
-
import React from "react";
|
|
3721
|
-
|
|
3722
|
-
}
|
|
3723
|
-
declare module '@authing/react-ui-components/es/MFA/style/css' {
|
|
3724
|
-
export {};
|
|
3725
|
-
|
|
3726
|
-
}
|
|
3727
|
-
declare module '@authing/react-ui-components/es/MFA/style/index' {
|
|
3728
|
-
export {};
|
|
3729
|
-
|
|
3730
|
-
}
|
|
3731
|
-
declare module '@authing/react-ui-components/es/NeedHelpView/core/describeQuestions' {
|
|
3732
|
-
export function DescribeQuestions(props: any): React.DetailedReactHTMLElement<{
|
|
3733
|
-
className: string;
|
|
3734
|
-
}, HTMLElement>;
|
|
3735
|
-
import React from "react";
|
|
3736
|
-
|
|
3737
|
-
}
|
|
3738
|
-
declare module '@authing/react-ui-components/es/NeedHelpView/index' {
|
|
3739
|
-
export function GuardNeedHelpView(props: any): React.DetailedReactHTMLElement<{
|
|
3740
|
-
className: string;
|
|
3741
|
-
}, HTMLElement>;
|
|
3742
|
-
import React from "react";
|
|
3743
|
-
|
|
3744
|
-
}
|
|
3745
|
-
declare module '@authing/react-ui-components/es/RecoveryCode/core/useCode' {
|
|
3746
|
-
export function UseCode(_ref: any): React.FunctionComponentElement<{}>;
|
|
3747
|
-
import React from "react";
|
|
3748
|
-
|
|
3749
|
-
}
|
|
3750
|
-
declare module '@authing/react-ui-components/es/RecoveryCode/index' {
|
|
3751
|
-
export function GuardRecoveryCodeView(_ref: any): React.DetailedReactHTMLElement<{
|
|
3752
|
-
className: string;
|
|
3753
|
-
}, HTMLElement>;
|
|
3754
|
-
import React from "react";
|
|
3755
|
-
|
|
3756
|
-
}
|
|
3757
|
-
declare module '@authing/react-ui-components/es/RecoveryCode/interface' {
|
|
3758
|
-
export function getDefaultRecoveryCodeConfig(): any;
|
|
3759
|
-
|
|
3760
|
-
}
|
|
3761
|
-
declare module '@authing/react-ui-components/es/RecoveryCode/style/css' {
|
|
3762
|
-
export {};
|
|
3763
|
-
|
|
3764
|
-
}
|
|
3765
|
-
declare module '@authing/react-ui-components/es/RecoveryCode/style/index' {
|
|
3766
|
-
export {};
|
|
3767
|
-
|
|
3768
|
-
}
|
|
3769
|
-
declare module '@authing/react-ui-components/es/Register/codemap' {
|
|
3770
|
-
export var codeMap: {};
|
|
3771
|
-
|
|
3772
|
-
}
|
|
3773
|
-
declare module '@authing/react-ui-components/es/Register/components/Agreements/index' {
|
|
3774
|
-
export function Agreements(_ref: any): React.DetailedReactHTMLElement<{
|
|
3775
|
-
className: string;
|
|
3776
|
-
}, HTMLElement>;
|
|
3777
|
-
import React from "react";
|
|
3778
|
-
|
|
3779
|
-
}
|
|
3780
|
-
declare module '@authing/react-ui-components/es/Register/core/WithEmail' {
|
|
3781
|
-
export function RegisterWithEmail(_ref: any): React.DetailedReactHTMLElement<{
|
|
3782
|
-
className: string;
|
|
3783
|
-
}, HTMLElement>;
|
|
3784
|
-
import React from "react";
|
|
3785
|
-
|
|
3786
|
-
}
|
|
3787
|
-
declare module '@authing/react-ui-components/es/Register/core/WithPhone' {
|
|
3788
|
-
export function RegisterWithPhone(_ref: any): React.DetailedReactHTMLElement<{
|
|
3789
|
-
className: string;
|
|
3790
|
-
}, HTMLElement>;
|
|
3791
|
-
import React from "react";
|
|
3792
|
-
|
|
3793
|
-
}
|
|
3794
|
-
declare module '@authing/react-ui-components/es/Register/index' {
|
|
3795
|
-
export function GuardRegisterView(_ref: any): React.DetailedReactHTMLElement<{
|
|
3796
|
-
className: string;
|
|
3797
|
-
}, HTMLElement>;
|
|
3798
|
-
import React from "react";
|
|
3799
|
-
|
|
3800
|
-
}
|
|
3801
|
-
declare module '@authing/react-ui-components/es/Register/interface' {
|
|
3802
|
-
export function getDefaultRegisterConfig(): any;
|
|
3803
|
-
|
|
3804
|
-
}
|
|
3805
|
-
declare module '@authing/react-ui-components/es/Register/style/css' {
|
|
3806
|
-
export {};
|
|
3807
|
-
|
|
3808
|
-
}
|
|
3809
|
-
declare module '@authing/react-ui-components/es/Register/style/index' {
|
|
3810
|
-
export {};
|
|
3811
|
-
|
|
3812
|
-
}
|
|
3813
|
-
declare module '@authing/react-ui-components/es/SendCode/SendCodeBtn' {
|
|
3814
|
-
export function SendCodeBtn(props: any): React.FunctionComponentElement<Partial<{
|
|
3815
|
-
href: string;
|
|
3816
|
-
target?: string | undefined;
|
|
3817
|
-
onClick?: ((event: React.MouseEvent<HTMLElement, MouseEvent>) => void) | undefined;
|
|
3818
|
-
} & import("antd/lib/button/button").BaseButtonProps & Pick<React.AnchorHTMLAttributes<any>, "onLoad" | "children" | "lang" | "slot" | "style" | "title" | "dir" | "onChange" | "onBlur" | "id" | "target" | "download" | "href" | "hrefLang" | "media" | "ping" | "rel" | "referrerPolicy" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture"> & {
|
|
3819
|
-
htmlType?: "button" | "submit" | "reset" | undefined;
|
|
3820
|
-
onClick?: ((event: React.MouseEvent<HTMLElement, MouseEvent>) => void) | undefined;
|
|
3821
|
-
} & Pick<React.ButtonHTMLAttributes<any>, "onLoad" | "value" | "children" | "lang" | "form" | "slot" | "style" | "title" | "dir" | "onChange" | "onBlur" | "id" | "name" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "draggable" | "hidden" | "placeholder" | "spellCheck" | "tabIndex" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "autoFocus" | "disabled" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget">> & React.RefAttributes<HTMLElement>>;
|
|
3822
|
-
import React from "react";
|
|
3823
|
-
|
|
3824
|
-
}
|
|
3825
|
-
declare module '@authing/react-ui-components/es/SendCode/index' {
|
|
3826
|
-
export function SendCode(_ref: any): React.FunctionComponentElement<{}>;
|
|
3827
|
-
import React from "react";
|
|
3828
|
-
|
|
3829
|
-
}
|
|
3830
|
-
declare module '@authing/react-ui-components/es/SendCode/style/css' {
|
|
3831
|
-
export {};
|
|
3832
|
-
|
|
3833
|
-
}
|
|
3834
|
-
declare module '@authing/react-ui-components/es/SendCode/style/index' {
|
|
3835
|
-
export {};
|
|
3836
|
-
|
|
3837
|
-
}
|
|
3838
|
-
declare module '@authing/react-ui-components/es/ShieldSpin/index' {
|
|
3839
|
-
export function ShieldSpin(props: any): React.DetailedReactHTMLElement<{
|
|
3840
|
-
style: {
|
|
3841
|
-
width: any;
|
|
3842
|
-
height: any;
|
|
3843
|
-
};
|
|
3844
|
-
}, HTMLElement>;
|
|
3845
|
-
export function Spin(): React.DetailedReactHTMLElement<{
|
|
3846
|
-
className: string;
|
|
3847
|
-
}, HTMLElement>;
|
|
3848
|
-
import React from "react";
|
|
3849
|
-
|
|
3850
|
-
}
|
|
3851
|
-
declare module '@authing/react-ui-components/es/SubmitButton/index' {
|
|
3852
|
-
var _default: React.ForwardRefExoticComponent<Pick<any, string | number | symbol> & React.RefAttributes<any>>;
|
|
3853
|
-
export default _default;
|
|
3854
|
-
import React from "react";
|
|
3855
|
-
|
|
3856
|
-
}
|
|
3857
|
-
declare module '@authing/react-ui-components/es/SubmitSuccess/index' {
|
|
3858
|
-
export function GuardSubmitSuccessView(props: any): React.DetailedReactHTMLElement<{
|
|
3859
|
-
className: string;
|
|
3860
|
-
}, HTMLElement>;
|
|
3861
|
-
import React from "react";
|
|
3862
|
-
|
|
3863
|
-
}
|
|
3864
|
-
declare module '@authing/react-ui-components/es/SubmitSuccess/interface' {
|
|
3865
|
-
export {};
|
|
3866
|
-
|
|
3867
|
-
}
|
|
3868
|
-
declare module '@authing/react-ui-components/es/Type/index' {
|
|
3869
|
-
export function getDefaultG2Config(): {
|
|
3870
|
-
lang: string;
|
|
3871
|
-
langRange: string[];
|
|
3872
|
-
title: string;
|
|
3873
|
-
escCloseable: boolean;
|
|
3874
|
-
clickCloseable: boolean;
|
|
3875
|
-
mode: GuardMode;
|
|
3876
|
-
host: string;
|
|
3877
|
-
logo: string;
|
|
3878
|
-
};
|
|
3879
|
-
import { GuardMode } from "@authing/react-ui-components/es/AuthingGuard/types/GuardConfig";
|
|
3880
|
-
|
|
3881
|
-
}
|
|
3882
|
-
declare module '@authing/react-ui-components/es/ValidatorRules/PasswordFormItem' {
|
|
3883
|
-
export function PasswordFormItem(props: any): React.FunctionComponentElement<import("antd/lib/form").FormItemProps<unknown>>;
|
|
3884
|
-
import React from "react";
|
|
3885
|
-
|
|
3886
|
-
}
|
|
3887
|
-
declare module '@authing/react-ui-components/es/ValidatorRules/ValidatorFormItem' {
|
|
3888
|
-
export var EmailFormItem: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
|
|
3889
|
-
export var PhoneFormItem: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
|
|
3890
|
-
export var UserNameFormItem: React.ForwardRefExoticComponent<React.RefAttributes<any>>;
|
|
3891
|
-
import React from "react";
|
|
3892
|
-
|
|
3893
|
-
}
|
|
3894
|
-
declare module '@authing/react-ui-components/es/ValidatorRules/index' {
|
|
3895
|
-
export default CustomFormItem;
|
|
3896
|
-
var CustomFormItem: typeof FormItem;
|
|
3897
|
-
import FormItem from "antd/lib/form/FormItem";
|
|
3898
|
-
|
|
3899
|
-
}
|
|
3900
|
-
declare module '@authing/react-ui-components/es/VerifyCodeInput/index' {
|
|
3901
|
-
export function VerifyCodeInput(_ref: any): React.DetailedReactHTMLElement<{
|
|
3902
|
-
className: string;
|
|
3903
|
-
}, HTMLElement>;
|
|
3904
|
-
import React from "react";
|
|
3905
|
-
|
|
3906
|
-
}
|
|
3907
|
-
declare module '@authing/react-ui-components/es/VerifyCodeInput/style/css' {
|
|
3908
|
-
export {};
|
|
3909
|
-
|
|
3910
|
-
}
|
|
3911
|
-
declare module '@authing/react-ui-components/es/VerifyCodeInput/style/index' {
|
|
3912
|
-
export {};
|
|
3913
|
-
|
|
3914
|
-
}
|
|
3915
|
-
declare module '@authing/react-ui-components/es/_utils/GuardErrorCode' {
|
|
3916
|
-
export var ErrorCode: any;
|
|
3917
|
-
|
|
3918
|
-
}
|
|
3919
|
-
declare module '@authing/react-ui-components/es/_utils/clipboard' {
|
|
3920
|
-
export function copyToClipboard(str: any): void;
|
|
3921
|
-
|
|
3922
|
-
}
|
|
3923
|
-
declare module '@authing/react-ui-components/es/_utils/config' {
|
|
3924
|
-
export function initConfig(_x: any, _x2: any, _x3: any, ...args: any[]): any;
|
|
3925
|
-
|
|
3926
|
-
}
|
|
3927
|
-
declare module '@authing/react-ui-components/es/_utils/context' {
|
|
3928
|
-
export function createGuardContext(): {
|
|
3929
|
-
Context: React.Context<undefined>;
|
|
3930
|
-
Provider: React.Provider<undefined>;
|
|
3931
|
-
Consumer: React.Consumer<undefined>;
|
|
3932
|
-
};
|
|
3933
|
-
export function usePublicConfig(): undefined;
|
|
3934
|
-
import React from "react";
|
|
3935
|
-
|
|
3936
|
-
}
|
|
3937
|
-
declare module '@authing/react-ui-components/es/_utils/errorFace' {
|
|
3938
|
-
export function faceErrorMessage(error: any): string;
|
|
3939
|
-
|
|
3940
|
-
}
|
|
3941
|
-
declare module '@authing/react-ui-components/es/_utils/guradHttp' {
|
|
3942
|
-
export function GuardHttp(baseUrl: any): void;
|
|
3943
|
-
export function initGuardHttp(baseUrl: any): any;
|
|
3944
|
-
export function getGuardHttp(): any;
|
|
3945
|
-
export function useGuardHttp(): any;
|
|
3946
|
-
|
|
3947
|
-
}
|
|
3948
|
-
declare module '@authing/react-ui-components/es/_utils/hooks/index' {
|
|
3949
|
-
export function useChangeModule(): (nextModuleType: any, nextData: any) => void;
|
|
3950
|
-
export function useAppId(appId: any): string;
|
|
3951
|
-
export function useDebounce(fn: any, delay: any): (...args: any[]) => void;
|
|
3952
|
-
|
|
3953
|
-
}
|
|
3954
|
-
declare module '@authing/react-ui-components/es/_utils/http' {
|
|
3955
|
-
export function requestClient(...args: any[]): any;
|
|
3956
|
-
export namespace requestClient {
|
|
3957
|
-
export function get(_x: any, ...args: any[]): any;
|
|
3958
|
-
export function post(_x2: any, _x3: any, _x4: any, ...args: any[]): any;
|
|
3959
|
-
export function postForm(_x5: any, _x6: any, _x7: any, ...args: any[]): any;
|
|
3960
|
-
export const baseUrl: string;
|
|
3961
|
-
export function setBaseUrl(base: any): void;
|
|
3962
|
-
export { DEFAULT_LANG_HEADER as langHeader };
|
|
3963
|
-
export { DEFAULT_TENANT_HEADER as tenantHeader };
|
|
3964
|
-
export const tenantId: string;
|
|
3965
|
-
export function setLangHeader(key: any): void;
|
|
3966
|
-
export function setTenantHeader(key: any): void;
|
|
3967
|
-
export function setTenantId(tenantId: any): void;
|
|
3968
|
-
}
|
|
3969
|
-
var DEFAULT_LANG_HEADER: string;
|
|
3970
|
-
var DEFAULT_TENANT_HEADER: string;
|
|
3971
|
-
export {};
|
|
3972
|
-
|
|
3973
|
-
}
|
|
3974
|
-
declare module '@authing/react-ui-components/es/_utils/index' {
|
|
3975
|
-
export function getDeviceName(): string | null;
|
|
3976
|
-
/**
|
|
3977
|
-
* https://www.itranslater.com/qa/details/2115518846294557696
|
|
3978
|
-
* Simple object check.
|
|
3979
|
-
* @param item
|
|
3980
|
-
* @returns {boolean}
|
|
3981
|
-
*/
|
|
3982
|
-
export function isObject(item: any): boolean;
|
|
3983
|
-
/**
|
|
3984
|
-
* https://www.itranslater.com/qa/details/2115518846294557696
|
|
3985
|
-
* Deep merge two objects.
|
|
3986
|
-
* @param target
|
|
3987
|
-
* @param ...sources
|
|
3988
|
-
*/
|
|
3989
|
-
export function deepMerge(target: any, ...args: any[]): any;
|
|
3990
|
-
export * from "@authing/react-ui-components/es/_utils/popupCenter";
|
|
3991
|
-
export * from "@authing/react-ui-components/es/_utils/clipboard";
|
|
3992
|
-
export namespace VALIDATE_PATTERN {
|
|
3993
|
-
const email: RegExp;
|
|
3994
|
-
const phone: RegExp;
|
|
3995
|
-
const ip: RegExp;
|
|
3996
|
-
const host: RegExp;
|
|
3997
|
-
const username: RegExp;
|
|
3998
|
-
}
|
|
3999
|
-
export function validate(type: any, val: any): any;
|
|
4000
|
-
export function getRequiredRules(msg: any): {
|
|
4001
|
-
required: boolean;
|
|
4002
|
-
message: any;
|
|
4003
|
-
}[];
|
|
4004
|
-
export function fieldRequiredRule(_fieldRequiredRule: any): {
|
|
4005
|
-
required: boolean;
|
|
4006
|
-
validateTrigger: string[];
|
|
4007
|
-
message: string;
|
|
4008
|
-
whitespace: boolean;
|
|
4009
|
-
}[];
|
|
4010
|
-
export function insertStyles(styles: any, recordKey: any): void;
|
|
4011
|
-
export function removeStyles(recordKey: any): void;
|
|
4012
|
-
export function useTitle(title: any, prefix: any): void;
|
|
4013
|
-
export function getClassnames(classnames: any): any;
|
|
4014
|
-
export function getUserRegisterParams(): any;
|
|
4015
|
-
export function isWechatBrowser(): boolean;
|
|
4016
|
-
export function assembledAppHost(identifier: any, host: any): any;
|
|
4017
|
-
export var PasswordStrength: any;
|
|
4018
|
-
export var PASSWORD_STRENGTH_TEXT_MAP: {};
|
|
4019
|
-
export function getSymbolTypeLength(pwd: any): any;
|
|
4020
|
-
export function getPasswordValidate(...args: any[]): any;
|
|
4021
|
-
export function sleep(delay: any): any;
|
|
4022
|
-
export function shoudGoToComplete(user: any, contextType: any, config: any): boolean;
|
|
4023
|
-
export function tabSort(defaultValue: any, tabList: any): any;
|
|
4024
|
-
export function mailDesensitization(mail: any): string;
|
|
4025
|
-
export function phoneDesensitization(phone: any): any;
|
|
4026
|
-
|
|
4027
|
-
}
|
|
4028
|
-
declare module '@authing/react-ui-components/es/_utils/locales/en/index' {
|
|
4029
|
-
export { common, login, user, map };
|
|
4030
|
-
|
|
4031
|
-
}
|
|
4032
|
-
declare module '@authing/react-ui-components/es/_utils/locales/index' {
|
|
4033
|
-
export function changeLang(lang: any): void;
|
|
4034
|
-
import i18n from "i18next";
|
|
4035
|
-
export function initI18n(...args: any[]): void;
|
|
4036
|
-
export { i18n };
|
|
4037
|
-
|
|
4038
|
-
}
|
|
4039
|
-
declare module '@authing/react-ui-components/es/_utils/locales/zh/index' {
|
|
4040
|
-
export { common, login, user, map };
|
|
4041
|
-
|
|
4042
|
-
}
|
|
4043
|
-
declare module '@authing/react-ui-components/es/_utils/popupCenter' {
|
|
4044
|
-
export function popupCenter(url: any, ...args: any[]): void;
|
|
4045
|
-
|
|
4046
|
-
}
|
|
4047
|
-
declare module '@authing/react-ui-components/es/context/base' {
|
|
4048
|
-
export function createBaseContext(): (React.Context<undefined> | (() => any))[];
|
|
4049
|
-
import React from "react";
|
|
4050
|
-
|
|
4051
|
-
}
|
|
4052
|
-
declare module '@authing/react-ui-components/es/context/global/context' {
|
|
4053
|
-
export function useGuardContext(): any;
|
|
4054
|
-
export function GuardContext(_ref: any): React.FunctionComponentElement<{
|
|
4055
|
-
value: {
|
|
4056
|
-
state: any;
|
|
4057
|
-
dispatch: any;
|
|
4058
|
-
getValue: (key: any) => any;
|
|
4059
|
-
setValue: (key: any, value: any) => void;
|
|
4060
|
-
};
|
|
4061
|
-
}>;
|
|
4062
|
-
import React from "react";
|
|
4063
|
-
|
|
4064
|
-
}
|
|
4065
|
-
declare module '@authing/react-ui-components/es/context/global/reducer' {
|
|
4066
|
-
export function reducer(state: any, _ref: any): any;
|
|
4067
|
-
|
|
4068
|
-
}
|
|
4069
|
-
declare module '@authing/react-ui-components/es/context/module/context' {
|
|
4070
|
-
export function useModule(): any;
|
|
4071
|
-
export function ModuleContext(_ref: any): React.DetailedReactHTMLElement<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
|
|
4072
|
-
import React from "react";
|
|
4073
|
-
|
|
4074
|
-
}
|
|
4075
|
-
declare module '@authing/react-ui-components/es/index' {
|
|
4076
|
-
export * from "@authing/react-ui-components/es/_utils/config";
|
|
4077
|
-
export * from "@authing/react-ui-components/es/AuthingGuard/types/index";
|
|
4078
|
-
export * from "@authing/react-ui-components/es/AuthingGuard/hooks/index";
|
|
4079
|
-
export * from "@authing/react-ui-components/es/AuthingGuard/index";
|
|
4080
|
-
export * from "@authing/react-ui-components/es/Guard/index";
|
|
4081
|
-
export * from "@authing/react-ui-components/es/Type/index";
|
|
4082
|
-
export * from "@authing/react-ui-components/es/version/index";
|
|
4083
|
-
|
|
4084
|
-
}
|
|
4085
|
-
declare module '@authing/react-ui-components/es/version/index' {
|
|
4086
|
-
export default version;
|
|
4087
|
-
import version from "@authing/react-ui-components/es/version/version";
|
|
4088
|
-
|
|
4089
|
-
}
|
|
4090
|
-
declare module '@authing/react-ui-components/es/version/version' {
|
|
4091
|
-
var _default: "3.0.0-rc.10";
|
|
4092
|
-
export default _default;
|
|
4093
|
-
|
|
4094
2830
|
}
|
|
4095
2831
|
declare module '@authing/react-ui-components/examples' {
|
|
4096
2832
|
export {};
|