@better-auth-ui/heroui 1.6.19 → 1.6.21

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.
@@ -37,10 +37,12 @@ export type AuthPluginComponents = Omit<BaseAuthPluginComponents, "securityCards
37
37
  /** Rendered as items inside the `UserButton` dropdown (e.g. account switcher). */
38
38
  userMenuItems?: ComponentType<UserMenuItemProps>[];
39
39
  };
40
- /** Props the heroui `<Auth>` router spreads onto plugin-contributed auth views. */
41
- export type AuthViewProps = Omit<CardProps, "children"> & {
40
+ /** Props the heroui `<Auth>` router passes to plugin-contributed auth views. */
41
+ export type AuthViewProps = {
42
+ className?: string;
42
43
  socialLayout?: SocialLayout;
43
44
  socialPosition?: "top" | "bottom";
45
+ variant?: CardProps["variant"];
44
46
  };
45
47
  /** Props the heroui `<Settings>` router spreads onto plugin-contributed settings views. */
46
48
  export type SettingsViewProps = Omit<CardProps, "children">;