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

Update the dropdown event interface #140

Merged
merged 3 commits into from
Sep 2, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion attractions/date-picker/date-picker.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
}

function clearFocus({ detail: open }) {
if (!open) {
if (!open.value) {
startFocus = false;
endFocus = false;
}
Expand Down