voxflow 1.15.4 → 1.15.5

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.
@@ -22939,6 +22939,7 @@ const SANS_FAMILY = "'Noto Sans SC Variable', 'PingFang SC', sans-serif";
22939
22939
 
22940
22940
 
22941
22941
  ;// ./src/compositions/PaperSlide/layout-tree.ts
22942
+
22942
22943
  function normalizeV2Children(card) {
22943
22944
  if (!card || typeof card !== "object") return {};
22944
22945
  const children = card.children;
@@ -22970,6 +22971,8 @@ function normalizeV2Children(card) {
22970
22971
  out.list = {
22971
22972
  items: el.items.map((item) => ({ text: item.label }))
22972
22973
  };
22974
+ } else if (el.el === "raw-html") {
22975
+ if (out.rawHtml === void 0 && typeof el.html === "string") out.rawHtml = el.html;
22973
22976
  }
22974
22977
  }
22975
22978
  return out;