@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260318123742 → 0.8.1-dev.20260319054248

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.js CHANGED
@@ -2559,7 +2559,7 @@ var TextNode = (props) => {
2559
2559
  return styleObject;
2560
2560
  }
2561
2561
  const Formats = ["", "font-semibold"];
2562
- const styles = cssStringToJson(props.node.style);
2562
+ const styles = cssStringToJson(props.node.style || "");
2563
2563
  return /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("span", { style: { ...styles }, className: props.node.format < Formats.length ? Formats[props.node.format] : "", children: props.node.text });
2564
2564
  };
2565
2565
  var TextNode_default = TextNode;
package/dist/index.mjs CHANGED
@@ -2526,7 +2526,7 @@ var TextNode = (props) => {
2526
2526
  return styleObject;
2527
2527
  }
2528
2528
  const Formats = ["", "font-semibold"];
2529
- const styles = cssStringToJson(props.node.style);
2529
+ const styles = cssStringToJson(props.node.style || "");
2530
2530
  return /* @__PURE__ */ jsx41("span", { style: { ...styles }, className: props.node.format < Formats.length ? Formats[props.node.format] : "", children: props.node.text });
2531
2531
  };
2532
2532
  var TextNode_default = TextNode;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acoustte-digital-services/digitalstore-controls-dev",
3
- "version": "0.8.1-dev.20260318123742",
3
+ "version": "0.8.1-dev.20260319054248",
4
4
  "description": "Reusable React components",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",