Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(datepicker): Make the calendar navigable by keyboard #53

Closed
wants to merge 37 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
9021c82
feat(datepicker): Make the calendar navigable by keyboard
mst101 Nov 12, 2020
e19b2ac
Merge branch 'master' into feat/keyboard-navigation
mst101 Nov 12, 2020
4c60625
fix(dateinput): Only open calendar via button if `:show-calendar-on-b…
mst101 Nov 16, 2020
9d54446
Merge branch 'master' into feat/keyboard-navigation
mst101 Nov 26, 2020
53f7a6c
Add check-focus to slots
mst101 Nov 30, 2020
3b53005
chore(project): Fix eslint errors
mst101 Dec 3, 2020
5f63e89
chore(picker): Refactor isPreviousDisabled & isNextDisabled
mst101 Dec 3, 2020
d8f728f
chore(picker): Rename disabledFromExists to hasDisabledFrom
mst101 Dec 3, 2020
dc59113
chore(picker): Refactor hasDisabledFrom/To computed properties
mst101 Dec 4, 2020
f1b8283
chore(project): Arrow function parentheses (eslint)
mst101 Dec 14, 2020
49cdd77
Merge branch 'master' into feat/keyboard-navigation
mst101 Dec 14, 2020
9baa5a0
WIP - about to rewrite DisabledDatesUtils.js
mst101 Dec 14, 2020
37f3e4f
WIP - about to rewrite DisabledDatesUtils.js
mst101 Dec 14, 2020
ff269f5
WIP - extract functions to utils file
mst101 Dec 15, 2020
6427bf4
WIP - create disabledConfig computed property
mst101 Dec 15, 2020
e838be1
WIP - create HighlightedDates.js
mst101 Dec 15, 2020
90d93a4
Make highlighted disabled text light blue
mst101 Dec 16, 2020
edd4a83
chore(utils): Remove superflous export
mst101 Dec 16, 2020
5f5f733
Merge master into branch
mst101 Dec 16, 2020
84356bf
Merge remote-tracking branch 'upstream/master' into chore/refactor-hi…
mst101 Dec 16, 2020
a05833a
Merge master into branch
mst101 Dec 16, 2020
65b7826
Merge disabled/highlighted into branch
mst101 Dec 16, 2020
c11321a
Fix uneven focus border issue
mst101 Dec 16, 2020
ca38ba0
Tidy up pickerMixin
mst101 Dec 17, 2020
ba4d989
About to extract to class
mst101 Dec 18, 2020
420a96a
About to clean up CellUtils
mst101 Dec 18, 2020
aa1f4d4
Refactor cellUtils.js
mst101 Dec 19, 2020
a892169
Merge highlighted into branch
mst101 Dec 19, 2020
b28ab79
Fix outline on header button focus
mst101 Dec 19, 2020
b81030e
WIP - use disabledConfig
mst101 Dec 19, 2020
9fe999e
WIP
mst101 Dec 28, 2020
3495f66
Remove UpButton.vue
mst101 Jan 13, 2021
391db24
Work on DateInput.spec.js
mst101 Jan 13, 2021
c1ef166
Work on Datepicker.spec.js
mst101 Jan 13, 2021
1297f4f
wip
mst101 Jan 14, 2021
ea51aef
Merge master into branch
mst101 Jan 18, 2021
8625e3a
wip
mst101 Jan 18, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [3.0.1](https://github.com/sumcumo/vue-datepicker/compare/v3.0.0...v3.0.1) (2021-01-18)


### Bug Fixes

* **dateutils:** issue with typeable date on dayless format ([3a69f2e](https://github.com/sumcumo/vue-datepicker/commit/3a69f2ea4ffddef1eaf3f617cf1b048ae84754dd))
* **picker:** isseu with default date in disabled range ([01a947d](https://github.com/sumcumo/vue-datepicker/commit/01a947d7cb5c5490ee6e0ed008c6ca11d63eecdb))

## [3.0.0](https://github.com/sumcumo/vue-datepicker/compare/v2.1.2...v3.0.0) (2020-12-16)

### Breaking Changes
Expand Down
Loading