@webkrafters/react-observable-context 4.0.0-alpha.6s → 4.0.0-rc.0
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 +8 -19
- package/package.json +13 -3
package/README.md
CHANGED
|
@@ -1,34 +1,21 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img alt="Eagle Eye" height="150px" src="eagle-eye.png" width="250px" />
|
|
3
|
+
</p>
|
|
1
4
|
<p align="center">
|
|
2
5
|
<a href="https://typescriptlang.org">
|
|
3
6
|
<img alt="TypeScript" src="https://badgen.net/badge/icon/typescript?icon=typescript&label">
|
|
4
7
|
</a>
|
|
5
|
-
<a href="
|
|
6
|
-
<img alt="GitHub
|
|
7
|
-
</a>
|
|
8
|
-
<a href="#">
|
|
9
|
-
<img alt="GitHub Workflow Status (with branch)" src="https://img.shields.io/github/actions/workflow/status/webKrafters/react-observable-context/test.yml?branch=main">
|
|
8
|
+
<a href="https://github.com/webKrafters/react-observable-context/actions">
|
|
9
|
+
<img alt="GitHub Workflow Status" src="https://img.shields.io/github/actions/workflow/status/webKrafters/react-observable-context/test.yml">
|
|
10
10
|
</a>
|
|
11
11
|
<a href="https://coveralls.io/github/webKrafters/react-observable-context">
|
|
12
12
|
<img alt="coverage" src="https://img.shields.io/coveralls/github/webKrafters/react-observable-context">
|
|
13
13
|
</a>
|
|
14
|
-
<img alt="Maintenance" src="https://img.shields.io/maintenance/yes/2032">
|
|
15
14
|
<img alt="NPM" src="https://img.shields.io/npm/l/@webkrafters/react-observable-context">
|
|
15
|
+
<img alt="Maintenance" src="https://img.shields.io/maintenance/yes/2032">
|
|
16
16
|
<img alt="npm bundle size (scoped)" src="https://img.shields.io/bundlephobia/minzip/@webkrafters/react-observable-context">
|
|
17
17
|
<img alt="GitHub package.json version" src="https://img.shields.io/github/package-json/v/webKrafters/react-observable-context">
|
|
18
18
|
</p>
|
|
19
|
-
<p align="center">
|
|
20
|
-
<img alt="Eagle Eye" height="320px" src="eagle-eye.png" width="640px" />
|
|
21
|
-
</p>
|
|
22
|
-
|
|
23
|
-
<br />
|
|
24
|
-
|
|
25
|
-
<br />
|
|
26
|
-
|
|
27
|
-
<p>This version is currently under test. Please continue to use our latest stable release at: 3.0.0.</p>
|
|
28
|
-
<p>npm install --save @webkrafters/react-observable-context@3.0.0</p>
|
|
29
|
-
<p>Thank you!</p>
|
|
30
|
-
|
|
31
|
-
<br />
|
|
32
19
|
|
|
33
20
|
# React-Observable-Context [Eagle Eye]
|
|
34
21
|
|
|
@@ -42,6 +29,8 @@ Subscribing component decides which context state properties' changes to trigger
|
|
|
42
29
|
|
|
43
30
|
**Usage:** Please see [Usage](#usage) section
|
|
44
31
|
|
|
32
|
+
**Demo:** [Play with the app on codesandbox](https://codesandbox.io/s/github/webKrafters/react-observable-context-app)
|
|
33
|
+
|
|
45
34
|
**Install:**\
|
|
46
35
|
npm i -S @webkrafters/react-observable-context\
|
|
47
36
|
npm install --save @webkrafters/react-observable-context
|
package/package.json
CHANGED
|
@@ -93,9 +93,18 @@
|
|
|
93
93
|
"keywords": [
|
|
94
94
|
"connect",
|
|
95
95
|
"context",
|
|
96
|
-
"
|
|
97
|
-
"
|
|
96
|
+
"hoc",
|
|
97
|
+
"hooks",
|
|
98
|
+
"observable",
|
|
99
|
+
"observable context",
|
|
98
100
|
"react",
|
|
101
|
+
"react context",
|
|
102
|
+
"react hooks",
|
|
103
|
+
"react observable conttext",
|
|
104
|
+
"react state",
|
|
105
|
+
"state",
|
|
106
|
+
"state management",
|
|
107
|
+
"state manager",
|
|
99
108
|
"useContext"
|
|
100
109
|
],
|
|
101
110
|
"license": "MIT",
|
|
@@ -116,8 +125,9 @@
|
|
|
116
125
|
"build": "eslint --fix && rm -rf dist && babel src -d dist && npx -p typescript tsc",
|
|
117
126
|
"postbuild": "node ./post-builder",
|
|
118
127
|
"test": "eslint --fix && jest --coverage --updateSnapshot",
|
|
128
|
+
"test:core": "jest --updateSnapshot",
|
|
119
129
|
"test:watch": "eslint --fix && jest --updateSnapshot --watchAll"
|
|
120
130
|
},
|
|
121
131
|
"types": "dist/main/index.d.ts",
|
|
122
|
-
"version": "4.0.0-
|
|
132
|
+
"version": "4.0.0-rc.0"
|
|
123
133
|
}
|