You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

@brighthr/component-tooltip

Package Overview
Dependencies
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@brighthr/component-tooltip - npm Package Compare versions

Comparing version

to
3.0.1

6

dist/index.d.ts

@@ -7,7 +7,9 @@ import React from 'react';

icon?: React.ComponentType<React.SVGAttributes<SVGElement>>;
label?: string;
label?: string | React.ReactElement;
placement?: Placement;
background?: 'dark' | 'white';
width?: string;
};
declare const Tooltip: ({ className, icon: Icon, label, children, placement, }: TooltipProps) => React.ReactElement;
declare const Tooltip: ({ className, icon: Icon, label, children, placement, background, width, }: TooltipProps) => React.ReactElement;
export { TooltipProps, Tooltip as default };

@@ -25,6 +25,10 @@ // src/index.tsx

children,
placement = "left"
placement = "left",
background = "dark",
width
}) => {
const [visible, setVisible] = useState(false);
const arrowRef = useRef(null);
const whiteBackground = background === "white";
const darkBackground = background === "dark";
const {

@@ -87,3 +91,6 @@ refs: { setReference, setFloating },

{
className: " bg-neutral-700 text-white p-2 rounded-[4px] text-sm",
className: cn(`p-2 rounded-[4px] text-sm ${width}`, {
"bg-neutral-700 text-white": darkBackground,
"bg-white shadow-lg": whiteBackground
}),
style: transitionStyles

@@ -94,3 +101,6 @@ },

{
className: "fill-neutral-700",
className: cn({
"fill-neutral-700": darkBackground,
"fill-white shadow-lg": whiteBackground
}),
tipRadius: 2,

@@ -97,0 +107,0 @@ height: 8,

{
"name": "@brighthr/component-tooltip",
"version": "3.0.0",
"version": "3.0.1",
"license": "MIT",

@@ -27,3 +27,3 @@ "type": "module",

},
"gitHead": "e436e08fcd11f90b558ca5f6ffc5acde15bbf593"
"gitHead": "0dba297b12f62dc853ab167543535322a9014fce"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet