@webkrafters/react-observable-context 4.4.0 → 4.4.2
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.
|
@@ -166,6 +166,9 @@ var Accessor = function () {
|
|
|
166
166
|
return Accessor;
|
|
167
167
|
}();
|
|
168
168
|
function _setValueAt2(propertyPath, atom) {
|
|
169
|
+
if (!atom) {
|
|
170
|
+
return;
|
|
171
|
+
}
|
|
169
172
|
!atom.isConnected(_classPrivateFieldGet(this, _id)) && atom.connect(_classPrivateFieldGet(this, _id));
|
|
170
173
|
_classPrivateFieldGet(this, _value)[propertyPath] = atom.value;
|
|
171
174
|
}
|
package/package.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"steveswork <stephen.isienyi@gmail.com> (https://github.com/steveswork)"
|
|
8
8
|
],
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@webkrafters/get-property": "^1.0
|
|
10
|
+
"@webkrafters/get-property": "^1.1.0",
|
|
11
11
|
"lodash.clonedeepwith": "^4.5.0",
|
|
12
12
|
"lodash.isboolean": "^3.0.3",
|
|
13
13
|
"lodash.isempty": "^4.4.0",
|
|
@@ -133,5 +133,5 @@
|
|
|
133
133
|
"test:watch": "eslint --fix && jest --updateSnapshot --watchAll"
|
|
134
134
|
},
|
|
135
135
|
"types": "dist/main/index.d.ts",
|
|
136
|
-
"version": "4.4.
|
|
136
|
+
"version": "4.4.2"
|
|
137
137
|
}
|