@acoustte-digital-services/digitalstore-controls-dev 0.8.1-dev.20260320053940 → 0.8.1-dev.20260320071939

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.mjs CHANGED
@@ -1,3 +1,5 @@
1
+ "use client";
2
+
1
3
  // src/components/controls/view/ViewControl.tsx
2
4
  import React11 from "react";
3
5
 
@@ -2605,7 +2607,7 @@ var SVGIconNode = ({ node }) => {
2605
2607
  "span",
2606
2608
  {
2607
2609
  style: {
2608
- display: "flex",
2610
+ display: "inline-flex",
2609
2611
  width: node.width,
2610
2612
  height: node.height,
2611
2613
  color: node.color
@@ -2814,6 +2816,7 @@ var HeadingNode = (props) => {
2814
2816
  const NodeTypes2 = {
2815
2817
  ["text"]: TextNode_default,
2816
2818
  ["link"]: LinkNode_default,
2819
+ ["svg-icon"]: SVGIconNode_default,
2817
2820
  // ["linebreak"]: LineBreakNodeNew,
2818
2821
  ["datafield"]: DatafieldNode_default
2819
2822
  };