lion/packages/core
2020-01-18 14:22:36 +01:00
..
src feat: remove all deprecations from lion 2019-11-13 11:00:48 +01:00
stories feat: improved storybook demos 2020-01-13 13:58:03 +01:00
test fix: refactor slot selection 2019-11-15 15:50:18 +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-01-17 09:15:57 +00:00
index.js feat: improved storybook demos 2020-01-13 13:58:03 +01:00
package.json chore: cleanup testing configuration 2020-01-18 14:22:36 +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 { ... };
});