<stacked-sheet>
This webcomponent follows the open-wc recommendation.
Installation
npm i @aqovia-elements/stacked-sheet
Usage
<script type="module">
import "@aqovia-elements/stacked-sheet/stacked-sheet.js";
import "@aqovia-elements/stacked-sheet/stacked-sheets-holder.js";
</script>
<stacked-sheets-holder>
<stacked-sheet title="Search for user">
<input type="text" name="search" />
<button>Search</button>
</stacked-sheet>
<stacked-sheet title="Add user">
<input type="text" name="fullname" />
<button>Add</button>
</stacked-sheet>
</stacked-sheets-holder>
Linting
npm run lint
Formating
npm run format
Testing using karma
npm run test
Demoing and developing
npm run start
Building
npm run build