lion/packages/tooltip
2020-04-02 16:25:41 +02:00
..
src fix(tooltip): support reconnecting tooltip arrow inside other overlays 2020-04-02 16:25:41 +02:00
stories chore(tooltip): fix closing div tags in tooltip stories (#662) 2020-03-31 09:22:01 +02:00
test feat(overlay): add hide on outside esc handler 2020-02-06 11:16:24 +01:00
CHANGELOG.md chore: release new versions 2020-03-26 14:28:25 +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-03-26 14:28:25 +00:00
README.md feat: improved storybook demos 2020-01-13 13:58:03 +01: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>