@qodo/design-system 0.17.0 → 0.17.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
@@ -22,7 +22,7 @@ import { MouseEvent as MouseEvent_2 } from 'react';
22
22
  import * as ProgressPrimitive from '@radix-ui/react-progress';
23
23
  import { PropsWithChildren } from 'react';
24
24
  import { RadioGroupItemProps as RadioGroupItemProps_2 } from '..';
25
- import { RadioGroupProps as RadioGroupProps_2 } from '..';
25
+ import { RadioGroupProps as RadioGroupProps_2 } from './types';
26
26
  import * as React_2 from 'react';
27
27
  import { ReactNode } from 'react';
28
28
  import { RefAttributes } from 'react';
@@ -34,6 +34,7 @@ import { Steps as Steps_2 } from '@ark-ui/react/steps';
34
34
  import { SubmitHandler } from 'react-hook-form';
35
35
  import * as SwitchPrimitive from '@radix-ui/react-switch';
36
36
  import { Table as Table_2 } from '@tanstack/react-table';
37
+ import * as TabsPrimitive from '@radix-ui/react-tabs';
37
38
  import { TagsInputProps as TagsInputProps_2 } from '..';
38
39
  import { TextareaProps } from './types';
39
40
  import { TitleProps } from './types';
@@ -615,6 +616,14 @@ export declare type TableProps<T extends RowData> = {
615
616
  activeRowId?: number | string;
616
617
  };
617
618
 
619
+ export declare function Tabs({ className, ...props }: React_2.ComponentProps<typeof TabsPrimitive.Root>): JSX_2.Element;
620
+
621
+ export declare function TabsContent({ className, ...props }: React_2.ComponentProps<typeof TabsPrimitive.Content>): JSX_2.Element;
622
+
623
+ export declare function TabsList({ className, ...props }: React_2.ComponentProps<typeof TabsPrimitive.List>): JSX_2.Element;
624
+
625
+ export declare function TabsTrigger({ className, ...props }: React_2.ComponentProps<typeof TabsPrimitive.Trigger>): JSX_2.Element;
626
+
618
627
  export declare type TagItemProps = {
619
628
  label: string;
620
629
  id: string;