@epilot/volt-ui 1.1.3 → 1.1.4-alpha.1

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.
@@ -15,4 +15,5 @@ declare const SelectItem: ({ className, children, ...props }: React.ComponentPro
15
15
  declare const SelectSeparator: ({ className, ...props }: React.ComponentProps<typeof SelectPrimitive.Separator>) => import("react/jsx-runtime").JSX.Element;
16
16
  declare const SelectScrollUpButton: ({ className, ...props }: React.ComponentProps<typeof SelectPrimitive.ScrollUpButton>) => import("react/jsx-runtime").JSX.Element;
17
17
  declare const SelectScrollDownButton: ({ className, ...props }: React.ComponentProps<typeof SelectPrimitive.ScrollDownButton>) => import("react/jsx-runtime").JSX.Element;
18
- export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectTriggerClear, SelectValue, };
18
+ declare const SelectPortal: ({ children, ...props }: React.ComponentProps<typeof SelectPrimitive.Portal>) => import("react/jsx-runtime").JSX.Element;
19
+ export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectTriggerClear, SelectValue, SelectPortal, };
@@ -1,9 +1,10 @@
1
1
  import * as React from "react";
2
2
  import * as TabsPrimitive from "@radix-ui/react-tabs";
3
3
  type TabsProps = React.ComponentProps<typeof TabsPrimitive.Root> & {
4
- size?: "small" | "base";
4
+ size?: "sm" | "base" | "lg";
5
+ variant?: "default" | "highlight";
5
6
  };
6
- declare const Tabs: ({ className, size, ...props }: TabsProps) => import("react/jsx-runtime").JSX.Element;
7
+ declare const Tabs: ({ className, size, variant, ...props }: TabsProps) => import("react/jsx-runtime").JSX.Element;
7
8
  declare const TabsList: ({ className, ...props }: React.ComponentProps<typeof TabsPrimitive.List>) => import("react/jsx-runtime").JSX.Element;
8
9
  declare const TabsTrigger: ({ className, ...props }: React.ComponentProps<typeof TabsPrimitive.Trigger>) => import("react/jsx-runtime").JSX.Element;
9
10
  declare const TabsContent: ({ className, ...props }: React.ComponentProps<typeof TabsPrimitive.Content>) => import("react/jsx-runtime").JSX.Element;