@clidey/ux 0.30.0 → 0.32.0

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.ts CHANGED
@@ -88,6 +88,18 @@ export declare function Button({ className, variant, size, asChild, ...props }:
88
88
  asChild?: boolean;
89
89
  }): JSX.Element;
90
90
 
91
+ export declare function ButtonGroup({ className, orientation, ...props }: React.ComponentProps<"div"> & VariantProps<typeof buttonGroupVariants>): JSX.Element;
92
+
93
+ export declare function ButtonGroupSeparator({ className, orientation, ...props }: React.ComponentProps<typeof Separator>): JSX.Element;
94
+
95
+ export declare function ButtonGroupText({ className, asChild, ...props }: React.ComponentProps<"div"> & {
96
+ asChild?: boolean;
97
+ }): JSX.Element;
98
+
99
+ declare const buttonGroupVariants: (props?: ({
100
+ orientation?: "horizontal" | "vertical" | null | undefined;
101
+ } & ClassProp) | undefined) => string;
102
+
91
103
  declare const buttonVariants: (props?: ({
92
104
  variant?: "default" | "secondary" | "destructive" | "outline" | "link" | "ghost" | null | undefined;
93
105
  size?: "default" | "sm" | "lg" | "icon" | null | undefined;