@capitaltg/vero 1.10.6 → 1.10.8
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.cjs +34 -34
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1306 -1279
- package/dist/index.js.map +1 -1
- package/dist/types/index.d.ts +3 -1
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -804,10 +804,12 @@ export declare interface TooltipProps extends Omit<ComponentPropsWithoutRef<type
|
|
|
804
804
|
align?: ComponentPropsWithoutRef<typeof TooltipPrimitive.Content>['align'];
|
|
805
805
|
offset?: number;
|
|
806
806
|
hasArrow?: boolean;
|
|
807
|
+
open?: boolean;
|
|
808
|
+
defaultOpen?: boolean;
|
|
809
|
+
onOpenChange?: (open: boolean) => void;
|
|
807
810
|
className?: string;
|
|
808
811
|
style?: React.CSSProperties;
|
|
809
812
|
zIndex?: number;
|
|
810
|
-
onPointerDownOutside?: ComponentPropsWithoutRef<typeof TooltipPrimitive.Content>['onPointerDownOutside'];
|
|
811
813
|
}
|
|
812
814
|
|
|
813
815
|
export declare const TooltipProvider: React_2.FC<TooltipPrimitive.TooltipProviderProps>;
|