@rafal.lemieszewski/tide-ui 0.52.4 → 0.52.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.
@@ -5,7 +5,7 @@ declare const buttonGroupVariants: (props?: ({
5
5
  orientation?: "vertical" | "horizontal" | null | undefined;
6
6
  } & import('class-variance-authority/types').ClassProp) | undefined) => string;
7
7
  export interface ButtonGroupProps extends React.ComponentProps<"div">, VariantProps<typeof buttonGroupVariants> {
8
- size?: "sm" | "md" | "lg" | "icon-sm" | "icon-md" | "icon-lg";
8
+ size?: "sm" | "md" | "lg";
9
9
  variant?: "default" | "primary" | "destructive" | "success" | "ghost";
10
10
  }
11
11
  declare const ButtonGroup: React.ForwardRefExoticComponent<Omit<ButtonGroupProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
@@ -11,7 +11,7 @@ export interface InputGroupAddonProps extends React.ComponentProps<"div">, Varia
11
11
  }
12
12
  declare const InputGroupAddon: React.ForwardRefExoticComponent<Omit<InputGroupAddonProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
13
13
  declare const inputGroupButtonVariants: (props?: ({
14
- size?: "xs" | "sm" | "icon-sm" | "icon-xs" | null | undefined;
14
+ size?: "xs" | "sm" | "icon-xs" | "icon-sm" | null | undefined;
15
15
  } & import('class-variance-authority/types').ClassProp) | undefined) => string;
16
16
  export interface InputGroupButtonProps extends Omit<React.ComponentProps<typeof Button>, "size">, VariantProps<typeof inputGroupButtonVariants> {
17
17
  }