@cashub/ui 0.16.0 → 0.16.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +2 -1
  2. package/select/Select.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cashub/ui",
3
- "version": "0.16.0",
3
+ "version": "0.16.2",
4
4
  "private": false,
5
5
  "author": "CASHUB Team",
6
6
  "description": "CASHUB UI components library",
@@ -33,6 +33,7 @@
33
33
  "react-popper": "^2.3.0",
34
34
  "react-router-dom": "^5.2.0",
35
35
  "react-toastify": "^7.0.4",
36
+ "react-transition-group": "^4.4.2",
36
37
  "styled-components": "^5.3.0"
37
38
  },
38
39
  "peerDependencies": {
package/select/Select.js CHANGED
@@ -418,7 +418,7 @@ var Select = function Select(_ref) {
418
418
 
419
419
  var handleSearchChange = function handleSearchChange(event) {
420
420
  if (onSearch) {
421
- onSearch();
421
+ onSearch(event.target.value);
422
422
  }
423
423
 
424
424
  setSearch(event.target.value);