Skip to content

Commit

Permalink
Version 8.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ankurk91 committed Aug 30, 2020
1 parent b6c660c commit 99e5799
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
- master
- dev
pull_request:
branches:
- master
- dev
schedule:
- cron: '0 0 1 * *'

Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## [8.1.6](https://github.com/ankurk91/vue-flatpickr-component/compare/8.1.5...8.1.6)
* Fix: [#196](https://github.com/ankurk91/vue-flatpickr-component/issues/196)

## [8.1.5](https://github.com/ankurk91/vue-flatpickr-component/compare/8.1.4...8.1.5)
* Fix: [#165](https://github.com/ankurk91/vue-flatpickr-component/issues/165)

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ This will register a global component `<flat-pickr>`
```html
<flat-pickr v-model="date" @on-change="doSomethingOnChange" @on-close="doSomethingOnClose"></flat-pickr>
```
* Events names has been converted to kebab-case.
* Event names has been converted to kebab-case.
* You can still pass your methods in `:config` like original flatpickr do.

## Available props
Expand All @@ -152,7 +152,7 @@ The component accepts these props:
| :--- | :---: | :---: | :--- |
| v-model / value | String / Date Object / Array / Timestamp / null | `null` | Set or Get date-picker value (required) |
| config | Object | `{ wrap:false }` | Flatpickr configuration [options](https://flatpickr.js.org/options/)|
| events | Array | Array of useful events | Customise the [events](https://flatpickr.js.org/events/) to be emitted|
| events | Array | Array of sensible events | Customise the [events](https://flatpickr.js.org/events/) to be emitted|

## Install in non-module environments (without webpack)
```html
Expand Down Expand Up @@ -190,7 +190,7 @@ Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recen
<!-- This will cause date picker to freeze -->
<flat-picker v-model="card" :config="{ dateFormat: 'd-m-Y H:i' }"></flat-picker>
```
* Vue.js can not detect changes when literal object/arrays passed within template, [see](https://github.com/vuejs/vue/issues/4060)
* Vue.js cannot detect changes when literal object/arrays passed within template, [see](https://github.com/vuejs/vue/issues/4060)

## License
[MIT](LICENSE.txt) License
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-flatpickr-component",
"version": "8.1.5",
"version": "8.1.6",
"description": "Vue.js component for Flatpickr date-time picker",
"main": "dist/vue-flatpickr.js",
"browser": "dist/vue-flatpickr.min.js",
Expand Down

0 comments on commit 99e5799

Please sign in to comment.