@plasmicapp/react-web 0.2.301 → 0.2.302
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/all.d.ts +317 -44
- package/dist/index.cjs.js +3 -0
- package/dist/index.cjs.js.map +1 -1
- package/dist/react-web.esm.js +3 -0
- package/dist/react-web.esm.js.map +1 -1
- package/package.json +4 -4
- package/skinny/dist/index.js +3 -0
- package/skinny/dist/index.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plasmicapp/react-web",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.302",
|
|
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",
|
|
@@ -87,9 +87,9 @@
|
|
|
87
87
|
},
|
|
88
88
|
"dependencies": {
|
|
89
89
|
"@plasmicapp/auth-react": "0.0.19",
|
|
90
|
-
"@plasmicapp/data-sources": "0.1.
|
|
90
|
+
"@plasmicapp/data-sources": "0.1.140",
|
|
91
91
|
"@plasmicapp/data-sources-context": "0.1.20",
|
|
92
|
-
"@plasmicapp/host": "1.0.
|
|
92
|
+
"@plasmicapp/host": "1.0.182",
|
|
93
93
|
"@plasmicapp/loader-splits": "1.0.49",
|
|
94
94
|
"@plasmicapp/prepass": "1.0.13",
|
|
95
95
|
"@plasmicapp/query": "0.1.77",
|
|
@@ -157,5 +157,5 @@
|
|
|
157
157
|
"react": ">=16.8.0",
|
|
158
158
|
"react-dom": ">=16.8.0"
|
|
159
159
|
},
|
|
160
|
-
"gitHead": "
|
|
160
|
+
"gitHead": "14c20ab68d180b65010b1cce060172af9a6826fd"
|
|
161
161
|
}
|
package/skinny/dist/index.js
CHANGED
|
@@ -590,6 +590,9 @@ function maybeAsString(node) {
|
|
|
590
590
|
if (typeof node === "string") {
|
|
591
591
|
return node;
|
|
592
592
|
}
|
|
593
|
+
if (typeof node === "number") {
|
|
594
|
+
return "".concat(node);
|
|
595
|
+
}
|
|
593
596
|
if (Array.isArray(node) && node.length === 1 && typeof node[0] === "string") {
|
|
594
597
|
return node[0];
|
|
595
598
|
}
|