Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Releases: sergiop/react-giphy-searchbox

v2.0.0-beta.1

31 Dec 17:33
Compare
Choose a tag to compare
v2.0.0-beta.1 Pre-release
Pre-release

2.0.0-beta.1 - 2023-12-31

Changed

  • Update the README.md with the new spec.

v2.0.0-beta.0

31 Dec 13:03
Compare
Choose a tag to compare
v2.0.0-beta.0 Pre-release
Pre-release

2.0.0-beta.0 - 2023-12-31

Changed

  • New version rewritten with Typescript.

v1.5.4

27 Dec 11:04
8861030
Compare
Choose a tag to compare

Improvements

  • Replaced any image file dependency (spinner.svg, poweredByGiphy.png) with inline svg.

v1.5.3

27 Dec 11:04
ccf99a9
Compare
Choose a tag to compare

Improvements

  • Removed CSS Modules in favor of a custom CSS-in-JS solution. This allows using the Searchbox on a framework like Next.js that doesn't include CSS Modules in its workflow by default.

Thanks, @Asif-chohan for discovering it.

v1.5.2

24 Dec 14:33
beca4f0
Compare
Choose a tag to compare

Fixes

  • Handle a possible Giphy API bug when a successful response contains undefined pagination.

v1.5.1

23 Dec 16:38
c4c1847
Compare
Choose a tag to compare

Fixes

  • Fix a bug that prevents to handle API errors.

Thanks @rushilshah1 for the catch and the debugging.

v1.5.0

21 Dec 11:23
4a3113f
Compare
Choose a tag to compare

Improvements

  • Added management for image rendition.
  • Added autoFocus prop, allowing to autofocus the search input field on component initialization.

Thanks respectively to @caleb15 and @jkcchan for the suggestions.
References:

v1.4.0

09 Jun 14:14
a012eb1
Compare
Choose a tag to compare

Improvements

  • Added onSearch callback.
  • Security fixes.

Thanks @rushilshah1 for the tip. Reference: #29

v1.3.0

03 May 08:45
83fdd4c
Compare
Choose a tag to compare

Improvements

  • Removed Axios if favor of the native window.fetch() method.

Please note: since window.fetch() is a native method and it doesn't work on old browsers, if you need to support them you have to add a global polyfill like github/fetch or developit/unfetch. Here you can find the global support for window.fetch() method: https://caniuse.com/#search=fetch.

v1.2.2

01 May 14:46
0b4f708
Compare
Choose a tag to compare

Improvements

  • Added fade animation on GIFs
  • Bug fixes