Skip to content

Commit 2c70cca

Browse files
committed
fix(react): Align exports
1 parent 04fcfdc commit 2c70cca

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

packages/react/src/auth/index.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@
1414
* limitations under the License.
1515
*/
1616

17-
export { EmailLinkAuthForm, type EmailLinkAuthFormProps } from "./forms/email-link-auth-form";
18-
export { ForgotPasswordAuthForm, type ForgotPasswordAuthFormProps } from "./forms/forgot-password-auth-form";
19-
export { PhoneAuthForm, type PhoneAuthFormProps } from "./forms/phone-auth-form";
17+
export { EmailLinkAuthForm, type EmailLinkAuthFormProps, useEmailLinkAuthFormAction, useEmailLinkAuthForm } from "./forms/email-link-auth-form";
18+
export { ForgotPasswordAuthForm, type ForgotPasswordAuthFormProps, useForgotPasswordAuthFormAction, useForgotPasswordAuthForm } from "./forms/forgot-password-auth-form";
19+
export { PhoneAuthForm, type PhoneAuthFormProps, usePhoneAuthFormAction, usePhoneVerificationFormAction, usePhoneResendAction } from "./forms/phone-auth-form";
2020
export {
2121
SignInAuthForm,
22+
type SignInAuthFormProps,
2223
useSignInAuthForm,
2324
useSignInAuthFormAction,
24-
type SignInAuthFormProps,
2525
} from "./forms/sign-in-auth-form";
26-
export { SignUpAuthForm, type SignUpAuthFormProps } from "./forms/sign-up-auth-form";
26+
export { SignUpAuthForm, type SignUpAuthFormProps, useSignUpAuthForm, useSignUpAuthFormAction } from "./forms/sign-up-auth-form";
2727

2828
export { EmailLinkAuthScreen, type EmailLinkAuthScreenProps } from "./screens/email-link-auth-screen";
2929
export { ForgotPasswordAuthScreen, type ForgotPasswordAuthScreenProps } from "./screens/forgot-password-auth-screen";

packages/react/src/components/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
export { Button, type ButtonProps } from "./button";
1818
export { Card, CardHeader, CardTitle, CardSubtitle, CardContent, type CardProps } from "./card";
1919
export { CountrySelector, type CountrySelectorProps } from "./country-selector";
20-
export { FieldInfo, type FieldInfoProps } from "./field-info";
2120
export { Policies, type PolicyProps, type PolicyURL } from "./policies";
2221
export { Divider, type DividerProps } from "./divider";
22+
export { form } from './form';

0 commit comments

Comments
 (0)