lion/packages/core
2020-03-25 17:02:10 +01:00
..
src fix(core): use dedupeMixin @open-wc 2020-03-05 16:04:49 +01:00
stories feat: improved storybook demos 2020-01-13 13:58:03 +01:00
test fix(core): use dedupeMixin @open-wc 2020-03-05 16:04:49 +01:00
test-helpers feat(overlays): align Overlays API + add DynamicOverlay 2019-09-25 11:39:38 +02:00
CHANGELOG.md chore: release new versions 2020-03-05 15:08:00 +00:00
index.js feat: update to stable @open-wc/scoped-elements 2020-03-25 17:02:10 +01:00
package.json feat: update to stable @open-wc/scoped-elements 2020-03-25 17:02:10 +01:00
README.md feat: improved storybook demos 2020-01-13 13:58:03 +01:00

Core

lion-input-amount component is based on the generic text input field. Its purpose is to provide a way for users to fill in an amount.

Live Demo/Documentation

See our storybook for a live demo and API documentation

How to use

Installation

npm i --save @lion/core
import { dedupeMixin, LitElement } from '@lion/core';

Example

const BaseMixin = dedupeMixin((superClass) => {
  return class extends superClass { ... };
});