@epilot/volt-ui 1.3.8 → 1.3.10

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.
@@ -1,7 +1,7 @@
1
1
  import type { ComponentPropsWithoutRef } from "react";
2
2
  import { type VariantProps } from "class-variance-authority";
3
3
  export declare const buttonVariants: (props?: ({
4
- variant?: "primary" | "secondary" | "tertiary" | null | undefined;
4
+ variant?: "primary" | "secondary" | "tertiary" | "ghost" | null | undefined;
5
5
  destructive?: boolean | null | undefined;
6
6
  size?: "base" | "xs" | "sm" | "lg" | "icon-xs" | "icon-sm" | "icon" | "icon-lg" | null | undefined;
7
7
  shape?: "normal" | "rounded" | null | undefined;
@@ -12,7 +12,7 @@ export type ButtonProps = ComponentPropsWithoutRef<"button"> & VariantProps<type
12
12
  asChild?: boolean;
13
13
  };
14
14
  export declare const Button: import("react").ForwardRefExoticComponent<Omit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & VariantProps<(props?: ({
15
- variant?: "primary" | "secondary" | "tertiary" | null | undefined;
15
+ variant?: "primary" | "secondary" | "tertiary" | "ghost" | null | undefined;
16
16
  destructive?: boolean | null | undefined;
17
17
  size?: "base" | "xs" | "sm" | "lg" | "icon-xs" | "icon-sm" | "icon" | "icon-lg" | null | undefined;
18
18
  shape?: "normal" | "rounded" | null | undefined;
@@ -6,6 +6,8 @@ type TabsProps = React.ComponentProps<typeof TabsPrimitive.Root> & {
6
6
  };
7
7
  declare const Tabs: ({ className, size, variant, ...props }: TabsProps) => import("react/jsx-runtime").JSX.Element;
8
8
  declare const TabsList: ({ className, ...props }: React.ComponentProps<typeof TabsPrimitive.List>) => import("react/jsx-runtime").JSX.Element;
9
- declare const TabsTrigger: ({ className, ...props }: React.ComponentProps<typeof TabsPrimitive.Trigger>) => import("react/jsx-runtime").JSX.Element;
9
+ declare const TabsTrigger: ({ className, variant, ...props }: React.ComponentProps<typeof TabsPrimitive.Trigger> & {
10
+ variant?: "default" | "destructive";
11
+ }) => import("react/jsx-runtime").JSX.Element;
10
12
  declare const TabsContent: ({ className, ...props }: React.ComponentProps<typeof TabsPrimitive.Content>) => import("react/jsx-runtime").JSX.Element;
11
13
  export { Tabs, TabsList, TabsTrigger, TabsContent };