Skip to content

Commit 4be2837

Browse files
committed
v1.0.0-beta.7
1 parent 9d44bb8 commit 4be2837

File tree

3 files changed

+22
-12
lines changed

3 files changed

+22
-12
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,25 @@ All notable changes to this project will be documented in this file.
33

44
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
55

6+
#### [v1.0.0-beta.7](https://github.com/mariomka/vue-datetime/compare/v1.0.0-beta.6...v1.0.0-beta.7)
7+
> 14 October 2018
8+
- Tweak time picker [`3068f46`](https://github.com/mariomka/vue-datetime/commit/3068f46c3ab3dfb42e312b0200d26916a6429129)
9+
- time only spec [`1d2454c`](https://github.com/mariomka/vue-datetime/commit/1d2454c553375e7c3193bfa9cfa6639c2e2feb03)
10+
- Update tests [`ae5ef11`](https://github.com/mariomka/vue-datetime/commit/ae5ef118cc408c9788a6d9d3ddef35f51a7c5776)
11+
- Added tests [`84f2b04`](https://github.com/mariomka/vue-datetime/commit/84f2b041d578b3a212f8314898f625cfcdb8ffd4)
12+
- Disable invalid year in yearpicker [`76fd1d9`](https://github.com/mariomka/vue-datetime/commit/76fd1d99f747032b150e76a5eff67d9807a65d6a)
13+
- Added support for named slots [`13ad825`](https://github.com/mariomka/vue-datetime/commit/13ad825dd980dfe70abc723e740ca1dde09d0552)
14+
- time support [`35a0a13`](https://github.com/mariomka/vue-datetime/commit/35a0a1377cea97e3eeb2e5477bb25b14b244941c)
15+
- added setting value via hidden input [`56eb53e`](https://github.com/mariomka/vue-datetime/commit/56eb53eeac48d2df579ee07f622e94af3a942985)
16+
- Fix code style [`87f650f`](https://github.com/mariomka/vue-datetime/commit/87f650f72130d4f4c6ca2b51342a49010de2dbcd)
17+
- fix specs and dupe headers [`077e82a`](https://github.com/mariomka/vue-datetime/commit/077e82af109755da8f204bd741c1ae9ebe385aa4)
18+
- Simplify test [`93f08e2`](https://github.com/mariomka/vue-datetime/commit/93f08e2796a4563009dbdf32a06d730efe5d3d87)
19+
- Fix datetime popup display bug when using UTC zone [`598253e`](https://github.com/mariomka/vue-datetime/commit/598253e48c8f7e0b8ae96a7d7fe96c102ae5cc4a)
20+
- Fix min/max calendar test [`fb48c1c`](https://github.com/mariomka/vue-datetime/commit/fb48c1c6226d6ecabccb9974bad9aa495f5b6cd7)
21+
- tweaks [`2b8ebed`](https://github.com/mariomka/vue-datetime/commit/2b8ebed08764ba39099212b63b4a532f2785acd6)
22+
- Fix case [`fc4a5fb`](https://github.com/mariomka/vue-datetime/commit/fc4a5fb76b50c6b802c92b113d763794d43261db)
23+
- Removed forgotten comments :( [`bc583bf`](https://github.com/mariomka/vue-datetime/commit/bc583bf2556feac6f8e0da80ab73f1ba4bc95b07)
24+
625
#### [v1.0.0-beta.6](https://github.com/mariomka/vue-datetime/compare/v1.0.0-beta.5...v1.0.0-beta.6)
726
> 9 July 2018
827
- Add empty days at the end of the month to complete the week [`#72`](https://github.com/mariomka/vue-datetime/pull/72)

README.md

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,6 @@
1717

1818
[![demo](https://raw.githubusercontent.com/mariomka/vue-datetime/v1.x/demo/demo.gif)](http://mariomka.github.io/vue-datetime)
1919

20-
## TODO
21-
22-
v1.x currently support most of v0.x functionality but it's still behind.
23-
24-
Old features not yet implemented:
25-
26-
- Disabled dates
27-
- Time picker (Not sure if it will be implemented)
28-
2920
## Installation
3021

3122
### Bundler (Webpack, Rollup...)
@@ -116,13 +107,13 @@ You can customize the component output using named slots and component props.
116107
Parameter | Type | Default | Description
117108
--------- | ---- | ------- | -----------
118109
v-model (*required*) | ISO 8601 `String` | - | Datetime.
119-
type | `String` | `date` | Picker type. date or datetime.
110+
type | `String` | `date` | Picker type: date, datetime or time.
120111
input-id | `String` | `''` | Id for the input.
121112
input-class | `String` | `''` | Class for the input.
122113
hidden-name | `String` | `null` | Name for hidden input with raw value. See #51.
123114
value-zone | `String` | `UTC` | Time zone for the value.
124115
zone | `String` | `local` | Time zone for the picker.
125-
format | `Object` or `String` | `DateTime.DATE_MED` or `DateTime.DATETIME_MED` | Input date format. Luxon [presents](https://moment.github.io/luxon/docs/manual/formatting.html#tolocalestring--strings-for-humans-) or [tokens](https://moment.github.io/luxon/docs/manual/formatting.html#formatting-with-tokens--strings-for-cthulhu-).
116+
format | `Object` or `String` | `DateTime.DATE_MED`, `DateTime.DATETIME_MED` or `DateTime.TIME_24_SIMPLE` | Input date format. Luxon [presents](https://moment.github.io/luxon/docs/manual/formatting.html#tolocalestring--strings-for-humans-) or [tokens](https://moment.github.io/luxon/docs/manual/formatting.html#formatting-with-tokens--strings-for-cthulhu-).
126117
phrases | `Object` | `{ok: 'Ok', cancel: 'Cancel'}` | Phrases.
127118
use12-hour | `Boolean` | `false` | Display 12 hour (AM/PM) mode
128119
hour-step | `Number` | `1` | Hour step.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-datetime",
3-
"version": "1.0.0-beta.6",
3+
"version": "1.0.0-beta.7",
44
"description": "Mobile friendly datetime picker for Vue. Supports date, datetime and time modes, i18n and disabling dates.",
55
"keywords": [
66
"datetime",

0 commit comments

Comments
 (0)