@still-forest/canopy 0.17.0 → 0.18.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
@@ -3,6 +3,7 @@ import { ComponentProps } from 'react';
3
3
  import { default as default_2 } from 'react';
4
4
  import { JSX } from 'react/jsx-runtime';
5
5
  import * as React_2 from 'react';
6
+ import * as TabsPrimitive from '@radix-ui/react-tabs';
6
7
  import { VariantProps } from 'class-variance-authority';
7
8
 
8
9
  export declare const Box: default_2.ForwardRefExoticComponent<BoxProps & default_2.RefAttributes<HTMLDivElement>>;
@@ -411,6 +412,14 @@ declare type Size = (typeof SIZES)[number];
411
412
 
412
413
  declare const SIZES: readonly [...string[], "auto", "full", "min", "max", "fit", "px"];
413
414
 
415
+ export declare function Tabs({ className, ...props }: React_2.ComponentProps<typeof TabsPrimitive.Root>): JSX.Element;
416
+
417
+ export declare function TabsContent({ className, ...props }: React_2.ComponentProps<typeof TabsPrimitive.Content>): JSX.Element;
418
+
419
+ export declare function TabsList({ className, ...props }: React_2.ComponentProps<typeof TabsPrimitive.List>): JSX.Element;
420
+
421
+ export declare function TabsTrigger({ className, ...props }: React_2.ComponentProps<typeof TabsPrimitive.Trigger>): JSX.Element;
422
+
414
423
  declare const Text_2: default_2.ForwardRefExoticComponent<Omit<any, "ref"> & default_2.RefAttributes<Element>>;
415
424
  export { Text_2 as Text }
416
425