Skip to content
This repository was archived by the owner on Jun 17, 2020. It is now read-only.

Commit

Permalink
Version 0.14.3
Browse files Browse the repository at this point in the history
  • Loading branch information
yuku committed Nov 10, 2017
1 parent bad5d78 commit 1bf0ce8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 27 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ This change log adheres to [keepachangelog.com](http://keepachangelog.com).

## [Unreleased]

## [0.14.3] - 2017-11-10
### Fixed
- Fix to make SearchResult.replace work with numeric matches. (thanks for [@mikemorton])

## [0.14.2] - 2017-09-25
### Fixed
- Deactivate dropdown if null change event is fired.
Expand Down Expand Up @@ -167,7 +171,8 @@ Textcomplete loses a lot of weight. Now it is smaller than jquery-textcomplete!
### Added
- Initial release.

[Unreleased]: https://github.com/yuku-t/textcomplete/compare/v0.14.2...HEAD
[Unreleased]: https://github.com/yuku-t/textcomplete/compare/v0.14.3...HEAD
[0.14.3]: https://github.com/yuku-t/textcomplete/compare/v0.14.2...v0.14.3
[0.14.2]: https://github.com/yuku-t/textcomplete/compare/v0.14.1...v0.14.2
[0.14.1]: https://github.com/yuku-t/textcomplete/compare/v0.14.0...v0.14.1
[0.14.0]: https://github.com/yuku-t/textcomplete/compare/v0.13.1...v0.14.0
Expand Down
24 changes: 0 additions & 24 deletions doc/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,21 +35,18 @@
- [Query](#query)
- [execute](#execute)
- [SearchResult](#searchresult)
- [constructor](#constructor)
- [StrategyProperties](#strategyproperties)
- [Strategy](#strategy)
- [destroy](#destroy-4)
- [buildQuery](#buildquery)
- [replace](#replace)
- [Textarea](#textarea)
- [constructor](#constructor-1)
- [destroy](#destroy-5)
- [applySearchResult](#applysearchresult-1)
- [getCursorOffset](#getcursoroffset-1)
- [getBeforeCursor](#getbeforecursor-1)
- [TextcompleteOptions](#textcompleteoptions)
- [Textcomplete](#textcomplete)
- [constructor](#constructor-2)
- [destroy](#destroy-6)
- [register](#register)
- [trigger](#trigger)
Expand Down Expand Up @@ -335,14 +332,6 @@ Encapsulate an result of each search results.
- `term` **[string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String)**
- `strategy` **[Strategy](#strategy)**

### constructor

**Parameters**

- `data` **[object](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object)** An element of array callbacked by search function.
- `term` **[string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String)**
- `strategy` **[Strategy](#strategy)**

## StrategyProperties

Properties for a strategy.
Expand Down Expand Up @@ -398,12 +387,6 @@ Encapsulate the target textarea element.

- `el` **[HTMLTextAreaElement](https://developer.mozilla.org/en-US/docs/Web/API/HTMLTextAreaElement)**

### constructor

**Parameters**

- `el` **[HTMLTextAreaElement](https://developer.mozilla.org/en-US/docs/Web/API/HTMLTextAreaElement)** Where the textcomplete works on.

### destroy

Returns **this**
Expand Down Expand Up @@ -443,13 +426,6 @@ The core of textcomplete. It acts as a mediator.
- `editor` **[Editor](#editor)**
- `options` **[TextcompleteOptions](#textcompleteoptions)** (optional, default `{}`)

### constructor

**Parameters**

- `editor` **[Editor](#editor)** Where the textcomplete works on.
- `options` **[TextcompleteOptions](#textcompleteoptions)** (optional, default `{}`)

### destroy

**Parameters**
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "textcomplete",
"version": "0.14.2",
"version": "0.14.3",
"description": "Autocomplete for textarea elements",
"main": "lib/textcomplete.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/doc/main.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@import "../../node_modules/getbase/dist/style.css";
@import "../../node_modules/getbase/css/styles.css";
@import "../../node_modules/highlight.js/styles/solarized-dark.css";

textarea {
Expand Down

0 comments on commit 1bf0ce8

Please sign in to comment.