@clidey/ux 0.24.0 → 0.26.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 +3 -1
- package/dist/index.js +714 -715
- package/dist/styles.css +1 -1
- package/package.json +1 -3
package/dist/index.d.ts
CHANGED
|
@@ -476,7 +476,7 @@ export declare function Switch({ className, ...props }: React_2.ComponentProps<t
|
|
|
476
476
|
|
|
477
477
|
export declare function Table({ className, style, ...props }: React_2.ComponentProps<"table">): JSX.Element;
|
|
478
478
|
|
|
479
|
-
export declare
|
|
479
|
+
export declare const TableBody: React_2.ForwardRefExoticComponent<Omit<React_2.DetailedHTMLProps<React_2.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>, "ref"> & React_2.RefAttributes<HTMLTableSectionElement>>;
|
|
480
480
|
|
|
481
481
|
export declare function TableCaption({ className, ...props }: React_2.ComponentProps<"caption">): JSX.Element;
|
|
482
482
|
|
|
@@ -488,6 +488,8 @@ export declare function TableHead({ className, icon, children, ...props }: React
|
|
|
488
488
|
|
|
489
489
|
export declare function TableHeader({ className, ...props }: React_2.ComponentProps<"thead">): JSX.Element;
|
|
490
490
|
|
|
491
|
+
export declare function TableHeadRow({ className, style, ...props }: React_2.ComponentProps<"tr">): JSX.Element;
|
|
492
|
+
|
|
491
493
|
export declare function TableRow({ className, style, ...props }: React_2.ComponentProps<"tr">): JSX.Element;
|
|
492
494
|
|
|
493
495
|
export declare function Tabs({ className, ...props }: React_2.ComponentProps<typeof TabsPrimitive.Root>): JSX.Element;
|