@clidey/ux 0.23.0 → 0.25.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 +5 -0
- package/dist/index.js +573 -591
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -20,6 +20,7 @@ import * as SeparatorPrimitive from '@radix-ui/react-separator';
|
|
|
20
20
|
import * as SheetPrimitive from '@radix-ui/react-dialog';
|
|
21
21
|
import * as SwitchPrimitive from '@radix-ui/react-switch';
|
|
22
22
|
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
23
|
+
import { toast } from 'sonner';
|
|
23
24
|
import { ToasterProps } from 'sonner';
|
|
24
25
|
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
25
26
|
import { VariantProps } from 'class-variance-authority';
|
|
@@ -487,6 +488,8 @@ export declare function TableHead({ className, icon, children, ...props }: React
|
|
|
487
488
|
|
|
488
489
|
export declare function TableHeader({ className, ...props }: React_2.ComponentProps<"thead">): JSX.Element;
|
|
489
490
|
|
|
491
|
+
export declare function TableHeadRow({ className, style, ...props }: React_2.ComponentProps<"tr">): JSX.Element;
|
|
492
|
+
|
|
490
493
|
export declare function TableRow({ className, style, ...props }: React_2.ComponentProps<"tr">): JSX.Element;
|
|
491
494
|
|
|
492
495
|
export declare function Tabs({ className, ...props }: React_2.ComponentProps<typeof TabsPrimitive.Root>): JSX.Element;
|
|
@@ -514,6 +517,8 @@ declare type ThemeProviderState = {
|
|
|
514
517
|
setTheme: (theme: Theme) => void;
|
|
515
518
|
};
|
|
516
519
|
|
|
520
|
+
export { toast }
|
|
521
|
+
|
|
517
522
|
export declare const Toaster: ({ className, ...props }: ToasterProps) => JSX.Element;
|
|
518
523
|
|
|
519
524
|
export declare function Tooltip({ ...props }: React_2.ComponentProps<typeof TooltipPrimitive.Root>): JSX.Element;
|