@webkrafters/react-observable-context 7.0.2 → 7.0.4

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.
Files changed (2) hide show
  1. package/README.md +5 -3
  2. package/package.json +8 -6
package/README.md CHANGED
@@ -25,18 +25,20 @@
25
25
  <table BORDER-COLOR="0a0" BORDER-WIDTH="2">
26
26
  <td VALIGN="middle" ALIGN="center" FONT-WEIGHT="BOLD" COLOR="#333" HEIGHT="250px" width="1250px">
27
27
  COMPATIBLE WITH REACT VERSIONS 16.8 to 18.x.x.<br />
28
- A NEW EAGLEEYE BASED PRODUCT WILL BE DEVELOPED SPECIFICALLY FOR REACT 19+<br /><br />
29
- PLEASE STAY TUNED.
28
+ FOR REACT 19.2.0 AND ABOVE, PLEASE USE THE <br />
29
+ <a href="https://www.npmjs.com/package/@webkrafters/react-eagleeye">React Eagle Eye</a>
30
30
  </td>
31
31
  </table>
32
32
 
33
33
  <ul>
34
34
  <li> Ready for use anywhere in the app. No Provider components needed.</li>
35
+ <li> Automatically prevents unnecessary cascading re-renders when used with the <a href="https://react-observable-context.js.org/getting-started/#connect-usage"><code>connect</code></a> Stream API.</li>
35
36
  <li> Auto-immutable update-friendly context. See <a href="https://react-observable-context.js.org/concepts/store/setstate"><code>store.setState</code></a>.</li>
36
37
  <li> A context bearing an observable consumer <a href="https://react-observable-context.js.org/concepts/store">store</a>.</li>
37
38
  <li> Recognizes <b>negative array indexing</b>. Please see <a href="https://react-observable-context.js.org/concepts/property-path">Property Path</a> and <code>store.setState</code> <a href="https://react-observable-context.js.org/concepts/store/setstate#indexing">Indexing</a>.</li>
38
39
  <li> Only re-renders subscribing components (<a href="https://react-observable-context.js.org/concepts/client">clients</a>) on context state changes.</li>
39
40
  <li> Subscribing component decides which context state properties' changes to trigger its update.</li>
41
+ <li>OOB Support for framework-agnostic state sharing among applications. Simply create an <a href="https://auto-immutable.js.org/intro/">Auto Immutable</a> instance to pass around as the <code>value</code> argument for this or any <a href="https://eagleeye.js.org">Eagle Eye</a> based state manager instances.</li>
40
42
  </ul>
41
43
 
42
44
  **Name:** React-Observable-Context
@@ -49,7 +51,7 @@
49
51
  If sandbox fails to load app, please refresh dependencies on its lower left.
50
52
 
51
53
  **Install:**\
52
- npm install --save @webkrafters/react-observable-context]
54
+ npm install --save @webkrafters/react-observable-context
53
55
 
54
56
  May also see <b><a href="https://react-observable-context.js.org/history/features">What's Changed?</a></b>
55
57
 
package/package.json CHANGED
@@ -25,7 +25,6 @@
25
25
  "@types/lodash.isplainobject": "^4.0.9",
26
26
  "@types/node": "^20.11.28",
27
27
  "@webkrafters/clone-total": "^1.0.1",
28
- "@webkrafters/data-distillery": "^0.1.1",
29
28
  "@webkrafters/get-property": "^2.0.0",
30
29
  "@webkrafters/path-dotize": "0.0.2",
31
30
  "@webkrafters/timed-map": "^2.0.0",
@@ -50,7 +49,6 @@
50
49
  "lodash.isobject": "^3.0.2",
51
50
  "lodash.isplainobject": "^4.0.6",
52
51
  "lodash.omit": "^4.5.0",
53
- "lodash.set": "^4.3.2",
54
52
  "react": "^18.3.1",
55
53
  "react-dom": "^18.3.1",
56
54
  "react-performance-testing": "^2.0.0",
@@ -88,14 +86,18 @@
88
86
  "peerDependencies": {
89
87
  "@types/react": ">= 16.8.0 <19",
90
88
  "@webkrafters/clone-total": ">= 1.0.1",
91
- "@webkrafters/data-distillery": ">= 0.0.3",
89
+ "@webkrafters/get-property": ">= 1.0.1",
92
90
  "@webkrafters/path-dotize": ">= 0.0.2",
91
+ "@webkrafters/timed-map": "^2.0.0",
92
+ "lodash.clonedeep": ">= 0.1.0",
93
+ "lodash.clonedeepwith": ">= 0.1.0",
93
94
  "lodash.isboolean": ">= 0.1.0",
94
95
  "lodash.isempty": ">= 0.1.0",
96
+ "lodash.isinteger": ">= 0.1.0",
97
+ "lodash.isobject": ">= 0.1.0",
95
98
  "lodash.isequal": ">= 0.1.0",
96
99
  "lodash.isplainobject": ">= 0.8.0",
97
100
  "lodash.omit": ">= 0.1.0",
98
- "lodash.set": ">= 0.1.0",
99
101
  "react": ">= 16.8.0 <19"
100
102
  },
101
103
  "publishConfig": {
@@ -113,8 +115,8 @@
113
115
  "test:watch": "eslint --fix && jest --updateSnapshot --watchAll"
114
116
  },
115
117
  "types": "dist/index.d.ts",
116
- "version": "7.0.2",
118
+ "version": "7.0.4",
117
119
  "dependencies": {
118
- "@webkrafters/eagleeye": "^1.0.1"
120
+ "@webkrafters/eagleeye": "^1.0.5"
119
121
  }
120
122
  }