@webkrafters/react-observable-context 5.0.0-rc.4 → 5.0.0-rc.5
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/dist/main/index.js +1 -1
- package/logo.png +0 -0
- package/package.json +17 -12
package/dist/main/index.js
CHANGED
|
@@ -75,10 +75,10 @@ var lodash_isempty_1 = __importDefault(require("lodash.isempty"));
|
|
|
75
75
|
var lodash_isequal_1 = __importDefault(require("lodash.isequal"));
|
|
76
76
|
var lodash_isplainobject_1 = __importDefault(require("lodash.isplainobject"));
|
|
77
77
|
var lodash_omit_1 = __importDefault(require("lodash.omit"));
|
|
78
|
+
var auto_immutable_1 = __importDefault(require("@webkrafters/auto-immutable"));
|
|
78
79
|
var constants = __importStar(require("../constants"));
|
|
79
80
|
var use_render_key_provider_1 = __importDefault(require("./hooks/use-render-key-provider"));
|
|
80
81
|
var use_store_1 = __importDefault(require("./hooks/use-store"));
|
|
81
|
-
var auto_immutable_1 = __importDefault(require("@webkrafters/auto-immutable"));
|
|
82
82
|
var reportNonReactUsage = function reportNonReactUsage() {
|
|
83
83
|
throw new UsageError('Detected usage outside of this context\'s Provider component tree. Please apply the exported Provider component');
|
|
84
84
|
};
|
package/logo.png
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -8,16 +8,9 @@
|
|
|
8
8
|
"steveswork <stephen.isienyi@gmail.com> (https://github.com/steveswork)"
|
|
9
9
|
],
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@webkrafters/auto-immutable": "^1.0.
|
|
12
|
-
"@webkrafters/
|
|
13
|
-
"@webkrafters/
|
|
14
|
-
"@webkrafters/get-property": "^1.1.2",
|
|
15
|
-
"@webkrafters/path-dotize": "0.0.2",
|
|
16
|
-
"lodash.isboolean": "^3.0.3",
|
|
17
|
-
"lodash.isempty": "^4.4.0",
|
|
18
|
-
"lodash.isequal": "^4.5.0",
|
|
19
|
-
"lodash.isplainobject": "^4.0.6",
|
|
20
|
-
"lodash.omit": "^4.5.0"
|
|
11
|
+
"@webkrafters/auto-immutable": "^1.0.1",
|
|
12
|
+
"@webkrafters/data-distillery": "^0.0.3",
|
|
13
|
+
"@webkrafters/path-dotize": "^0.0.2"
|
|
21
14
|
},
|
|
22
15
|
"description": "Observable react context - Update-friendly context. Prevents automatic total component tree tear-down and re-rendering during context updates.",
|
|
23
16
|
"devDependencies": {
|
|
@@ -34,6 +27,7 @@
|
|
|
34
27
|
"@types/jest": "^29.5.12",
|
|
35
28
|
"@types/jest-cli": "^24.3.0",
|
|
36
29
|
"@types/node": "^20.11.28",
|
|
30
|
+
"@webkrafters/clone-total": "^1.0.1",
|
|
37
31
|
"babel-loader": "^9.1.3",
|
|
38
32
|
"eslint": "^8.57.0",
|
|
39
33
|
"eslint-config-standard": "^17.1.0",
|
|
@@ -46,6 +40,11 @@
|
|
|
46
40
|
"jest": "^29.7.0",
|
|
47
41
|
"jest-cli": "^29.7.0",
|
|
48
42
|
"jest-environment-jsdom": "^29.7.0",
|
|
43
|
+
"lodash.isboolean": "^3.0.3",
|
|
44
|
+
"lodash.isempty": "^4.4.0",
|
|
45
|
+
"lodash.isequal": "^4.5.0",
|
|
46
|
+
"lodash.isplainobject": "^4.0.6",
|
|
47
|
+
"lodash.omit": "^4.5.0",
|
|
49
48
|
"react": "^18.3.1",
|
|
50
49
|
"react-dom": "^18.3.1",
|
|
51
50
|
"react-performance-testing": "^2.0.0",
|
|
@@ -93,7 +92,13 @@
|
|
|
93
92
|
"main": "dist/index.js",
|
|
94
93
|
"name": "@webkrafters/react-observable-context",
|
|
95
94
|
"peerDependencies": {
|
|
96
|
-
"@types/react": ">= 16.8.0"
|
|
95
|
+
"@types/react": ">= 16.8.0",
|
|
96
|
+
"lodash.isboolean": ">= 0.1.0",
|
|
97
|
+
"lodash.isempty": ">= 0.1.0",
|
|
98
|
+
"lodash.isequal": ">= 0.1.0",
|
|
99
|
+
"lodash.isplainobject": ">= 0.8.0",
|
|
100
|
+
"lodash.omit": ">= 0.1.0",
|
|
101
|
+
"react": ">= 16.8.0"
|
|
97
102
|
},
|
|
98
103
|
"publishConfig": {
|
|
99
104
|
"access": "public"
|
|
@@ -111,5 +116,5 @@
|
|
|
111
116
|
"test:watch": "eslint --fix && jest --updateSnapshot --watchAll"
|
|
112
117
|
},
|
|
113
118
|
"types": "dist/index.d.ts",
|
|
114
|
-
"version": "5.0.0-rc.
|
|
119
|
+
"version": "5.0.0-rc.5"
|
|
115
120
|
}
|