-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Used shallowequal to compare props in usePopup (#88)
* Used shallowequal to compare props in usePopup * Removed dependency array * Updated version to 0.5.1
- Loading branch information
1 parent
116b081
commit 1355ef9
Showing
5 changed files
with
125 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll": true | ||
"source.fixAll": "explicit" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "reactive-popups", | ||
"version": "0.5.0", | ||
"version": "0.5.1", | ||
"description": "Easy popup management with React", | ||
"files": [ | ||
"dist" | ||
|
@@ -37,6 +37,7 @@ | |
"@testing-library/react": "^13.3.0", | ||
"@types/jest": "^29.5.1", | ||
"@types/react": "^18.0.9", | ||
"@types/shallowequal": "^1.1.5", | ||
"@typescript-eslint/eslint-plugin": "^4.33.0", | ||
"aqu": "^0.4.3", | ||
"clean-publish": "^4.2.0", | ||
|
@@ -56,13 +57,14 @@ | |
"dependencies": { | ||
"@sirse-dev/safe-context": "^0.3.0", | ||
"nanoid": "^3.3.6", | ||
"shallowequal": "^1.1.0", | ||
"tiny-invariant": "^1.2.0" | ||
}, | ||
"peerDependencies": { | ||
"react": ">=16" | ||
}, | ||
"packageManager": "[email protected]", | ||
"engines": { | ||
"node": "18.12.1" | ||
"node": "20.11.0" | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters