@antoniobenincasa/ui 0.2.0 → 0.3.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.
package/dist/index.d.ts CHANGED
@@ -8,6 +8,7 @@ import { JSX } from 'react/jsx-runtime';
8
8
  import * as LabelPrimitive from '@radix-ui/react-label';
9
9
  import * as React_2 from 'react';
10
10
  import { Slot } from '@radix-ui/react-slot';
11
+ import * as TabsPrimitive from '@radix-ui/react-tabs';
11
12
  import { VariantProps } from 'class-variance-authority';
12
13
 
13
14
  export declare function Button({ className, variant, size, asChild, ...props }: React_2.ComponentProps<"button"> & VariantProps<typeof buttonVariants> & {
@@ -51,6 +52,14 @@ export declare function Input({ className, type, ...props }: React_2.ComponentPr
51
52
 
52
53
  export declare function Label({ className, ...props }: React_2.ComponentProps<typeof LabelPrimitive.Root>): JSX.Element;
53
54
 
55
+ export declare function Tabs({ className, ...props }: React_2.ComponentProps<typeof TabsPrimitive.Root>): JSX.Element;
56
+
57
+ export declare function TabsContent({ className, ...props }: React_2.ComponentProps<typeof TabsPrimitive.Content>): JSX.Element;
58
+
59
+ export declare function TabsList({ className, ...props }: React_2.ComponentProps<typeof TabsPrimitive.List>): JSX.Element;
60
+
61
+ export declare function TabsTrigger({ className, ...props }: React_2.ComponentProps<typeof TabsPrimitive.Trigger>): JSX.Element;
62
+
54
63
  export declare const useFormField: () => {
55
64
  invalid: boolean;
56
65
  isDirty: boolean;