Skip to content

Commit

Permalink
v1.5.2
Browse files Browse the repository at this point in the history
<a name="1.5.2"></a>
## [1.5.2](v1.5.1...v1.5.2) (2016-06-10)

### Bug Fixes

* **lite:** use lite algoliasearch build (js client) ([219fa9f](219fa9f)), closes [#1024](#1024)
* **poweredBy:** Let users define their own poweredBy template ([f1a96d8](f1a96d8))
  • Loading branch information
vvo committed Jun 10, 2016
1 parent 5d12073 commit d8885fb
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 10 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
<a name="1.5.2"></a>
## [1.5.2](https://github.com/algolia/instantsearch.js/compare/v1.5.1...v1.5.2) (2016-06-10)


### Bug Fixes

* **lite:** use lite algoliasearch build (js client) ([219fa9f](https://github.com/algolia/instantsearch.js/commit/219fa9f)), closes [#1024](https://github.com/algolia/instantsearch.js/issues/1024)
* **poweredBy:** Let users define their own poweredBy template ([f1a96d8](https://github.com/algolia/instantsearch.js/commit/f1a96d8))



<a name="1.5.1"></a>
## [1.5.1](https://github.com/algolia/instantsearch.js/compare/v1.5.0...v1.5.1) (2016-05-17)

Expand Down
29 changes: 22 additions & 7 deletions docs/_includes/widget-jsdoc/searchBox.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,29 @@
<p class="attr-description">Input's placeholder</p>
<p class="attr-name">
<span class='attr-optional'>`options.poweredBy`<span class="show-description">…</span></span>
<span class="attr-infos">Default:<code class="attr-default">false</code>(<code>boolean</code>)</span>
<span class="attr-infos">Default:<code class="attr-default">false</code>(<code>boolean</code> &#124; <code>Object</code>)</span>
</p>
<p class="attr-description">Define if a "powered by Algolia" link should be added near the input</p>
<p class="attr-name">
<span class='attr-optional'>`options.poweredBy.template`<span class="show-description">…</span></span>
<span class="attr-infos">(<code>function</code> &#124; <code>string</code>)</span>
</p>
<p class="attr-description">Template used for displaying the link. Can accept a function or a Hogan string.</p>
<p class="attr-name">
<span class='attr-optional'>`options.poweredBy.cssClasses`<span class="show-description">…</span></span>
<span class="attr-infos">(<code>number</code>)</span>
</p>
<p class="attr-description">Show a powered by Algolia link below the input</p>
<p class="attr-description">CSS classes to add</p>
<p class="attr-name">
<span class='attr-optional'>`options.poweredBy.cssClasses.root`<span class="show-description">…</span></span>
<span class="attr-infos">(<code>string</code> &#124; <code>Array.&lt;string&gt;</code>)</span>
</p>
<p class="attr-description">CSS class to add to the root element</p>
<p class="attr-name">
<span class='attr-optional'>`options.poweredBy.cssClasses.link`<span class="show-description">…</span></span>
<span class="attr-infos">(<code>string</code> &#124; <code>Array.&lt;string&gt;</code>)</span>
</p>
<p class="attr-description">CSS class to add to the link element</p>
<p class="attr-name">
<span class='attr-optional'>`options.wrapInput`<span class="show-description">…</span></span>
<span class="attr-infos">Default:<code class="attr-default">true</code>(<code>boolean</code>)</span>
Expand Down Expand Up @@ -45,11 +65,6 @@
</p>
<p class="attr-description">CSS class to add to the input</p>
<p class="attr-name">
<span class='attr-optional'>`options.cssClasses.poweredBy`<span class="show-description">…</span></span>
<span class="attr-infos">(<code>string</code> &#124; <code>Array.&lt;string&gt;</code>)</span>
</p>
<p class="attr-description">CSS class to add to the poweredBy element</p>
<p class="attr-name">
<span class='attr-optional'>`options.queryHook`<span class="show-description">…</span></span>
<span class="attr-infos">(<code>function</code>)</span>
</p>
Expand Down
2 changes: 1 addition & 1 deletion npm-shrinkwrap.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": "instantsearch.js",
"version": "1.5.1",
"version": "1.5.2",
"description": "instantsearch.js is a library of widgets to build high performance instant search experiences using Algolia",
"main": "dist-es5-module/index.js",
"author": "Algolia <support@algolia.com>",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export default '1.5.1';
export default '1.5.2';

0 comments on commit d8885fb

Please sign in to comment.