@authing/react-ui-components 3.1.19-rc.6 → 3.1.19-rc.9
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 +12 -2
- package/lib/index.min.js +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -1169,13 +1169,23 @@ declare module '@authing/react-ui-components/components/ChangeLanguage/index' {
|
|
|
1169
1169
|
declare module '@authing/react-ui-components/components/ChangePassword/businessRequest' {
|
|
1170
1170
|
export enum ChangePasswordBusinessAction {
|
|
1171
1171
|
ResetPassword = "reset-password-first-time",
|
|
1172
|
-
FirstLoginReset = "reset-password-forced"
|
|
1172
|
+
FirstLoginReset = "reset-password-forced",
|
|
1173
|
+
ResetPasswordStrengthDetection = "reset-password-strength-detection"
|
|
1173
1174
|
}
|
|
1174
1175
|
export const authFlow: (action: ChangePasswordBusinessAction, content: {
|
|
1175
1176
|
password: string;
|
|
1176
1177
|
oldPassword?: string;
|
|
1177
1178
|
}) => Promise<import("@authing/react-ui-components/components/_utils/http").AuthingGuardResponse<any>>;
|
|
1178
1179
|
|
|
1180
|
+
}
|
|
1181
|
+
declare module '@authing/react-ui-components/components/ChangePassword/core/PasswordNotSafeReset' {
|
|
1182
|
+
import React from 'react';
|
|
1183
|
+
interface FirstLoginResetProps {
|
|
1184
|
+
onReset: any;
|
|
1185
|
+
}
|
|
1186
|
+
export const PasswordNotSafeReset: React.FC<FirstLoginResetProps>;
|
|
1187
|
+
export {};
|
|
1188
|
+
|
|
1179
1189
|
}
|
|
1180
1190
|
declare module '@authing/react-ui-components/components/ChangePassword/core/completePassword' {
|
|
1181
1191
|
import React from 'react';
|
|
@@ -3467,7 +3477,7 @@ declare module '@authing/react-ui-components/components/version/index' {
|
|
|
3467
3477
|
|
|
3468
3478
|
}
|
|
3469
3479
|
declare module '@authing/react-ui-components/components/version/version' {
|
|
3470
|
-
const _default: "3.1.19-rc.
|
|
3480
|
+
const _default: "3.1.19-rc.9";
|
|
3471
3481
|
export default _default;
|
|
3472
3482
|
|
|
3473
3483
|
}
|