@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/dist/react-web.esm.js
CHANGED
|
@@ -1572,6 +1572,9 @@ function maybeAsString(node) {
|
|
|
1572
1572
|
if (typeof node === "string") {
|
|
1573
1573
|
return node;
|
|
1574
1574
|
}
|
|
1575
|
+
if (typeof node === "number") {
|
|
1576
|
+
return "".concat(node);
|
|
1577
|
+
}
|
|
1575
1578
|
if (Array.isArray(node) && node.length === 1 && typeof node[0] === "string") {
|
|
1576
1579
|
return node[0];
|
|
1577
1580
|
}
|