@insforge/react 0.3.1 → 0.3.2
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/dist/components.js +29 -2
- package/dist/components.js.map +1 -1
- package/dist/components.mjs +29 -2
- package/dist/components.mjs.map +1 -1
- package/dist/forms.d.mts +1 -1
- package/dist/forms.d.ts +1 -1
- package/dist/forms.js +21 -1
- package/dist/forms.js.map +1 -1
- package/dist/forms.mjs +21 -1
- package/dist/forms.mjs.map +1 -1
- package/dist/index.js +29 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +29 -2
- package/dist/index.mjs.map +1 -1
- package/dist/types.d.mts +3 -0
- package/dist/types.d.ts +3 -0
- package/package.json +1 -1
package/dist/types.d.mts
CHANGED
|
@@ -514,6 +514,7 @@ interface ResetPasswordFormProps {
|
|
|
514
514
|
onSubmit: (e: FormEvent<HTMLFormElement>) => void;
|
|
515
515
|
error?: string;
|
|
516
516
|
loading?: boolean;
|
|
517
|
+
success?: boolean;
|
|
517
518
|
emailAuthConfig: AuthConfig;
|
|
518
519
|
/** Hierarchical appearance configuration for deep customization */
|
|
519
520
|
appearance?: ResetPasswordAppearance;
|
|
@@ -527,6 +528,8 @@ interface ResetPasswordFormProps {
|
|
|
527
528
|
loadingButtonText?: string;
|
|
528
529
|
backToSignInText?: string;
|
|
529
530
|
backToSignInUrl?: string;
|
|
531
|
+
successTitle?: string;
|
|
532
|
+
successMessage?: string;
|
|
530
533
|
}
|
|
531
534
|
/**
|
|
532
535
|
* Props for VerifyEmailStatus component
|
package/dist/types.d.ts
CHANGED
|
@@ -514,6 +514,7 @@ interface ResetPasswordFormProps {
|
|
|
514
514
|
onSubmit: (e: FormEvent<HTMLFormElement>) => void;
|
|
515
515
|
error?: string;
|
|
516
516
|
loading?: boolean;
|
|
517
|
+
success?: boolean;
|
|
517
518
|
emailAuthConfig: AuthConfig;
|
|
518
519
|
/** Hierarchical appearance configuration for deep customization */
|
|
519
520
|
appearance?: ResetPasswordAppearance;
|
|
@@ -527,6 +528,8 @@ interface ResetPasswordFormProps {
|
|
|
527
528
|
loadingButtonText?: string;
|
|
528
529
|
backToSignInText?: string;
|
|
529
530
|
backToSignInUrl?: string;
|
|
531
|
+
successTitle?: string;
|
|
532
|
+
successMessage?: string;
|
|
530
533
|
}
|
|
531
534
|
/**
|
|
532
535
|
* Props for VerifyEmailStatus component
|
package/package.json
CHANGED