Skip to content

Commit

Permalink
Release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tobyzerner committed Jan 28, 2022
1 parent 9c19a69 commit 224a6f3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.0] - 2022-01-28
### Fixed
- Menu: Ensure that Arrow keys only navigate to items that are focusable.
- Modal: Fix focus not being placed correctly when modal is open on creation.
Expand Down Expand Up @@ -80,7 +82,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Mark package as side-effect free.


[Unreleased]: https://github.com/tobyzerner/inclusive-elements/compare/v0.1.0-beta.9...HEAD
[Unreleased]: https://github.com/tobyzerner/inclusive-elements/compare/v0.1.0...HEAD
[0.1.0]: https://github.com/tobyzerner/inclusive-elements/compare/v0.1.0-beta.9...v0.1.0
[0.1.0-beta.9]: https://github.com/tobyzerner/inclusive-elements/compare/v0.1.0-beta.8...v0.1.0-beta.9
[0.1.0-beta.8]: https://github.com/tobyzerner/inclusive-elements/compare/v0.1.0-beta.7...v0.1.0-beta.8
[0.1.0-beta.7]: https://github.com/tobyzerner/inclusive-elements/compare/v0.1.0-beta.6...v0.1.0-beta.7
Expand Down
2 changes: 1 addition & 1 deletion dist/menu/menu.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default class MenuElement extends HTMLElement {
private searchTimeout?;
connectedCallback(): void;
disconnectedCallback(): void;
get items(): HTMLElement[];
private get items();
private onKeyDown;
private navigate;
}
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "inclusive-elements",
"version": "0.1.0-beta.9",
"version": "0.1.0",
"description": "Accessible, lightweight, unstyled implementations of common UI controls.",
"main": "dist/index.js",
"module": "dist/index.js",
Expand Down

0 comments on commit 224a6f3

Please sign in to comment.