@blocklet/list 0.8.17 → 0.8.20

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.
@@ -77,9 +77,9 @@ const Search = _ref => {
77
77
  title: placeholder,
78
78
  "data-cy": "search",
79
79
  endAdornment: searchStr && /*#__PURE__*/_react.default.createElement(_material.InputAdornment, {
80
- "data-cy": "search-delete",
81
80
  position: "end"
82
81
  }, /*#__PURE__*/_react.default.createElement(StyledCloseIcon, {
82
+ "data-cy": "search-delete",
83
83
  onClick: handleClose
84
84
  }))
85
85
  }, rest));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blocklet/list",
3
- "version": "0.8.17",
3
+ "version": "0.8.20",
4
4
  "description": "Common ux components of blocklet",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -58,5 +58,5 @@
58
58
  "babel-plugin-inline-react-svg": "^2.0.1",
59
59
  "babel-plugin-styled-components": "^1.10.7"
60
60
  },
61
- "gitHead": "660a066ab7efb6b77e9a50f0f6e2a8928760409e"
61
+ "gitHead": "a74898c47a9d7e7d14462500ddb677292f2bd68b"
62
62
  }
@@ -43,8 +43,8 @@ const Search = ({ placeholder, ...rest }) => {
43
43
  data-cy="search"
44
44
  endAdornment={
45
45
  searchStr && (
46
- <InputAdornment data-cy="search-delete" position="end">
47
- <StyledCloseIcon onClick={handleClose} />
46
+ <InputAdornment position="end">
47
+ <StyledCloseIcon data-cy="search-delete" onClick={handleClose} />
48
48
  </InputAdornment>
49
49
  )
50
50
  }