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.
- package/dist/index.js +1 -1
- package/dist/remotion-bundle/bundle.js +3 -0
- package/dist/remotion-bundle/bundle.js.map +1 -1
- package/dist/templates/data-finding/deck.json +40 -0
- package/dist/templates/founder-lesson/deck.json +37 -0
- package/dist/templates/incident-review/deck.json +37 -0
- package/dist/templates/manifest.json +45 -0
- package/dist/templates/product-launch/deck.json +37 -0
- package/dist/templates/quiet-essay/deck.json +37 -0
- package/lib/commands/slice-fork.js +151 -0
- package/lib/commands/slice-render.js +74 -31
- package/lib/commands/slice-stage.js +31 -0
- package/lib/commands/slice.js +9 -0
- package/lib/internal/deck-validator.js +103 -8
- package/lib/stage-core/image-gen.js +233 -0
- package/lib/stage-core/local-render.js +50 -15
- package/lib/stage-core/server.js +55 -2
- package/lib/stage-core/voiceover-mux.js +137 -30
- package/lib/stage-ui/slice/template.js +162 -0
- package/package.json +1 -1
- package/skills/voxflow-slice/SKILL.md +73 -2
- package/skills/voxflow-slice/templates/data-finding/deck.json +40 -0
- package/skills/voxflow-slice/templates/founder-lesson/deck.json +37 -0
- package/skills/voxflow-slice/templates/incident-review/deck.json +37 -0
- package/skills/voxflow-slice/templates/manifest.json +45 -0
- package/skills/voxflow-slice/templates/product-launch/deck.json +37 -0
- package/skills/voxflow-slice/templates/quiet-essay/deck.json +37 -0
|
@@ -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;
|