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.
@@ -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
  }
@@ -1,4 +1,4 @@
1
- import { m as PptxData, l as PptxSlide } from './presentation-DnczfOWz.mjs';
1
+ import { m as PptxData, l as PptxSlide } from './presentation-CyttD6sq.mjs';
2
2
 
3
3
  /**
4
4
  * Presentation merge operations for the headless PPTX SDK.
@@ -1,4 +1,4 @@
1
- import { m as PptxData, l as PptxSlide } from './presentation-DnczfOWz.js';
1
+ import { m as PptxData, l as PptxSlide } from './presentation-CyttD6sq.js';
2
2
 
3
3
  /**
4
4
  * Presentation merge operations for the headless PPTX SDK.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pptx-viewer-core",
3
- "version": "1.1.33",
3
+ "version": "1.1.34",
4
4
  "description": "PowerPoint PPTX engine: parse, edit, serialize, and convert .pptx files. Framework-agnostic TypeScript SDK.",
5
5
  "keywords": [
6
6
  "converter",