@authing/react-ui-components 3.1.19-rc.1 → 3.1.19-rc.4
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 -3
- package/lib/index.min.js +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -1404,7 +1404,10 @@ declare module '@authing/react-ui-components/components/DownloadAuthenticator/in
|
|
|
1404
1404
|
declare module '@authing/react-ui-components/components/Error/index' {
|
|
1405
1405
|
import React from 'react';
|
|
1406
1406
|
import './styles.less';
|
|
1407
|
-
export
|
|
1407
|
+
export interface ErrorProps {
|
|
1408
|
+
error?: Error;
|
|
1409
|
+
}
|
|
1410
|
+
export const GuardErrorView: React.FC<ErrorProps>;
|
|
1408
1411
|
|
|
1409
1412
|
}
|
|
1410
1413
|
declare module '@authing/react-ui-components/components/Error/interface' {
|
|
@@ -3355,10 +3358,19 @@ declare module '@authing/react-ui-components/components/_utils/responseManagemen
|
|
|
3355
3358
|
UNLOCK = 1643,
|
|
3356
3359
|
FLOW_END = 1600,
|
|
3357
3360
|
FIRST_LOGIN_PASSWORD = 1639,
|
|
3358
|
-
FORCED_PASSWORD_RESET = 2058
|
|
3361
|
+
FORCED_PASSWORD_RESET = 2058,
|
|
3362
|
+
UNSAFE_PASSWORD_TIP = 2061
|
|
3359
3363
|
}
|
|
3360
3364
|
export const ChangeModuleApiCodeMapping: Record<string, GuardModuleType>;
|
|
3361
3365
|
|
|
3366
|
+
}
|
|
3367
|
+
declare module '@authing/react-ui-components/components/_utils/useErrorText' {
|
|
3368
|
+
import React from 'react';
|
|
3369
|
+
export const usePasswordErrorText: () => {
|
|
3370
|
+
setPasswordErrorTextShow: React.Dispatch<React.SetStateAction<boolean>>;
|
|
3371
|
+
getPassWordUnsafeText: () => JSX.Element;
|
|
3372
|
+
};
|
|
3373
|
+
|
|
3362
3374
|
}
|
|
3363
3375
|
declare module '@authing/react-ui-components/components/context/base' {
|
|
3364
3376
|
import React from 'react';
|
|
@@ -3452,7 +3464,7 @@ declare module '@authing/react-ui-components/components/version/index' {
|
|
|
3452
3464
|
|
|
3453
3465
|
}
|
|
3454
3466
|
declare module '@authing/react-ui-components/components/version/version' {
|
|
3455
|
-
const _default: "3.1.19-rc.
|
|
3467
|
+
const _default: "3.1.19-rc.4";
|
|
3456
3468
|
export default _default;
|
|
3457
3469
|
|
|
3458
3470
|
}
|