Preserve QPowerPoint subtitle lists in PPTX

This commit is contained in:
Курнат Андрей
2026-06-02 05:34:40 +03:00
parent 464484bb19
commit 57cce9ea96
6 changed files with 220 additions and 8 deletions
+2
View File
@@ -87,6 +87,7 @@ export interface Slide {
id: string;
title: string;
subtitle: string;
subtitleListStyle?: SlideListStyle;
notes: string;
theme: "classic" | "ocean" | "graphite";
hidden?: boolean;
@@ -101,6 +102,7 @@ export interface Slide {
images?: SlideImage[];
}
export type SlideListStyle = "bullet" | "number";
export type SlideTransition = "fade" | "push" | "wipe";
export interface SlideImage {