lion/packages/overlays
CircleCI 2b235054c6 chore: release new versions
- @lion/input-datepicker@0.1.74
 - @lion/overlays@0.5.1
 - @lion/popup@0.2.49
 - @lion/select-rich@0.2.2
 - @lion/tooltip@0.2.49
2019-09-27 14:26:09 +00:00
..
docs fix(overlays): fix contentNodes for local and global overlays 2019-09-27 16:17:58 +02:00
src fix(overlays): fix contentNodes for local and global overlays 2019-09-27 16:17:58 +02:00
stories fix(overlays): fix contentNodes for local and global overlays 2019-09-27 16:17:58 +02:00
test fix(overlays): fix contentNodes for local and global overlays 2019-09-27 16:17:58 +02:00
test-suites fix(overlays): fix contentNodes for local and global overlays 2019-09-27 16:17:58 +02:00
translations fix: support Chinese language 2019-07-17 10:11:32 +02:00
CHANGELOG.md chore: release new versions 2019-09-27 14:26:09 +00:00
index.js fix(overlays): fix contentNodes for local and global overlays 2019-09-27 16:17:58 +02:00
package.json chore: release new versions 2019-09-27 14:26:09 +00:00
README.md feat(overlays): align Overlays API + add DynamicOverlay 2019-09-25 11:39:38 +02:00

Overlays System

Supports different types of overlays like dialogs, toasts, tooltips, dropdown, etc... Manages their position on the screen relative to other elements, including other overlays.

Features

How to use

Installation

npm i --save @lion/overlays

Example

import { overlays } from '@lion/overlays';

const myCtrl = overlays.add(
  new OverlayTypeController({
    /* options */
  }),
);
// name OverlayTypeController is for illustration purpose only
// please read below about existing classes for different types of overlays