Skip to content

Commit

Permalink
Fix blur typinhg
Browse files Browse the repository at this point in the history
  • Loading branch information
borisbelmar committed Apr 26, 2024
1 parent 5523f30 commit 974de49
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/an-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@arrow-navigation/core",
"version": "2.2.0",
"version": "2.1.2",
"description": "Zero-dependency library to navigate through UI elements using the keyboard arrow keys built with Typescript",
"main": "./lib/index.js",
"module": "./lib/index.mjs",
Expand Down
2 changes: 1 addition & 1 deletion packages/an-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@arrow-navigation/react",
"version": "2.2.0",
"version": "2.1.2",
"description": "A light and performant React implementation for @arrow-navigation/core package.",
"publishConfig": {
"access": "public"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import useFocusableGroupContext from './hooks/useFocusableGroupContext'

export type GroupFocusEventResult = FocusEventResult<FocusableGroupConfig>
export type GroupFocusEvent = (event: GroupFocusEventResult) => void
export type GroupBlurEventResult = FocusEventResult<FocusableGroupConfig>
export type GroupBlurEventResult = BlurEventResult<FocusableGroupConfig>
export type GroupBlurEvent = (event: GroupBlurEventResult) => void

export type GroupOptions = {
Expand Down

0 comments on commit 974de49

Please sign in to comment.