You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sidebar-form/README.md

37 lines
861 B

2 years ago
# Tiny Components - Sidebar Form
2 years ago
2 years ago
Created with [Riot.js](https://riot.js.org)
2 years ago
2 years ago
Handle Form in a Sidebar. Sidebar is from [Plain-UI](https://plain-ui.com).
2 years ago
2 years ago
## Install
```
npm install @tiny-components\sidebar-form --save
```
## How to use
There are Multiple Components to use this Form.
```js
<tiny-sidebar-form form-id="example-form" open={ state.isOpen } close={ () => { handleClose() }} loading={ state.isLoading }>
<!-- slot:title -->
<span slot="title">
New
</span>
<!-- slot:header -->
<form id="example-form" class="form" slot="form" onsubmit={ (event) => { handleSubmit(event) }}>
<div class="field-group">
<label class="field-label">
Note
<textarea class="field-text" name="name"></textarea>
</label>
</div>
</form>
</tiny-sidebar-form>
```