lion/packages/tooltip
CircleCI 0ff4199f1f chore: release new versions
- @lion/dialog@0.4.18
 - @lion/form-system@0.7.12
 - @lion/input-datepicker@0.11.7
 - @lion/overlays@0.13.3
 - @lion/select-rich@0.15.4
 - @lion/tooltip@0.8.13
2020-05-06 15:22:51 +00:00
..
src fix: add display:none for hidden (#692) 2020-04-29 10:05:06 +02:00
stories chore(tooltip): fix closing div tags in tooltip stories (#662) 2020-03-31 09:22:01 +02:00
test fix: add display:none for hidden (#692) 2020-04-29 10:05:06 +02:00
CHANGELOG.md chore: release new versions 2020-05-06 15:22:51 +00:00
index.js fix(tooltip): export LionTooltipArrow (#439) 2019-12-16 09:32:13 +01:00
lion-tooltip-arrow.js feat(tooltip): arrow 2019-12-13 15:19:41 +01:00
lion-tooltip.js feat: release inital public lion version 2019-04-26 10:37:57 +02:00
package.json chore: release new versions 2020-05-06 15:22:51 +00:00
README.md chore: remove pilot phase header 2020-04-29 10:05:06 +02:00

Tooltip

lion-tooltip is a component used for basic popups on hover. Its purpose is to show content appearing when the user hovers over an invoker element with the cursor or with the keyboard, or if the invoker element is focused.

Live Demo/Documentation

See our storybook for a live demo and API documentation

How to use

Installation

npm i --save @lion/tooltip
import '@lion/tooltip/lion-tooltip.js';

Example

<lion-tooltip>
  <button slot="invoker">Hover me</button>
  <div slot="content">This is a tooltip<div>
</lion-tooltip>