Skip to content
This repository has been archived by the owner on Nov 22, 2024. It is now read-only.

Commit

Permalink
Merge pull request #140 from illright/hotfix/date-picker-focus
Browse files Browse the repository at this point in the history
Update the dropdown event interface
illright authored Sep 2, 2020
2 parents 02e5949 + 30240b1 commit 6a776fa
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -4,17 +4,18 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/) and this project adheres to [Semantic Versioning](https://semver.org/).

## [2.1.1] - 2020-09-01
## [2.1.1] - 2020-09-02

Just minor documentation fixes.
Minor documentation and bug fixes.

### Added
- [`<Tab>`](https://github.com/illright/attractions/blob/master/attractions/tab/tab.svelte)s
now also dispatch `click` event.

### Fixed
- Mobile navigation in documentation ("Components" tab dropdown now works as expected).
- Styles now load properly when navigating directly to a page in the docs (without passing through the main page first)
- Styles now load properly when navigating directly to a page in the docs (without passing through the main page first).
- The `DatePicker` now loses focus properly.


## [2.1.0] - 2020-08-21
2 changes: 1 addition & 1 deletion attractions/date-picker/date-picker.svelte
Original file line number Diff line number Diff line change
@@ -56,7 +56,7 @@
}
function clearFocus({ detail: open }) {
if (!open) {
if (!open.value) {
startFocus = false;
endFocus = false;
}

0 comments on commit 6a776fa

Please sign in to comment.