@bookers/ui 0.5.3 → 0.7.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 +4 -3
- package/dist/index.js +3750 -3577
- package/dist/index.umd.cjs +54 -39
- package/dist/styles.css +1 -1
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -31,7 +31,7 @@ import * as SelectPrimitive from '@radix-ui/react-select';
|
|
|
31
31
|
import { SortingState } from '@tanstack/react-table';
|
|
32
32
|
import { Table as Table_2 } from '@tanstack/react-table';
|
|
33
33
|
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
34
|
-
import { toast } from 'sonner';
|
|
34
|
+
import { toast as toast_2 } from 'sonner';
|
|
35
35
|
import { ToasterProps } from 'sonner';
|
|
36
36
|
import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
37
37
|
import { VariantProps } from 'class-variance-authority';
|
|
@@ -101,6 +101,7 @@ export declare const AlertTitle: React_2.ForwardRefExoticComponent<React_2.HTMLA
|
|
|
101
101
|
|
|
102
102
|
export declare const alertVariants: (props?: ({
|
|
103
103
|
variant?: "default" | "info" | "success" | "warning" | "destructive" | null | undefined;
|
|
104
|
+
size?: "sm" | "md" | null | undefined;
|
|
104
105
|
} & ClassProp) | undefined) => string;
|
|
105
106
|
|
|
106
107
|
export declare const AspectRatio: React_2.ForwardRefExoticComponent<AspectRatioProps & React_2.RefAttributes<HTMLDivElement>>;
|
|
@@ -873,10 +874,10 @@ export declare const textareaVariants: (props?: ({
|
|
|
873
874
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
874
875
|
} & ClassProp) | undefined) => string;
|
|
875
876
|
|
|
876
|
-
export
|
|
877
|
+
export declare const toast: typeof toast_2;
|
|
877
878
|
|
|
878
879
|
export declare const Toaster: {
|
|
879
|
-
({ toastOptions, ...props }: ToasterProps): JSX.Element;
|
|
880
|
+
({ toastOptions, richColors, closeButton, position, ...props }: ToasterProps): JSX.Element;
|
|
880
881
|
displayName: string;
|
|
881
882
|
};
|
|
882
883
|
|