@plasmicapp/react-web 0.2.367 → 0.2.369
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasmicapp/react-web",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.369",
|
|
4
4
|
"description": "plasmic library for rendering in the presentational style",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -97,9 +97,9 @@
|
|
|
97
97
|
},
|
|
98
98
|
"dependencies": {
|
|
99
99
|
"@plasmicapp/auth-react": "0.0.22",
|
|
100
|
-
"@plasmicapp/data-sources": "0.1.
|
|
100
|
+
"@plasmicapp/data-sources": "0.1.171",
|
|
101
101
|
"@plasmicapp/data-sources-context": "0.1.21",
|
|
102
|
-
"@plasmicapp/host": "1.0.
|
|
102
|
+
"@plasmicapp/host": "1.0.211",
|
|
103
103
|
"@plasmicapp/loader-splits": "1.0.62",
|
|
104
104
|
"@plasmicapp/nextjs-app-router": "1.0.15",
|
|
105
105
|
"@plasmicapp/prepass": "1.0.19",
|
|
@@ -167,5 +167,5 @@
|
|
|
167
167
|
"react": ">=16.8.0",
|
|
168
168
|
"react-dom": ">=16.8.0"
|
|
169
169
|
},
|
|
170
|
-
"gitHead": "
|
|
170
|
+
"gitHead": "93119895a0d403158e497a0abdccdcb24d670fb7"
|
|
171
171
|
}
|
package/skinny/dist/index.js
CHANGED
|
@@ -1626,7 +1626,7 @@ function set(obj, keys, val) {
|
|
|
1626
1626
|
keys = keys.split ? keys.split(".") : keys;
|
|
1627
1627
|
var i = 0, l = keys.length, t = obj, x, k;
|
|
1628
1628
|
while (i < l) {
|
|
1629
|
-
k = keys[i++];
|
|
1629
|
+
k = "" + keys[i++];
|
|
1630
1630
|
if (k === "__proto__" || k === "constructor" || k === "prototype")
|
|
1631
1631
|
break;
|
|
1632
1632
|
var newValue = i === l
|