@reeverdev/ui 0.1.3 → 0.1.5

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/index.d.cts CHANGED
@@ -59,12 +59,13 @@ interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProp
59
59
  declare const Badge: React$1.ForwardRefExoticComponent<BadgeProps & React$1.RefAttributes<HTMLDivElement>>;
60
60
 
61
61
  declare const buttonVariants: (props?: ({
62
- variant?: "solid" | "outline" | "ghost" | "soft" | "surface" | "destructive" | "link" | null | undefined;
62
+ variant?: "solid" | "outline" | "ghost" | "soft" | "surface" | "destructive" | "link" | "shadow" | null | undefined;
63
63
  size?: "sm" | "md" | "lg" | "icon" | null | undefined;
64
64
  radius?: "none" | "sm" | "md" | "lg" | "full" | null | undefined;
65
65
  } & class_variance_authority_types.ClassProp) | undefined) => string;
66
66
  interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
67
67
  asChild?: boolean;
68
+ href?: string;
68
69
  }
69
70
  declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
70
71
 
package/dist/index.d.ts CHANGED
@@ -59,12 +59,13 @@ interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProp
59
59
  declare const Badge: React$1.ForwardRefExoticComponent<BadgeProps & React$1.RefAttributes<HTMLDivElement>>;
60
60
 
61
61
  declare const buttonVariants: (props?: ({
62
- variant?: "solid" | "outline" | "ghost" | "soft" | "surface" | "destructive" | "link" | null | undefined;
62
+ variant?: "solid" | "outline" | "ghost" | "soft" | "surface" | "destructive" | "link" | "shadow" | null | undefined;
63
63
  size?: "sm" | "md" | "lg" | "icon" | null | undefined;
64
64
  radius?: "none" | "sm" | "md" | "lg" | "full" | null | undefined;
65
65
  } & class_variance_authority_types.ClassProp) | undefined) => string;
66
66
  interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
67
67
  asChild?: boolean;
68
+ href?: string;
68
69
  }
69
70
  declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
70
71