pptx-viewer-core 1.1.33 → 1.1.34
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/{SvgExporter-DszPzkAO.d.mts → SvgExporter-CGO8Tx9z.d.mts} +1 -1
- package/dist/{SvgExporter-K7gytgbs.d.ts → SvgExporter-DpupBlmk.d.ts} +1 -1
- package/dist/cli/index.d.mts +2 -2
- package/dist/cli/index.d.ts +2 -2
- package/dist/cli/index.js +0 -0
- package/dist/cli/index.mjs +0 -0
- package/dist/converter/index.d.mts +3 -3
- package/dist/converter/index.d.ts +3 -3
- package/dist/index.d.mts +89 -6
- package/dist/index.d.ts +89 -6
- package/dist/index.js +421 -214
- package/dist/index.mjs +417 -215
- package/dist/{presentation-DnczfOWz.d.mts → presentation-CyttD6sq.d.mts} +17 -0
- package/dist/{presentation-DnczfOWz.d.ts → presentation-CyttD6sq.d.ts} +17 -0
- package/dist/{text-operations-Q4Ckgnu_.d.mts → text-operations-D5GfkYT5.d.mts} +1 -1
- package/dist/{text-operations-BpaAJ5gE.d.ts → text-operations-DXebUVQp.d.ts} +1 -1
- package/package.json +1 -1
|
@@ -4284,6 +4284,23 @@ interface OlePptxElement extends PptxElementBase {
|
|
|
4284
4284
|
oleImgW?: number;
|
|
4285
4285
|
/** Authored display height of the OLE object preview, in EMU (`@imgH`). */
|
|
4286
4286
|
oleImgH?: number;
|
|
4287
|
+
/**
|
|
4288
|
+
* The recovered embedded payload as a data-URL (e.g.
|
|
4289
|
+
* `data:application/vnd...;base64,...`), suitable for download or
|
|
4290
|
+
* open-in-new-tab. For a generic "Package" OLE object this is the unwrapped
|
|
4291
|
+
* inner file; for a plain embedded file (e.g. `.xlsx`) it is that file
|
|
4292
|
+
* directly. Undefined when the embedding is missing or unreadable.
|
|
4293
|
+
*
|
|
4294
|
+
* Stored as a data-URL string to mirror how images store decoded bytes
|
|
4295
|
+
* ({@link ImagePptxElement.imageData}) and to stay serialization-safe.
|
|
4296
|
+
*/
|
|
4297
|
+
oleEmbeddedData?: string;
|
|
4298
|
+
/** Original file name of the embedded payload when recoverable. */
|
|
4299
|
+
oleEmbeddedFileName?: string;
|
|
4300
|
+
/** MIME type of the embedded payload, derived from its extension/ProgID. */
|
|
4301
|
+
oleEmbeddedMimeType?: string;
|
|
4302
|
+
/** Size of the embedded payload in bytes. */
|
|
4303
|
+
oleEmbeddedByteSize?: number;
|
|
4287
4304
|
/** Unrecognised graphicFrame extLst extensions, captured verbatim for round-trip. */
|
|
4288
4305
|
extensionXml?: PptxGraphicFrameExtension[];
|
|
4289
4306
|
}
|
|
@@ -4284,6 +4284,23 @@ interface OlePptxElement extends PptxElementBase {
|
|
|
4284
4284
|
oleImgW?: number;
|
|
4285
4285
|
/** Authored display height of the OLE object preview, in EMU (`@imgH`). */
|
|
4286
4286
|
oleImgH?: number;
|
|
4287
|
+
/**
|
|
4288
|
+
* The recovered embedded payload as a data-URL (e.g.
|
|
4289
|
+
* `data:application/vnd...;base64,...`), suitable for download or
|
|
4290
|
+
* open-in-new-tab. For a generic "Package" OLE object this is the unwrapped
|
|
4291
|
+
* inner file; for a plain embedded file (e.g. `.xlsx`) it is that file
|
|
4292
|
+
* directly. Undefined when the embedding is missing or unreadable.
|
|
4293
|
+
*
|
|
4294
|
+
* Stored as a data-URL string to mirror how images store decoded bytes
|
|
4295
|
+
* ({@link ImagePptxElement.imageData}) and to stay serialization-safe.
|
|
4296
|
+
*/
|
|
4297
|
+
oleEmbeddedData?: string;
|
|
4298
|
+
/** Original file name of the embedded payload when recoverable. */
|
|
4299
|
+
oleEmbeddedFileName?: string;
|
|
4300
|
+
/** MIME type of the embedded payload, derived from its extension/ProgID. */
|
|
4301
|
+
oleEmbeddedMimeType?: string;
|
|
4302
|
+
/** Size of the embedded payload in bytes. */
|
|
4303
|
+
oleEmbeddedByteSize?: number;
|
|
4287
4304
|
/** Unrecognised graphicFrame extLst extensions, captured verbatim for round-trip. */
|
|
4288
4305
|
extensionXml?: PptxGraphicFrameExtension[];
|
|
4289
4306
|
}
|