BREAKING: _isPrefilled was removed in favor of _isEmpty. We used to have both, but we decided to align, because they basically do the same thing but opposite. If you were using _isPrefilled, switch to using _isEmpty and just use it in reverse. This change also makes _isEmpty available to all things that implement FormControlMixin. Lastly, filled is available now on all fields that implement InteractionStateMixin |
||
|---|---|---|
| .. | ||
| src | ||
| stories | ||
| test | ||
| CHANGELOG.md | ||
| index.js | ||
| lion-fieldset.js | ||
| package.json | ||
| README.md | ||
Fieldset
lion-fieldset groups multiple input fields or other fieldsets together.
Live Demo/Documentation
See our storybook for a live demo and documentation
How to use
Installation
npm i --save @lion/fieldset
import '@lion/fieldset/lion-fieldset.js';
import '@lion/input/lion-input.js';
Example
<lion-fieldset name="personalia" label="personalia">
<lion-input name="title" label="Title"></lion-input>
</lion-fieldset>