@fibery/ui-kit 1.7.4 → 1.7.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fibery/ui-kit",
3
- "version": "1.7.4",
3
+ "version": "1.7.6",
4
4
  "main": "index.ts",
5
5
  "private": false,
6
6
  "files": [
@@ -0,0 +1,3 @@
1
+ import {BackButton} from "./Button/BackButton";
2
+
3
+ export {BackButton};
@@ -143,7 +143,7 @@ export const Select = forwardRef(function Select<
143
143
  setMenuOpenState(false);
144
144
  onMenuClose && onMenuClose();
145
145
  }, [onMenuClose]);
146
- const handleKeyDown: React.KeyboardEventHandler<HTMLInputElement> = useCallback(
146
+ const handleKeyDown: React.KeyboardEventHandler<HTMLDivElement> = useCallback(
147
147
  (e) => {
148
148
  switch (e.key) {
149
149
  case "Escape":