New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

react-light-tooltip

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-light-tooltip

A Lightweight tooltip for React JS

latest
npmnpm
Version
1.0.5
Version published
Maintainers
1
Created
Source

react-light-tooltip

A simple and lightweight tooltip for React Js.

Install react-light-tooltip

npm install --save react-light-tooltip

Using react-light-Tooltip

import React from 'react';
import Tooltip from 'react-light-tooltip';

export default class Homepage extends React.PureComponent {
  render() {
    return (
      <div>
        <h1>Welcome to the Homepage</h1>
        <Tooltip
          parent={<button>Hover here!</button>}
          tooltip="Tooltip appears!"
          position="up"
        />
      </div>
    );
  }
}

Dynamically disable Tooltip

Use disabled flag to dynamically disable tooltip in runtime. By default the value is set "false".

<Tooltip
  parent={<button>Hover here!</button>}
  tooltip="Tooltip appears!"
  position="down"
  disabled={true}
/>

Adjust length of tooltip

Use length flag to adjust tooltip length. By default the length is set "small".

<Tooltip
  parent={<button>Hover here!</button>}
  tooltip="Tooltip appears!"
  position="up"
  length="small"
/>

Control position of tooltip

Use position flag to adjust tooltip position. By default the position is set "up".

<Tooltip
  parent={<button>Hover here!</button>}
  tooltip="Tooltip appears!"
  position="down"
  length="small"
/>

Using Glyphs and Icon fonts in Tooltip

You can use Html special characters, emojis or third party fonts like "Font awesome".

<Tooltip
  parent={<button>Hover here!</button>}
  tooltip="Tooltip has HTML special characters: &#9787; &#9986; &#9820;"
  position="up"
/>
<Tooltip
  parent={<button>Hover here!</button>}
  tooltip="Tooltip has Emojis: 😀 😬 😁 😂 😃 😄 😅 😆"
  position="up"
/>
<Tooltip
  parent={<button>Hover here!</button>}
  tooltip="Tooltip Font Awesome Icons: &#xf030; &#xf133; &#xf1fc; &#xf03e; &#xf1f8;"
  position="up"
/>

Inputs for react-light-tooltip

  • parent - React elements, text.
  • tooltip - text, glyph, emoji, icon.
  • position - up, down, right, left, up-right, up-left, down-right, down-left.
  • disabled - boolean (true, false).
  • length - small, medium, large, xlarge, fit.

Contribution guidelines

  • Clone the project.
  • Make a pull request.

Credits

Made by Sree Krishna Raja Github@sreekrishnaraja Twitter@sreekrishnaraja

CSS is taken from source code of Balloon CSS by kazzkiq which is published under MIT license.

This library (react-light-tooltip) is Published under MIT license.

Keywords

react

FAQs

Package last updated on 02 Jan 2019

Did you know?

Socket

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.

Install

Related posts