Skip to content

Commit 93c21b7

Browse files
committed
0.36.0
1 parent 4b94466 commit 93c21b7

10 files changed

+34
-23
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
<a name="0.36.0"></a>
2+
# [0.36.0](https://github.com/algolia/autocomplete.js/compare/v0.35.0...v0.36.0) (2019-02-21)
3+
4+
5+
### Bug Fixes
6+
7+
* **standalone:** use aria label from input ([#276](https://github.com/algolia/autocomplete.js/issues/276)) ([4b94466](https://github.com/algolia/autocomplete.js/commit/4b94466))
8+
9+
10+
111
<a name="0.35.0"></a>
212
# [0.35.0](https://github.com/algolia/autocomplete.js/compare/v0.34.0...v0.35.0) (2018-12-17)
313

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "algolia-autocomplete.js",
33
"main": "dist/autocomplete.js",
4-
"version": "0.35.0",
4+
"version": "0.36.0",
55
"homepage": "https://github.com/algolia/autocomplete.js",
66
"authors": [
77
"Algolia Team <[email protected]>"

dist/autocomplete.angular.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
2-
* autocomplete.js 0.35.0
2+
* autocomplete.js 0.36.0
33
* https://github.com/algolia/autocomplete.js
4-
* Copyright 2018 Algolia, Inc. and other contributors; Licensed MIT
4+
* Copyright 2019 Algolia, Inc. and other contributors; Licensed MIT
55
*/
66
/******/ (function(modules) { // webpackBootstrap
77
/******/ // The module cache
@@ -2760,7 +2760,7 @@
27602760
/* 22 */
27612761
/***/ function(module, exports) {
27622762

2763-
module.exports = "0.35.0";
2763+
module.exports = "0.36.0";
27642764

27652765

27662766
/***/ },

dist/autocomplete.angular.min.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/autocomplete.jquery.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
2-
* autocomplete.js 0.35.0
2+
* autocomplete.js 0.36.0
33
* https://github.com/algolia/autocomplete.js
4-
* Copyright 2018 Algolia, Inc. and other contributors; Licensed MIT
4+
* Copyright 2019 Algolia, Inc. and other contributors; Licensed MIT
55
*/
66
/******/ (function(modules) { // webpackBootstrap
77
/******/ // The module cache
@@ -2809,7 +2809,7 @@
28092809
/* 22 */
28102810
/***/ function(module, exports) {
28112811

2812-
module.exports = "0.35.0";
2812+
module.exports = "0.36.0";
28132813

28142814

28152815
/***/ },

dist/autocomplete.jquery.min.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/autocomplete.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
2-
* autocomplete.js 0.35.0
2+
* autocomplete.js 0.36.0
33
* https://github.com/algolia/autocomplete.js
4-
* Copyright 2018 Algolia, Inc. and other contributors; Licensed MIT
4+
* Copyright 2019 Algolia, Inc. and other contributors; Licensed MIT
55
*/
66
(function webpackUniversalModuleDefinition(root, factory) {
77
if(typeof exports === 'object' && typeof module === 'object')
@@ -121,7 +121,8 @@ return /******/ (function(modules) { // webpackBootstrap
121121
datasets: datasets,
122122
keyboardShortcuts: options.keyboardShortcuts,
123123
appendTo: options.appendTo,
124-
autoWidth: options.autoWidth
124+
autoWidth: options.autoWidth,
125+
ariaLabel: options.ariaLabel || input.getAttribute('aria-label')
125126
});
126127
$input.data(typeaheadKey, typeahead);
127128
});
@@ -4063,7 +4064,7 @@ return /******/ (function(modules) { // webpackBootstrap
40634064
/* 22 */
40644065
/***/ function(module, exports) {
40654066

4066-
module.exports = "0.35.0";
4067+
module.exports = "0.36.0";
40674068

40684069

40694070
/***/ },

dist/autocomplete.min.js

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
"release": "./scripts/release.sh",
8080
"docs:netlify": "./scripts/netlify-deploy.js"
8181
},
82-
"version": "0.35.0",
82+
"version": "0.36.0",
8383
"main": "index.js",
8484
"dependencies": {
8585
"immediate": "^3.2.3"

version.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module.exports = "0.35.0";
1+
module.exports = "0.36.0";

0 commit comments

Comments
 (0)