@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/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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@insforge/react",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "Framework-agnostic React authentication UI components for Insforge - reusable across all frameworks",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",