@sellgar/kit 0.0.7 → 0.0.9
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/components/symbols/index.d.ts +0 -1
- package/dist/components/symbols/slider/slider.d.ts +1 -2
- package/dist/components/symbols/tooltip/tooltip.d.ts +2 -2
- package/dist/index.css +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +3297 -5321
- package/dist/index.umd.cjs +8 -74
- package/package.json +18 -13
|
@@ -53,7 +53,7 @@ export declare function useTooltip({ size, initialOpen, placement, open: control
|
|
|
53
53
|
size: "md" | "sm";
|
|
54
54
|
open: boolean;
|
|
55
55
|
setOpen: (open: boolean) => void;
|
|
56
|
-
arrowRef: React.
|
|
56
|
+
arrowRef: React.MutableRefObject<null>;
|
|
57
57
|
};
|
|
58
58
|
export declare const useTooltipContext: () => {
|
|
59
59
|
placement: Placement;
|
|
@@ -101,7 +101,7 @@ export declare const useTooltipContext: () => {
|
|
|
101
101
|
size: "md" | "sm";
|
|
102
102
|
open: boolean;
|
|
103
103
|
setOpen: (open: boolean) => void;
|
|
104
|
-
arrowRef: React.
|
|
104
|
+
arrowRef: React.MutableRefObject<null>;
|
|
105
105
|
};
|
|
106
106
|
declare const TooltipWrapper: React.FC<React.PropsWithChildren<IProps>>;
|
|
107
107
|
declare const Trigger: React.ForwardRefExoticComponent<Omit<React.HTMLProps<HTMLElement>, "ref"> & React.RefAttributes<HTMLElement>>;
|