1.2.1
Improvement with v1.2.1
With minor version update, you can use new attribute called decimal. If an input field contains attribute **decimal**, form submission will validate input field and if input field contains non decimal value, form submission will trigger an error
```html
<input name="amount" decimal />
```
If there is an error with decimal, you can see error like
```json
{ "name": "DECIMAL_ERROR", "message": "amount" }
```
Message will contain error input field name
What's Changed
Full Changelog: 1.2.0...1.2.1