@uniformdev/mesh-sdk-react 19.214.1-alpha.10 → 19.214.1-alpha.32

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 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
- buffer.push(node.text.replace(variablePrefix, "\\${"));
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
- buffer.push(node.text.replace(variablePrefix, "\\${"));
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
- buffer.push(node.text.replace(variablePrefix, "\\${"));
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.10+98dac3377a",
3
+ "version": "19.214.1-alpha.32+fb2084b713",
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.10+98dac3377a",
54
- "@uniformdev/design-system": "19.214.1-alpha.10+98dac3377a",
55
- "@uniformdev/mesh-sdk": "19.214.1-alpha.10+98dac3377a",
56
- "@uniformdev/richtext": "19.214.1-alpha.10+98dac3377a",
53
+ "@uniformdev/canvas": "19.214.1-alpha.32+fb2084b713",
54
+ "@uniformdev/design-system": "19.214.1-alpha.32+fb2084b713",
55
+ "@uniformdev/mesh-sdk": "19.214.1-alpha.32+fb2084b713",
56
+ "@uniformdev/richtext": "19.214.1-alpha.32+fb2084b713",
57
57
  "dequal": "^2.0.3",
58
58
  "lexical": "0.17.1",
59
59
  "mitt": "3.0.1",
@@ -65,13 +65,12 @@
65
65
  "zod": "3.23.8"
66
66
  },
67
67
  "peerDependencies": {
68
- "@emotion/react": ">=11.8.0",
68
+ "@emotion/react": ">=11.13.5",
69
69
  "react": ">=16.8 || 17 || 18",
70
70
  "react-dom": ">=16.8"
71
71
  },
72
72
  "devDependencies": {
73
- "@emotion/babel-preset-css-prop": "11.11.0",
74
- "@emotion/react": "11.11.3",
73
+ "@emotion/react": "11.13.5",
75
74
  "@storybook/react": "8.3.3",
76
75
  "@svgr/cli": "6.5.1",
77
76
  "@types/react": "18.3.11",
@@ -87,5 +86,5 @@
87
86
  "publishConfig": {
88
87
  "access": "public"
89
88
  },
90
- "gitHead": "98dac3377a8313b1d70d0b02632a6a7192f2409c"
89
+ "gitHead": "fb2084b713e551eb79a28c6d8a372f3b3038d02e"
91
90
  }