Skip to content
This repository has been archived by the owner on Sep 20, 2023. It is now read-only.

Commit

Permalink
updated changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarotero committed Feb 20, 2018
1 parent 0efca9d commit f870e29
Showing 1 changed file with 49 additions and 32 deletions.
81 changes: 49 additions & 32 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,94 +1,111 @@
# Change Log

All notable changes to this project will be documented in this file.

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

## 0.5.0 - 2017-11-06
## [0.5.1] - 2018-02-20

### Fixed

- The label/value config of suggestions/groups was not used always

## [0.5.0] - 2017-11-06

### Added

* New `search` property added to suggestions
* New property `query` containing the latest query used
- New `search` property added to suggestions
- New property `query` containing the latest query used

### Changed

* Do not remove the suggestions on close, in order to allow to reopen it again with the same result
* On press the down arrow and the suggestions is closed but with result, reopen it again.
- Do not remove the suggestions on close, in order to allow to reopen it again with the same result
- On press the down arrow and the suggestions is closed but with result, reopen it again.

### Fixed

* Do not remove `ç` character in cleanString
* Close suggestions if the input value is empty
- Do not remove `ç` character in cleanString
- Close suggestions if the input value is empty

## 0.4.1 - 2017-10-27
## [0.4.1] - 2017-10-27

### Fixed

* npm was ignoring required files on publish.
- npm was ignoring required files on publish.

## 0.4.0 - 2017-10-27
## [0.4.0] - 2017-10-27

### Removed
### Added

* ES2015 dist version has been removed. From now, this library is ES6 only. You must use Babel or other transpiler for old browsers compatibility.
- Allow to search words in different order

### Add
### Changed

* Allow to search words in different order
- Removed non alphanumeric characters in the query.

### Changed
### Removed

* Removed non alphanumeric characters in the query.
- ES2015 dist version has been removed. From now, this library is ES6 only. You must use Babel or other transpiler for old browsers compatibility.

## 0.3.3 - 2017-10-19
## [0.3.3] - 2017-10-19

### Fixed

* Exported `Source` class
- Exported `Source` class

## 0.3.2 - 2017-10-19
## [0.3.2] - 2017-10-19

### Changed

* Moved some code from `AjaxSource` and `DatalistSource` to `Source` in order to reuse it and allow to create more ways to load and consume sources.
- Moved some code from `AjaxSource` and `DatalistSource` to `Source` in order to reuse it and allow to create more ways to load and consume sources.

## 0.3.1 - 2017-08-05
## [0.3.1] - 2017-08-05

### Changed

* Upgraded `d_js` to 2.0.
- Upgraded `d_js` to 2.0.

## 0.3.0 - 2017-07-22
## [0.3.0] - 2017-07-22

### Added

* New method `.destroy()` to unbind all events and restore the input to the previous state.
- New method `.destroy()` to unbind all events and restore the input to the previous state.

### Changed

* The escape key not only closes the list of suggestions but also restore the previous value
* Selected any element on mouseover (#1)
- The escape key not only closes the list of suggestions but also restore the previous value
- Selected any element on mouseover (#1)

### Fixed

* Fixed scroll behaviour (#2)
* Switch from `fetch` to `XMLHttpRequest` to fix cors problems in firefox + browsersync (#3)
- Fixed scroll behaviour (#2)
- Switch from `fetch` to `XMLHttpRequest` to fix cors problems in firefox + browsersync (#3)

## 0.2.0 - 2017-07-03
## [0.2.0] - 2017-07-03

### Added

* Auto-scroll the suggestions list if the currently selected element is not visible
- Auto-scroll the suggestions list if the currently selected element is not visible

### Changed

* Do not filter the suggestions in ajaxSource, it's supossed to be filtered by the server.
- Do not filter the suggestions in ajaxSource, it's supossed to be filtered by the server.

### Fixed

* Remove the `is-selected` class to the suggestions on refresh.
- Remove the `is-selected` class to the suggestions on refresh.

## 0.1.0 - 2017-06-25

First version with basic features

[0.5.1]: https://github.com/progressive-web-components/suggestions/compare/v0.5.0...v0.5.1
[0.5.0]: https://github.com/progressive-web-components/suggestions/compare/v0.4.1...v0.5.0
[0.4.1]: https://github.com/progressive-web-components/suggestions/compare/v0.4.0...v0.4.1
[0.4.0]: https://github.com/progressive-web-components/suggestions/compare/v0.3.3...v0.4.0
[0.3.3]: https://github.com/progressive-web-components/suggestions/compare/v0.3.2...v0.3.3
[0.3.2]: https://github.com/progressive-web-components/suggestions/compare/v0.3.1...v0.3.2
[0.3.1]: https://github.com/progressive-web-components/suggestions/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/progressive-web-components/suggestions/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/progressive-web-components/suggestions/compare/v0.1.0...v0.2.0

0 comments on commit f870e29

Please sign in to comment.