Skip to content

Commit

Permalink
chore(release): 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
simonfox committed Sep 18, 2018
1 parent d58efce commit e97a0fa
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 6 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

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.

<a name="2.3.0"></a>
# [2.3.0](https://github.com/drivesoftware/aurelia-autocomplete/compare/2.2.0...v2.3.0) (2018-09-18)


### Features

* **selection:** tab selects item ([d58efce](https://github.com/drivesoftware/aurelia-autocomplete/commit/d58efce))



<a name="2.2.0"></a>
# [2.2.0](https://github.com/drivesoftware/aurelia-autocomplete/compare/2.0.0...v2.2.0) (2018-06-26)

Expand Down
2 changes: 1 addition & 1 deletion dist/amd/autocomplete.js
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ define(['exports', 'aurelia-binding', 'aurelia-templating', 'aurelia-templating-
return;
}

if (key === 13) {
if (key === 13 || key === 9) {
if (this.index >= 0) {
this.select(this.suggestions[this.index]);
}
Expand Down
2 changes: 1 addition & 1 deletion dist/commonjs/autocomplete.js
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ var Autocomplete = exports.Autocomplete = (_dec = (0, _aureliaDependencyInjectio
return;
}

if (key === 13) {
if (key === 13 || key === 9) {
if (this.index >= 0) {
this.select(this.suggestions[this.index]);
}
Expand Down
2 changes: 1 addition & 1 deletion dist/es2015/autocomplete.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ export let Autocomplete = (_dec = inject(Element, BindingEngine, TaskQueue, Opti
return;
}

if (key === 13) {
if (key === 13 || key === 9) {
if (this.index >= 0) {
this.select(this.suggestions[this.index]);
}
Expand Down
2 changes: 1 addition & 1 deletion dist/system/autocomplete.js
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ System.register(['aurelia-binding', 'aurelia-templating', 'aurelia-templating-re
return;
}

if (key === 13) {
if (key === 13 || key === 9) {
if (this.index >= 0) {
this.select(this.suggestions[this.index]);
}
Expand Down
2 changes: 1 addition & 1 deletion 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": "aurelia-autocomplete",
"version": "2.2.0",
"version": "2.3.0",
"description": "Autocomplete control for Aurelia",
"keywords": [
"aurelia",
Expand Down

0 comments on commit e97a0fa

Please sign in to comment.