@insforge/react 0.3.3 → 0.3.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/dist/atoms.js.map +1 -1
- package/dist/atoms.mjs.map +1 -1
- package/dist/components.d.mts +2 -1
- package/dist/components.d.ts +2 -1
- package/dist/components.js +6 -5
- package/dist/components.js.map +1 -1
- package/dist/components.mjs +6 -5
- package/dist/components.mjs.map +1 -1
- package/dist/forms.js.map +1 -1
- package/dist/forms.mjs.map +1 -1
- package/dist/hooks.d.mts +4 -17
- package/dist/hooks.d.ts +4 -17
- package/dist/hooks.js.map +1 -1
- package/dist/hooks.mjs.map +1 -1
- package/dist/index.d.mts +5 -21
- package/dist/index.d.ts +5 -21
- package/dist/index.js +6 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -5
- package/dist/index.mjs.map +1 -1
- package/dist/types.d.mts +2 -2
- package/dist/types.d.ts +2 -2
- package/package.json +1 -1
package/dist/types.d.mts
CHANGED
|
@@ -571,7 +571,7 @@ interface SignInProps {
|
|
|
571
571
|
id: string;
|
|
572
572
|
email: string;
|
|
573
573
|
name: string;
|
|
574
|
-
}, accessToken: string) => void;
|
|
574
|
+
}, accessToken: string, redirectTo?: string) => void;
|
|
575
575
|
onError?: (error: Error) => void;
|
|
576
576
|
}
|
|
577
577
|
/**
|
|
@@ -597,7 +597,7 @@ interface SignUpProps {
|
|
|
597
597
|
id: string;
|
|
598
598
|
email: string;
|
|
599
599
|
name: string;
|
|
600
|
-
}, accessToken: string) => void;
|
|
600
|
+
}, accessToken: string, redirectTo?: string) => void;
|
|
601
601
|
onError?: (error: Error) => void;
|
|
602
602
|
}
|
|
603
603
|
/**
|
package/dist/types.d.ts
CHANGED
|
@@ -571,7 +571,7 @@ interface SignInProps {
|
|
|
571
571
|
id: string;
|
|
572
572
|
email: string;
|
|
573
573
|
name: string;
|
|
574
|
-
}, accessToken: string) => void;
|
|
574
|
+
}, accessToken: string, redirectTo?: string) => void;
|
|
575
575
|
onError?: (error: Error) => void;
|
|
576
576
|
}
|
|
577
577
|
/**
|
|
@@ -597,7 +597,7 @@ interface SignUpProps {
|
|
|
597
597
|
id: string;
|
|
598
598
|
email: string;
|
|
599
599
|
name: string;
|
|
600
|
-
}, accessToken: string) => void;
|
|
600
|
+
}, accessToken: string, redirectTo?: string) => void;
|
|
601
601
|
onError?: (error: Error) => void;
|
|
602
602
|
}
|
|
603
603
|
/**
|
package/package.json
CHANGED