@uniformdev/mesh-sdk-react 19.214.1-alpha.10 → 19.214.1-alpha.17
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/index.esm.js +3 -1
- package/dist/index.js +3 -1
- package/dist/index.mjs +3 -1
- package/package.json +6 -6
package/dist/index.esm.js
CHANGED
|
@@ -415,8 +415,10 @@ function serializeVariablesEditorSerializedState(serializedEditorState) {
|
|
|
415
415
|
return result.length > 0 ? result : void 0;
|
|
416
416
|
}
|
|
417
417
|
function serializeRecursive(node, buffer) {
|
|
418
|
+
var _a;
|
|
418
419
|
if (node.type === TextNode.getType()) {
|
|
419
|
-
|
|
420
|
+
const nodeText = node.text;
|
|
421
|
+
buffer.push((_a = nodeText == null ? void 0 : nodeText.replace(variablePrefix, "\\${")) != null ? _a : "");
|
|
420
422
|
}
|
|
421
423
|
if (node.type === VariableNode.getType()) {
|
|
422
424
|
buffer.push(createVariableReference(node.reference));
|
package/dist/index.js
CHANGED
|
@@ -590,8 +590,10 @@ function serializeVariablesEditorSerializedState(serializedEditorState) {
|
|
|
590
590
|
return result.length > 0 ? result : void 0;
|
|
591
591
|
}
|
|
592
592
|
function serializeRecursive(node, buffer) {
|
|
593
|
+
var _a;
|
|
593
594
|
if (node.type === import_lexical.TextNode.getType()) {
|
|
594
|
-
|
|
595
|
+
const nodeText = node.text;
|
|
596
|
+
buffer.push((_a = nodeText == null ? void 0 : nodeText.replace(variablePrefix, "\\${")) != null ? _a : "");
|
|
595
597
|
}
|
|
596
598
|
if (node.type === VariableNode.getType()) {
|
|
597
599
|
buffer.push((0, import_canvas2.createVariableReference)(node.reference));
|
package/dist/index.mjs
CHANGED
|
@@ -415,8 +415,10 @@ function serializeVariablesEditorSerializedState(serializedEditorState) {
|
|
|
415
415
|
return result.length > 0 ? result : void 0;
|
|
416
416
|
}
|
|
417
417
|
function serializeRecursive(node, buffer) {
|
|
418
|
+
var _a;
|
|
418
419
|
if (node.type === TextNode.getType()) {
|
|
419
|
-
|
|
420
|
+
const nodeText = node.text;
|
|
421
|
+
buffer.push((_a = nodeText == null ? void 0 : nodeText.replace(variablePrefix, "\\${")) != null ? _a : "");
|
|
420
422
|
}
|
|
421
423
|
if (node.type === VariableNode.getType()) {
|
|
422
424
|
buffer.push(createVariableReference(node.reference));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/mesh-sdk-react",
|
|
3
|
-
"version": "19.214.1-alpha.
|
|
3
|
+
"version": "19.214.1-alpha.17+15e689c12c",
|
|
4
4
|
"description": "Uniform Mesh Framework SDK for React",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -50,10 +50,10 @@
|
|
|
50
50
|
"@lexical/selection": "0.17.1",
|
|
51
51
|
"@lexical/utils": "0.17.1",
|
|
52
52
|
"@react-icons/all-files": "https://github.com/react-icons/react-icons/releases/download/v5.2.1/react-icons-all-files-5.2.1.tgz",
|
|
53
|
-
"@uniformdev/canvas": "19.214.1-alpha.
|
|
54
|
-
"@uniformdev/design-system": "19.214.1-alpha.
|
|
55
|
-
"@uniformdev/mesh-sdk": "19.214.1-alpha.
|
|
56
|
-
"@uniformdev/richtext": "19.214.1-alpha.
|
|
53
|
+
"@uniformdev/canvas": "19.214.1-alpha.17+15e689c12c",
|
|
54
|
+
"@uniformdev/design-system": "19.214.1-alpha.17+15e689c12c",
|
|
55
|
+
"@uniformdev/mesh-sdk": "19.214.1-alpha.17+15e689c12c",
|
|
56
|
+
"@uniformdev/richtext": "19.214.1-alpha.17+15e689c12c",
|
|
57
57
|
"dequal": "^2.0.3",
|
|
58
58
|
"lexical": "0.17.1",
|
|
59
59
|
"mitt": "3.0.1",
|
|
@@ -87,5 +87,5 @@
|
|
|
87
87
|
"publishConfig": {
|
|
88
88
|
"access": "public"
|
|
89
89
|
},
|
|
90
|
-
"gitHead": "
|
|
90
|
+
"gitHead": "15e689c12ce848ce17d170f9be8c6f3d2c29ffe1"
|
|
91
91
|
}
|