pptx-viewer-core 1.1.8 → 1.1.10
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/cli/index.js +0 -0
- package/dist/cli/index.mjs +0 -0
- package/dist/index.js +3 -1
- package/dist/index.mjs +3 -1
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
Binary file
|
package/dist/cli/index.mjs
CHANGED
|
Binary file
|
package/dist/index.js
CHANGED
|
@@ -43494,11 +43494,13 @@ var PptxHandlerRuntime54 = class extends PptxHandlerRuntime53 {
|
|
|
43494
43494
|
rawXmlStr = await this.zip.file(slidePath)?.async("string") ?? void 0;
|
|
43495
43495
|
} catch {
|
|
43496
43496
|
}
|
|
43497
|
+
const slidePrefix = slidePath ? `${slidePath}-` : "";
|
|
43497
43498
|
return this.parseSpTreeChildren(
|
|
43498
43499
|
spTree,
|
|
43499
43500
|
slidePath,
|
|
43500
43501
|
rawXmlStr,
|
|
43501
|
-
"p:spTree"
|
|
43502
|
+
"p:spTree",
|
|
43503
|
+
slidePrefix
|
|
43502
43504
|
);
|
|
43503
43505
|
}
|
|
43504
43506
|
};
|
package/dist/index.mjs
CHANGED
|
@@ -43488,11 +43488,13 @@ var PptxHandlerRuntime54 = class extends PptxHandlerRuntime53 {
|
|
|
43488
43488
|
rawXmlStr = await this.zip.file(slidePath)?.async("string") ?? void 0;
|
|
43489
43489
|
} catch {
|
|
43490
43490
|
}
|
|
43491
|
+
const slidePrefix = slidePath ? `${slidePath}-` : "";
|
|
43491
43492
|
return this.parseSpTreeChildren(
|
|
43492
43493
|
spTree,
|
|
43493
43494
|
slidePath,
|
|
43494
43495
|
rawXmlStr,
|
|
43495
|
-
"p:spTree"
|
|
43496
|
+
"p:spTree",
|
|
43497
|
+
slidePrefix
|
|
43496
43498
|
);
|
|
43497
43499
|
}
|
|
43498
43500
|
};
|