@insforge/react 0.2.7 → 0.2.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/dist/components.d.mts +5 -8
- package/dist/components.d.ts +5 -8
- package/dist/components.js +4 -4
- package/dist/components.js.map +1 -1
- package/dist/components.mjs +4 -4
- package/dist/components.mjs.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/dist/types.d.mts +2 -0
- package/dist/types.d.ts +2 -0
- package/package.json +1 -1
package/dist/types.d.mts
CHANGED
|
@@ -536,6 +536,7 @@ interface VerifyEmailStatusProps {
|
|
|
536
536
|
* Props for the SignIn component
|
|
537
537
|
*/
|
|
538
538
|
interface SignInProps {
|
|
539
|
+
afterSignInUrl?: string;
|
|
539
540
|
/** Hierarchical appearance configuration for deep customization */
|
|
540
541
|
appearance?: SignInAppearance;
|
|
541
542
|
title?: string;
|
|
@@ -563,6 +564,7 @@ interface SignInProps {
|
|
|
563
564
|
* Props for the SignUp component
|
|
564
565
|
*/
|
|
565
566
|
interface SignUpProps {
|
|
567
|
+
afterSignUpUrl?: string;
|
|
566
568
|
/** Hierarchical appearance configuration for deep customization */
|
|
567
569
|
appearance?: SignUpAppearance;
|
|
568
570
|
title?: string;
|
package/dist/types.d.ts
CHANGED
|
@@ -536,6 +536,7 @@ interface VerifyEmailStatusProps {
|
|
|
536
536
|
* Props for the SignIn component
|
|
537
537
|
*/
|
|
538
538
|
interface SignInProps {
|
|
539
|
+
afterSignInUrl?: string;
|
|
539
540
|
/** Hierarchical appearance configuration for deep customization */
|
|
540
541
|
appearance?: SignInAppearance;
|
|
541
542
|
title?: string;
|
|
@@ -563,6 +564,7 @@ interface SignInProps {
|
|
|
563
564
|
* Props for the SignUp component
|
|
564
565
|
*/
|
|
565
566
|
interface SignUpProps {
|
|
567
|
+
afterSignUpUrl?: string;
|
|
566
568
|
/** Hierarchical appearance configuration for deep customization */
|
|
567
569
|
appearance?: SignUpAppearance;
|
|
568
570
|
title?: string;
|
package/package.json
CHANGED