@spaced-out/ui-design-system 0.0.67 → 0.0.68

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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.0.68](https://github.com/spaced-out/ui-design-system/compare/v0.0.67...v0.0.68) (2023-03-30)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * clickable icon ([#91](https://github.com/spaced-out/ui-design-system/issues/91)) ([266d3c3](https://github.com/spaced-out/ui-design-system/commit/266d3c354133dd9f2b18cab030567a631910400a))
11
+
5
12
  ### [0.0.67](https://github.com/spaced-out/ui-design-system/compare/v0.0.66...v0.0.67) (2023-03-30)
6
13
 
7
14
 
@@ -23,8 +23,8 @@ const ClickableIcon = _ref => {
23
23
  ...props
24
24
  } = _ref;
25
25
  const onKeyDownHandler = e => {
26
- e.preventDefault();
27
26
  if (e.key === 'Enter') {
27
+ e.preventDefault();
28
28
  onClick && onClick(e);
29
29
  }
30
30
  };
@@ -21,8 +21,8 @@ export const ClickableIcon = ({
21
21
  ...props
22
22
  }: IconProps): React.Node => {
23
23
  const onKeyDownHandler = (e) => {
24
- e.preventDefault();
25
24
  if (e.key === 'Enter') {
25
+ e.preventDefault();
26
26
  onClick && onClick(e);
27
27
  }
28
28
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spaced-out/ui-design-system",
3
- "version": "0.0.67",
3
+ "version": "0.0.68",
4
4
  "main": "index.js",
5
5
  "description": "Sense UI components library",
6
6
  "author": {