react-native-global-state-hooks 2.1.13 → 2.1.15
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/README.md +2 -2
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -4,6 +4,8 @@ This is a package to easily handling global-state across your react-native-compo
|
|
|
4
4
|
|
|
5
5
|
This utility uses the **useState** hook within a subscription pattern and **HOFs** to create a more intuitive, atomic and easy way of sharing state between components... You can see the introduction video [here!](https://www.youtube.com/watch?v=WfoMhO1zZ04&t=8s)
|
|
6
6
|
|
|
7
|
+
For seen a running example of the hooks, you can check the following link: [react-global-state-hooks-example](https://johnny-quesada-developer.github.io/react-global-state-hooks-example/)
|
|
8
|
+
|
|
7
9
|
...
|
|
8
10
|
|
|
9
11
|
...
|
|
@@ -884,6 +886,4 @@ The setMetadata is part of the store tools, so it can be used in the actions, bu
|
|
|
884
886
|
|
|
885
887
|
...
|
|
886
888
|
|
|
887
|
-
For seen a running example of the hooks, you can check the following link: [react-global-state-hooks-example](https://johnny-quesada-developer.github.io/react-global-state-hooks-example/)
|
|
888
|
-
|
|
889
889
|
# That's it for now!! hope you enjoy coding!!
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-global-state-hooks",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.15",
|
|
4
4
|
"description": "This is a package to easily handling global-state across your react-native-components No-redux",
|
|
5
5
|
"main": "lib/GlobalStore.js",
|
|
6
6
|
"files": [
|
|
@@ -55,14 +55,14 @@
|
|
|
55
55
|
"eslint-plugin-react": "^7.21.5",
|
|
56
56
|
"eslint-plugin-react-hooks": "^4.2.0",
|
|
57
57
|
"jest": "^26.6.3",
|
|
58
|
-
"react": "
|
|
58
|
+
"react": "^17.0.0",
|
|
59
59
|
"react-test-renderer": "^17.0.1",
|
|
60
60
|
"ts-jest": "^26.4.4",
|
|
61
61
|
"tslib": "^2.5.0",
|
|
62
62
|
"typescript": "^4.9.5"
|
|
63
63
|
},
|
|
64
64
|
"peerDependencies": {
|
|
65
|
-
"react": "
|
|
65
|
+
"react": "^17.0.0"
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
68
|
"json-storage-formatter": "^1.0.5"
|