Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
dibs-react-tooltip
Advanced tools
Usage:
const Tooltip = require('dibs-react-tooltip');
render() {
return (
<Tooltip isVisible={true} rootPosition={{x: 50, y: 50}}>
I'm a tooltip!
</Tooltip>
)
}
Props:
// Determines the initial position of the tooltip relative to rootPosition
tooltipDirection: React.PropTypes.oneOf(['top', 'bottom']), // TODO: left and right
// Whether to render the tooltip
isVisible: React.PropTypes.bool,
// These can be used to override the default local styles
containerClass: React.PropTypes.string,
triangleClass: React.PropTypes.string,
// The height of the triangle arrow of the tooltip
triangleSize: React.PropTypes.number,
// Determines at what point the tooltip will flip to the opposite direction
// For example, if tooltipDirection=top and positionThresholds.top=60, the direction
// will become bottom once the top of the tooltip is less than 60px from the top of
// the window
positionThresholds: React.PropTypes.shape({
top: React.PropTypes.number,
bottom: React.PropTypes.number,
left: React.PropTypes.number,
right: React.PropTypes.number
}),
// The position of the tooltip. Typically this is defined relative to whatever its parent is.
rootPosition: React.PropTypes.shape({
x: React.PropTypes.number,
y: React.PropTypes.number
}).isRequired,
// Handler for when the tooltip is clicked
onClick: React.PropTypes.func,
// Handler for when a position threshold is crossed and the direction changes
onThresholdPassed: React.PropTypes.func
Building:
npm install
npm run build
This will transpile all the ES6, JSX, and local styles to dist/Tooltip.js
.
Tests:
npm run test
FAQs
1stdibs React tooltip component
We found that dibs-react-tooltip demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.