|
| 1 | +# v0.9.0 |
1 | 2 | ## Bug Fixes |
| 3 | +### `v-calendar` |
| 4 | +* Fixes Turkish locale identifier |
| 5 | +* Fixes weekday formatting by using UNC dates with `Intl.DateTimeFormat`. Closes #104. |
| 6 | +* Other small bug fixes |
| 7 | + |
2 | 8 | ### `v-date-picker` |
3 | | -* Fixed glitch with highlight cap animation when `mode === "range"` |
4 | | -* Fixed bug with `themeStyles.dayContent` style getting ignored. Closes #115. |
| 9 | +* Fixes glitch with highlight cap animation when `mode === "range"` |
| 10 | +* Fixes bug with `themeStyles.dayContent` style getting ignored. Closes #115. |
5 | 11 |
|
6 | 12 | ## Improvements |
7 | 13 | ### `v-calendar` |
8 | | -* Added `min-date` prop as a convenient alternative to `min-page` |
9 | | -* Added `max-date` prop as a convenient alternative to `max-page` |
10 | | -* Added `is-linked` prop to link panes to consecutive months when `is-double-paned` is set. Closes #80. |
11 | | -* Added `is-vertical` prop for vertical calendar orientation when `is-double-paned` is set. Closes #89. |
| 14 | +* Adds `min-date` prop as a convenient alternative to `min-page` |
| 15 | +* Adds `max-date` prop as a convenient alternative to `max-page` |
| 16 | +* Adds `is-linked` prop to link panes to consecutive months when `is-double-paned` is set. Closes #80. |
| 17 | +* Adds `is-vertical` prop for vertical calendar orientation when `is-double-paned` is set. Closes #89. |
| 18 | + |
| 19 | +### `v-date-picker` |
| 20 | +* `min-date` and `max-date` props are now forwarded to `v-calendar`. Closes #78. |
12 | 21 |
|
13 | 22 | ### Defaults |
14 | 23 | Theme styles modifications. Closes #93. |
15 | 24 |
|
16 | 25 | | Style | Modification | Description | |
17 | 26 | | ----- | ------------ | ----- | |
18 | | -| `horizontalDivider` | Added | Horizontal divider when calendars are in vertical orientation (`is-vertical`) | |
19 | | -| `navHeader` | Added | Navigation pane header. | |
20 | | -| `navHeaderTitle` | Added | Navigation pane header title. | |
21 | | -| `navHeaderArrows` | Added | Navigation pane header arrows. | |
22 | | -| `navMonthCell` | Added | Navigation pane month cells. | |
23 | | -| `navYearCell` | Added | Navigation pane year cells. | |
| 27 | +| `horizontalDivider` | Add | Horizontal divider when calendars are in vertical orientation (`is-vertical`) | |
| 28 | +| `navHeader` | Add | Navigation pane header. | |
| 29 | +| `navHeaderTitle` | Add | Navigation pane header title. | |
| 30 | +| `navHeaderArrows` | Add | Navigation pane header arrows. | |
| 31 | +| `navMonthCell` | Add | Navigation pane month cells. | |
| 32 | +| `navYearCell` | Add | Navigation pane year cells. | |
24 | 33 | | `header` | Edited | Supports use of function that accepts a [`page`](https://docs.vcalendar.io/api#page-object) object and return a style | |
25 | | -| `headerTitle` | Edited | Supports use of function that accepts a [`page`](https://docs.vcalendar.io/api#page-object) object and return a style | |
26 | | -| `headerArrows` | Edited | Supports use of function that accepts a [`page`](https://docs.vcalendar.io/api#page-object) object and return a style | |
27 | | -| `headerHorizontalDivider` | Edited | Supports use of function that accepts a [`page`](https://docs.vcalendar.io/api#page-object) object and return a style | |
28 | | -| `weekdays` | Edited | Supports use of function that accepts a [`page`](https://docs.vcalendar.io/api#page-object) object and return a style | |
29 | | -| `weekdaysHorizontalDivider` | Edited | Supports use of function that accepts a [`page`](https://docs.vcalendar.io/api#page-object) object and return a style | |
30 | | -| `weeks` | Edited | Supports use of function that accepts a [`page`](https://docs.vcalendar.io/api#page-object) object and return a style | |
31 | | -| ~~`headerVerticalDivider`~~ | Removed | *Reference note below* | |
32 | | -| ~~`weekdaysVerticalDivider`~~ | Removed | *Reference note below* | |
33 | | -| ~~`weeksVerticalDivider`~~ | Removed | *Reference note below* | |
| 34 | +| `headerTitle` | Edit | Supports use of function that accepts a [`page`](https://docs.vcalendar.io/api#page-object) object and return a style | |
| 35 | +| `headerArrows` | Edit | Supports use of function that accepts a [`page`](https://docs.vcalendar.io/api#page-object) object and return a style | |
| 36 | +| `headerHorizontalDivider` | Edit | Supports use of function that accepts a [`page`](https://docs.vcalendar.io/api#page-object) object and return a style | |
| 37 | +| `weekdays` | Edit | Supports use of function that accepts a [`page`](https://docs.vcalendar.io/api#page-object) object and return a style | |
| 38 | +| `weekdaysHorizontalDivider` | Edit | Supports use of function that accepts a [`page`](https://docs.vcalendar.io/api#page-object) object and return a style | |
| 39 | +| `weeks` | Edit | Supports use of function that accepts a [`page`](https://docs.vcalendar.io/api#page-object) object and return a style | |
| 40 | +| ~~`headerVerticalDivider`~~ | Remove | *Reference note below* | |
| 41 | +| ~~`weekdaysVerticalDivider`~~ | Remove | *Reference note below* | |
| 42 | +| ~~`weeksVerticalDivider`~~ | Remove | *Reference note below* | |
34 | 43 |
|
35 | 44 | * Styles removed in favor of defining functions for the `header`, `weekdays` and `weeks` styles like so... |
36 | 45 |
|
@@ -59,9 +68,6 @@ export default { |
59 | 68 | } |
60 | 69 | ``` |
61 | 70 |
|
62 | | -### `v-date-picker` |
63 | | -* `min-date` and `max-date` props are now forwarded to `v-calendar`. Closes #78. |
64 | | - |
65 | 71 | # v0.8.0 |
66 | 72 | ## Bug Fixes |
67 | 73 | ### `v-date-picker` |
|
0 commit comments