pptx-viewer-core 1.2.7 → 1.3.0
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/CHANGELOG.md +4 -0
- package/dist/{SvgExporter-CG73UVb9.d.ts → SvgExporter-C6DiFjN8.d.ts} +1 -1
- package/dist/{SvgExporter-BKbDaGaC.d.mts → SvgExporter-Hv9ofMZv.d.mts} +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/converter/index.js +0 -0
- package/dist/converter/index.mjs +0 -0
- package/dist/index.d.mts +44 -6
- package/dist/index.d.ts +44 -6
- package/dist/index.js +201 -1
- package/dist/index.mjs +200 -2
- package/dist/{presentation-CLc4eS3z.d.mts → presentation-BfnrtJV1.d.mts} +3242 -3242
- package/dist/{presentation-CLc4eS3z.d.ts → presentation-BfnrtJV1.d.ts} +3242 -3242
- package/dist/{text-operations-oN04X1yi.d.ts → text-operations-BjPf391u.d.ts} +1 -1
- package/dist/{text-operations-CCKEVX_5.d.mts → text-operations-DMQi9vpL.d.mts} +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -254,6 +254,178 @@ var THEME_PRESETS = [
|
|
|
254
254
|
METROPOLITAN_PRESET
|
|
255
255
|
];
|
|
256
256
|
|
|
257
|
+
// src/core/types/collaboration-field-schema.ts
|
|
258
|
+
var ELEMENT_FIELD_KIND = {
|
|
259
|
+
// PptxElementBase
|
|
260
|
+
id: "scalar",
|
|
261
|
+
shapeId: "scalar",
|
|
262
|
+
name: "scalar",
|
|
263
|
+
x: "scalar",
|
|
264
|
+
y: "scalar",
|
|
265
|
+
width: "scalar",
|
|
266
|
+
height: "scalar",
|
|
267
|
+
rotation: "scalar",
|
|
268
|
+
skewX: "scalar",
|
|
269
|
+
skewY: "scalar",
|
|
270
|
+
flipHorizontal: "scalar",
|
|
271
|
+
flipVertical: "scalar",
|
|
272
|
+
hidden: "scalar",
|
|
273
|
+
opacity: "scalar",
|
|
274
|
+
rawXml: "complex",
|
|
275
|
+
actionClick: "complex",
|
|
276
|
+
actionHover: "complex",
|
|
277
|
+
locks: "complex",
|
|
278
|
+
extLstXml: "complex",
|
|
279
|
+
// discriminant
|
|
280
|
+
type: "scalar",
|
|
281
|
+
// PptxTextProperties
|
|
282
|
+
text: "scalar",
|
|
283
|
+
textStyle: "complex",
|
|
284
|
+
textSegments: "text",
|
|
285
|
+
paragraphIndents: "complex",
|
|
286
|
+
promptText: "scalar",
|
|
287
|
+
linkedTxbxId: "scalar",
|
|
288
|
+
linkedTxbxSeq: "scalar",
|
|
289
|
+
// PptxShapeProperties
|
|
290
|
+
shapeStyle: "complex",
|
|
291
|
+
shapeType: "scalar",
|
|
292
|
+
shapeAdjustments: "complex",
|
|
293
|
+
adjustmentHandles: "complex",
|
|
294
|
+
// PptxCustomPathProperties
|
|
295
|
+
pathData: "scalar",
|
|
296
|
+
pathWidth: "scalar",
|
|
297
|
+
pathHeight: "scalar",
|
|
298
|
+
customGeometryPaths: "complex",
|
|
299
|
+
customGeometryRawData: "complex",
|
|
300
|
+
customGeometryAdjustHandlesXY: "complex",
|
|
301
|
+
customGeometryAdjustHandlesPolar: "complex",
|
|
302
|
+
customGeometryConnectionSites: "complex",
|
|
303
|
+
customGeometryTextRect: "complex",
|
|
304
|
+
// PptxImageProperties
|
|
305
|
+
imageData: "scalar",
|
|
306
|
+
imagePath: "scalar",
|
|
307
|
+
svgData: "scalar",
|
|
308
|
+
svgPath: "scalar",
|
|
309
|
+
altText: "scalar",
|
|
310
|
+
cropLeft: "scalar",
|
|
311
|
+
cropTop: "scalar",
|
|
312
|
+
cropRight: "scalar",
|
|
313
|
+
cropBottom: "scalar",
|
|
314
|
+
tileOffsetX: "scalar",
|
|
315
|
+
tileOffsetY: "scalar",
|
|
316
|
+
tileScaleX: "scalar",
|
|
317
|
+
tileScaleY: "scalar",
|
|
318
|
+
tileFlip: "scalar",
|
|
319
|
+
tileAlignment: "scalar",
|
|
320
|
+
imageEffects: "complex",
|
|
321
|
+
cropShape: "complex",
|
|
322
|
+
// TablePptxElement / ChartPptxElement / SmartArtPptxElement
|
|
323
|
+
tableData: "complex",
|
|
324
|
+
chartData: "complex",
|
|
325
|
+
smartArtData: "complex",
|
|
326
|
+
extensionXml: "complex",
|
|
327
|
+
// OlePptxElement
|
|
328
|
+
oleTarget: "scalar",
|
|
329
|
+
oleProgId: "scalar",
|
|
330
|
+
oleName: "scalar",
|
|
331
|
+
oleClsId: "scalar",
|
|
332
|
+
oleObjectType: "scalar",
|
|
333
|
+
oleFileExtension: "scalar",
|
|
334
|
+
fileName: "scalar",
|
|
335
|
+
isLinked: "scalar",
|
|
336
|
+
externalPath: "scalar",
|
|
337
|
+
previewImage: "scalar",
|
|
338
|
+
previewImageData: "asset",
|
|
339
|
+
oleShowAsIcon: "scalar",
|
|
340
|
+
oleImgW: "scalar",
|
|
341
|
+
oleImgH: "scalar",
|
|
342
|
+
oleEmbeddedData: "asset",
|
|
343
|
+
oleEmbeddedFileName: "scalar",
|
|
344
|
+
oleEmbeddedMimeType: "scalar",
|
|
345
|
+
oleEmbeddedByteSize: "scalar",
|
|
346
|
+
// MediaPptxElement
|
|
347
|
+
mediaType: "scalar",
|
|
348
|
+
mediaPath: "scalar",
|
|
349
|
+
mediaData: "asset",
|
|
350
|
+
mediaMimeType: "scalar",
|
|
351
|
+
trimStartMs: "scalar",
|
|
352
|
+
trimEndMs: "scalar",
|
|
353
|
+
posterFramePath: "scalar",
|
|
354
|
+
posterFrameData: "asset",
|
|
355
|
+
fullScreen: "scalar",
|
|
356
|
+
loop: "scalar",
|
|
357
|
+
fadeInDuration: "scalar",
|
|
358
|
+
fadeOutDuration: "scalar",
|
|
359
|
+
volume: "scalar",
|
|
360
|
+
autoPlay: "scalar",
|
|
361
|
+
playAcrossSlides: "scalar",
|
|
362
|
+
hideWhenNotPlaying: "scalar",
|
|
363
|
+
bookmarks: "complex",
|
|
364
|
+
playbackSpeed: "scalar",
|
|
365
|
+
metadata: "complex",
|
|
366
|
+
captionTracks: "complex",
|
|
367
|
+
mediaMissing: "scalar",
|
|
368
|
+
// GroupPptxElement
|
|
369
|
+
children: "complex",
|
|
370
|
+
groupFill: "complex",
|
|
371
|
+
// InkPptxElement
|
|
372
|
+
inkPaths: "scalar",
|
|
373
|
+
inkColors: "scalar",
|
|
374
|
+
inkWidths: "scalar",
|
|
375
|
+
inkOpacities: "scalar",
|
|
376
|
+
inkTool: "scalar",
|
|
377
|
+
inkPointPressures: "complex",
|
|
378
|
+
// ContentPartPptxElement
|
|
379
|
+
inkStrokes: "complex",
|
|
380
|
+
// ZoomPptxElement
|
|
381
|
+
zoomType: "scalar",
|
|
382
|
+
targetSlideIndex: "scalar",
|
|
383
|
+
targetSectionId: "scalar",
|
|
384
|
+
// Model3DPptxElement
|
|
385
|
+
modelPath: "scalar",
|
|
386
|
+
modelData: "asset",
|
|
387
|
+
modelMimeType: "scalar",
|
|
388
|
+
posterImage: "scalar"
|
|
389
|
+
};
|
|
390
|
+
var SLIDE_FIELD_KIND = {
|
|
391
|
+
id: "scalar",
|
|
392
|
+
rId: "scalar",
|
|
393
|
+
sourceSlideId: "scalar",
|
|
394
|
+
name: "scalar",
|
|
395
|
+
layoutPath: "scalar",
|
|
396
|
+
layoutName: "scalar",
|
|
397
|
+
slideNumber: "scalar",
|
|
398
|
+
hidden: "scalar",
|
|
399
|
+
sectionName: "scalar",
|
|
400
|
+
sectionId: "scalar",
|
|
401
|
+
elements: "nested",
|
|
402
|
+
backgroundColor: "scalar",
|
|
403
|
+
backgroundImage: "scalar",
|
|
404
|
+
backgroundGradient: "scalar",
|
|
405
|
+
backgroundPattern: "complex",
|
|
406
|
+
backgroundShadeToTitle: "scalar",
|
|
407
|
+
transition: "complex",
|
|
408
|
+
animations: "complex",
|
|
409
|
+
nativeAnimations: "complex",
|
|
410
|
+
rawTiming: "complex",
|
|
411
|
+
notes: "scalar",
|
|
412
|
+
notesSegments: "complex",
|
|
413
|
+
notesShapes: "complex",
|
|
414
|
+
notesClrMapOverride: "complex",
|
|
415
|
+
notesCSldName: "scalar",
|
|
416
|
+
comments: "complex",
|
|
417
|
+
warnings: "complex",
|
|
418
|
+
rawXml: "complex",
|
|
419
|
+
clrMapOverride: "complex",
|
|
420
|
+
backgroundShowAnimation: "scalar",
|
|
421
|
+
showMasterShapes: "scalar",
|
|
422
|
+
guides: "complex",
|
|
423
|
+
isDirty: "scalar",
|
|
424
|
+
customerData: "complex",
|
|
425
|
+
activeXControls: "complex",
|
|
426
|
+
headerFooterFlags: "complex"
|
|
427
|
+
};
|
|
428
|
+
|
|
257
429
|
// src/core/geometry/guide-formula-eval.ts
|
|
258
430
|
var ANGLE_SCALE = 6e4;
|
|
259
431
|
function angleToRadians(ooxmlAngle) {
|
|
@@ -12185,6 +12357,19 @@ var PptxRuntimeDependencyFactory = class {
|
|
|
12185
12357
|
// More generally, OOXML element text is always an untyped string;
|
|
12186
12358
|
// downstream callers coerce where needed.
|
|
12187
12359
|
parseTagValue: false,
|
|
12360
|
+
// `<a:t>` run text must survive verbatim. PowerPoint frequently
|
|
12361
|
+
// splits a sentence across many runs (spell-check, autocorrect),
|
|
12362
|
+
// and a word boundary often ends up as its own run whose `<a:t>`
|
|
12363
|
+
// is a single space, e.g. `<a:r><a:t> </a:t></a:r>`.
|
|
12364
|
+
// fast-xml-parser's default `trimValues: true` trims that
|
|
12365
|
+
// whitespace-only text node down to `""`, silently dropping the
|
|
12366
|
+
// space and gluing the surrounding words together
|
|
12367
|
+
// ("so we immediately start" -> "soweimmediatelystart"). Turn
|
|
12368
|
+
// trimming off globally and re-apply it ourselves in
|
|
12369
|
+
// tagValueProcessor for every tag except `a:t`, so non-text
|
|
12370
|
+
// values (docProps, counters, etc.) keep their old trimmed
|
|
12371
|
+
// behaviour and no whitespace-only text node is lost.
|
|
12372
|
+
trimValues: false,
|
|
12188
12373
|
// Security hardening (Load M3): explicitly disable XML entity
|
|
12189
12374
|
// processing. PPTX XML never uses DOCTYPE / DTDs, so allowing
|
|
12190
12375
|
// entity expansion serves only as an attack surface
|
|
@@ -12199,7 +12384,10 @@ var PptxRuntimeDependencyFactory = class {
|
|
|
12199
12384
|
// they cannot trigger entity expansion, so the security guarantee
|
|
12200
12385
|
// above is preserved - so text nodes hold their real characters and
|
|
12201
12386
|
// the builder re-encodes them symmetrically on save.
|
|
12202
|
-
tagValueProcessor: (
|
|
12387
|
+
tagValueProcessor: (tagName, tagValue) => {
|
|
12388
|
+
const decoded = decodeXmlEntities(tagValue);
|
|
12389
|
+
return tagName === "a:t" ? decoded : decoded.trim();
|
|
12390
|
+
}
|
|
12203
12391
|
});
|
|
12204
12392
|
}
|
|
12205
12393
|
createBuilder() {
|
|
@@ -61605,6 +61793,8 @@ var MediaContext = class {
|
|
|
61605
61793
|
this.fs = fs;
|
|
61606
61794
|
this.resolvedMediaDir = `${outputDir}/${this.folderName}`;
|
|
61607
61795
|
}
|
|
61796
|
+
folderName;
|
|
61797
|
+
fs;
|
|
61608
61798
|
/** Running counter used to assign unique sequential filenames. */
|
|
61609
61799
|
imageIndex = 0;
|
|
61610
61800
|
/** Whether the media output directory has been created yet. */
|
|
@@ -61730,6 +61920,9 @@ var DocumentConverter = class {
|
|
|
61730
61920
|
this.fs = fs;
|
|
61731
61921
|
this.mediaContext = new MediaContext(outputDir, options.mediaFolderName, fs);
|
|
61732
61922
|
}
|
|
61923
|
+
outputDir;
|
|
61924
|
+
options;
|
|
61925
|
+
fs;
|
|
61733
61926
|
/** Shared context for extracting and saving media (images) during conversion. */
|
|
61734
61927
|
mediaContext;
|
|
61735
61928
|
/**
|
|
@@ -63094,6 +63287,7 @@ var TextElementProcessor = class {
|
|
|
63094
63287
|
constructor(textRenderer) {
|
|
63095
63288
|
this.textRenderer = textRenderer;
|
|
63096
63289
|
}
|
|
63290
|
+
textRenderer;
|
|
63097
63291
|
supportedTypes = ["text", "shape", "connector"];
|
|
63098
63292
|
async process(element, ctx) {
|
|
63099
63293
|
if (!hasTextProperties(element)) {
|
|
@@ -63290,6 +63484,7 @@ var SlideMetadataRenderer = class {
|
|
|
63290
63484
|
constructor(textRenderer) {
|
|
63291
63485
|
this.textRenderer = textRenderer;
|
|
63292
63486
|
}
|
|
63487
|
+
textRenderer;
|
|
63293
63488
|
/**
|
|
63294
63489
|
* Renders the slide transition effect as a short metadata line.
|
|
63295
63490
|
*/
|
|
@@ -63478,6 +63673,9 @@ var SlideProcessor = class {
|
|
|
63478
63673
|
this.textRenderer = textRenderer;
|
|
63479
63674
|
this.metadataRenderer = new SlideMetadataRenderer(textRenderer);
|
|
63480
63675
|
}
|
|
63676
|
+
registry;
|
|
63677
|
+
mediaContext;
|
|
63678
|
+
textRenderer;
|
|
63481
63679
|
/** Delegate for rendering slide-level metadata sections. */
|
|
63482
63680
|
metadataRenderer;
|
|
63483
63681
|
/** Processes a slide into a complete Markdown section. */
|
|
@@ -65454,6 +65652,7 @@ exports.DIGITAL_SIGNATURE_REL_TYPE = DIGITAL_SIGNATURE_REL_TYPE;
|
|
|
65454
65652
|
exports.DataIntegrityError = DataIntegrityError;
|
|
65455
65653
|
exports.DocumentConverter = DocumentConverter;
|
|
65456
65654
|
exports.EFFECT_LST_ORDER = EFFECT_LST_ORDER;
|
|
65655
|
+
exports.ELEMENT_FIELD_KIND = ELEMENT_FIELD_KIND;
|
|
65457
65656
|
exports.EMPHASIS_PRESETS = EMPHASIS_PRESETS;
|
|
65458
65657
|
exports.EMU_PER_INCH = EMU_PER_INCH;
|
|
65459
65658
|
exports.EMU_PER_PIXEL = EMU_PER_PIXEL2;
|
|
@@ -65548,6 +65747,7 @@ exports.PptxXmlLookupService = PptxXmlLookupService;
|
|
|
65548
65747
|
exports.Presentation = Presentation;
|
|
65549
65748
|
exports.PresentationBuilder = PresentationBuilder;
|
|
65550
65749
|
exports.SHAPE_TREE_ELEMENT_TAGS = SHAPE_TREE_ELEMENT_TAGS;
|
|
65750
|
+
exports.SLIDE_FIELD_KIND = SLIDE_FIELD_KIND;
|
|
65551
65751
|
exports.SP_PR_ORDER = SP_PR_ORDER;
|
|
65552
65752
|
exports.STROKE_DASH_OPTIONS = STROKE_DASH_OPTIONS;
|
|
65553
65753
|
exports.SUPPORTED_XML_CANON_TRANSFORMS = SUPPORTED_XML_CANON_TRANSFORMS;
|
package/dist/index.mjs
CHANGED
|
@@ -249,6 +249,178 @@ var THEME_PRESETS = [
|
|
|
249
249
|
METROPOLITAN_PRESET
|
|
250
250
|
];
|
|
251
251
|
|
|
252
|
+
// src/core/types/collaboration-field-schema.ts
|
|
253
|
+
var ELEMENT_FIELD_KIND = {
|
|
254
|
+
// PptxElementBase
|
|
255
|
+
id: "scalar",
|
|
256
|
+
shapeId: "scalar",
|
|
257
|
+
name: "scalar",
|
|
258
|
+
x: "scalar",
|
|
259
|
+
y: "scalar",
|
|
260
|
+
width: "scalar",
|
|
261
|
+
height: "scalar",
|
|
262
|
+
rotation: "scalar",
|
|
263
|
+
skewX: "scalar",
|
|
264
|
+
skewY: "scalar",
|
|
265
|
+
flipHorizontal: "scalar",
|
|
266
|
+
flipVertical: "scalar",
|
|
267
|
+
hidden: "scalar",
|
|
268
|
+
opacity: "scalar",
|
|
269
|
+
rawXml: "complex",
|
|
270
|
+
actionClick: "complex",
|
|
271
|
+
actionHover: "complex",
|
|
272
|
+
locks: "complex",
|
|
273
|
+
extLstXml: "complex",
|
|
274
|
+
// discriminant
|
|
275
|
+
type: "scalar",
|
|
276
|
+
// PptxTextProperties
|
|
277
|
+
text: "scalar",
|
|
278
|
+
textStyle: "complex",
|
|
279
|
+
textSegments: "text",
|
|
280
|
+
paragraphIndents: "complex",
|
|
281
|
+
promptText: "scalar",
|
|
282
|
+
linkedTxbxId: "scalar",
|
|
283
|
+
linkedTxbxSeq: "scalar",
|
|
284
|
+
// PptxShapeProperties
|
|
285
|
+
shapeStyle: "complex",
|
|
286
|
+
shapeType: "scalar",
|
|
287
|
+
shapeAdjustments: "complex",
|
|
288
|
+
adjustmentHandles: "complex",
|
|
289
|
+
// PptxCustomPathProperties
|
|
290
|
+
pathData: "scalar",
|
|
291
|
+
pathWidth: "scalar",
|
|
292
|
+
pathHeight: "scalar",
|
|
293
|
+
customGeometryPaths: "complex",
|
|
294
|
+
customGeometryRawData: "complex",
|
|
295
|
+
customGeometryAdjustHandlesXY: "complex",
|
|
296
|
+
customGeometryAdjustHandlesPolar: "complex",
|
|
297
|
+
customGeometryConnectionSites: "complex",
|
|
298
|
+
customGeometryTextRect: "complex",
|
|
299
|
+
// PptxImageProperties
|
|
300
|
+
imageData: "scalar",
|
|
301
|
+
imagePath: "scalar",
|
|
302
|
+
svgData: "scalar",
|
|
303
|
+
svgPath: "scalar",
|
|
304
|
+
altText: "scalar",
|
|
305
|
+
cropLeft: "scalar",
|
|
306
|
+
cropTop: "scalar",
|
|
307
|
+
cropRight: "scalar",
|
|
308
|
+
cropBottom: "scalar",
|
|
309
|
+
tileOffsetX: "scalar",
|
|
310
|
+
tileOffsetY: "scalar",
|
|
311
|
+
tileScaleX: "scalar",
|
|
312
|
+
tileScaleY: "scalar",
|
|
313
|
+
tileFlip: "scalar",
|
|
314
|
+
tileAlignment: "scalar",
|
|
315
|
+
imageEffects: "complex",
|
|
316
|
+
cropShape: "complex",
|
|
317
|
+
// TablePptxElement / ChartPptxElement / SmartArtPptxElement
|
|
318
|
+
tableData: "complex",
|
|
319
|
+
chartData: "complex",
|
|
320
|
+
smartArtData: "complex",
|
|
321
|
+
extensionXml: "complex",
|
|
322
|
+
// OlePptxElement
|
|
323
|
+
oleTarget: "scalar",
|
|
324
|
+
oleProgId: "scalar",
|
|
325
|
+
oleName: "scalar",
|
|
326
|
+
oleClsId: "scalar",
|
|
327
|
+
oleObjectType: "scalar",
|
|
328
|
+
oleFileExtension: "scalar",
|
|
329
|
+
fileName: "scalar",
|
|
330
|
+
isLinked: "scalar",
|
|
331
|
+
externalPath: "scalar",
|
|
332
|
+
previewImage: "scalar",
|
|
333
|
+
previewImageData: "asset",
|
|
334
|
+
oleShowAsIcon: "scalar",
|
|
335
|
+
oleImgW: "scalar",
|
|
336
|
+
oleImgH: "scalar",
|
|
337
|
+
oleEmbeddedData: "asset",
|
|
338
|
+
oleEmbeddedFileName: "scalar",
|
|
339
|
+
oleEmbeddedMimeType: "scalar",
|
|
340
|
+
oleEmbeddedByteSize: "scalar",
|
|
341
|
+
// MediaPptxElement
|
|
342
|
+
mediaType: "scalar",
|
|
343
|
+
mediaPath: "scalar",
|
|
344
|
+
mediaData: "asset",
|
|
345
|
+
mediaMimeType: "scalar",
|
|
346
|
+
trimStartMs: "scalar",
|
|
347
|
+
trimEndMs: "scalar",
|
|
348
|
+
posterFramePath: "scalar",
|
|
349
|
+
posterFrameData: "asset",
|
|
350
|
+
fullScreen: "scalar",
|
|
351
|
+
loop: "scalar",
|
|
352
|
+
fadeInDuration: "scalar",
|
|
353
|
+
fadeOutDuration: "scalar",
|
|
354
|
+
volume: "scalar",
|
|
355
|
+
autoPlay: "scalar",
|
|
356
|
+
playAcrossSlides: "scalar",
|
|
357
|
+
hideWhenNotPlaying: "scalar",
|
|
358
|
+
bookmarks: "complex",
|
|
359
|
+
playbackSpeed: "scalar",
|
|
360
|
+
metadata: "complex",
|
|
361
|
+
captionTracks: "complex",
|
|
362
|
+
mediaMissing: "scalar",
|
|
363
|
+
// GroupPptxElement
|
|
364
|
+
children: "complex",
|
|
365
|
+
groupFill: "complex",
|
|
366
|
+
// InkPptxElement
|
|
367
|
+
inkPaths: "scalar",
|
|
368
|
+
inkColors: "scalar",
|
|
369
|
+
inkWidths: "scalar",
|
|
370
|
+
inkOpacities: "scalar",
|
|
371
|
+
inkTool: "scalar",
|
|
372
|
+
inkPointPressures: "complex",
|
|
373
|
+
// ContentPartPptxElement
|
|
374
|
+
inkStrokes: "complex",
|
|
375
|
+
// ZoomPptxElement
|
|
376
|
+
zoomType: "scalar",
|
|
377
|
+
targetSlideIndex: "scalar",
|
|
378
|
+
targetSectionId: "scalar",
|
|
379
|
+
// Model3DPptxElement
|
|
380
|
+
modelPath: "scalar",
|
|
381
|
+
modelData: "asset",
|
|
382
|
+
modelMimeType: "scalar",
|
|
383
|
+
posterImage: "scalar"
|
|
384
|
+
};
|
|
385
|
+
var SLIDE_FIELD_KIND = {
|
|
386
|
+
id: "scalar",
|
|
387
|
+
rId: "scalar",
|
|
388
|
+
sourceSlideId: "scalar",
|
|
389
|
+
name: "scalar",
|
|
390
|
+
layoutPath: "scalar",
|
|
391
|
+
layoutName: "scalar",
|
|
392
|
+
slideNumber: "scalar",
|
|
393
|
+
hidden: "scalar",
|
|
394
|
+
sectionName: "scalar",
|
|
395
|
+
sectionId: "scalar",
|
|
396
|
+
elements: "nested",
|
|
397
|
+
backgroundColor: "scalar",
|
|
398
|
+
backgroundImage: "scalar",
|
|
399
|
+
backgroundGradient: "scalar",
|
|
400
|
+
backgroundPattern: "complex",
|
|
401
|
+
backgroundShadeToTitle: "scalar",
|
|
402
|
+
transition: "complex",
|
|
403
|
+
animations: "complex",
|
|
404
|
+
nativeAnimations: "complex",
|
|
405
|
+
rawTiming: "complex",
|
|
406
|
+
notes: "scalar",
|
|
407
|
+
notesSegments: "complex",
|
|
408
|
+
notesShapes: "complex",
|
|
409
|
+
notesClrMapOverride: "complex",
|
|
410
|
+
notesCSldName: "scalar",
|
|
411
|
+
comments: "complex",
|
|
412
|
+
warnings: "complex",
|
|
413
|
+
rawXml: "complex",
|
|
414
|
+
clrMapOverride: "complex",
|
|
415
|
+
backgroundShowAnimation: "scalar",
|
|
416
|
+
showMasterShapes: "scalar",
|
|
417
|
+
guides: "complex",
|
|
418
|
+
isDirty: "scalar",
|
|
419
|
+
customerData: "complex",
|
|
420
|
+
activeXControls: "complex",
|
|
421
|
+
headerFooterFlags: "complex"
|
|
422
|
+
};
|
|
423
|
+
|
|
252
424
|
// src/core/geometry/guide-formula-eval.ts
|
|
253
425
|
var ANGLE_SCALE = 6e4;
|
|
254
426
|
function angleToRadians(ooxmlAngle) {
|
|
@@ -12180,6 +12352,19 @@ var PptxRuntimeDependencyFactory = class {
|
|
|
12180
12352
|
// More generally, OOXML element text is always an untyped string;
|
|
12181
12353
|
// downstream callers coerce where needed.
|
|
12182
12354
|
parseTagValue: false,
|
|
12355
|
+
// `<a:t>` run text must survive verbatim. PowerPoint frequently
|
|
12356
|
+
// splits a sentence across many runs (spell-check, autocorrect),
|
|
12357
|
+
// and a word boundary often ends up as its own run whose `<a:t>`
|
|
12358
|
+
// is a single space, e.g. `<a:r><a:t> </a:t></a:r>`.
|
|
12359
|
+
// fast-xml-parser's default `trimValues: true` trims that
|
|
12360
|
+
// whitespace-only text node down to `""`, silently dropping the
|
|
12361
|
+
// space and gluing the surrounding words together
|
|
12362
|
+
// ("so we immediately start" -> "soweimmediatelystart"). Turn
|
|
12363
|
+
// trimming off globally and re-apply it ourselves in
|
|
12364
|
+
// tagValueProcessor for every tag except `a:t`, so non-text
|
|
12365
|
+
// values (docProps, counters, etc.) keep their old trimmed
|
|
12366
|
+
// behaviour and no whitespace-only text node is lost.
|
|
12367
|
+
trimValues: false,
|
|
12183
12368
|
// Security hardening (Load M3): explicitly disable XML entity
|
|
12184
12369
|
// processing. PPTX XML never uses DOCTYPE / DTDs, so allowing
|
|
12185
12370
|
// entity expansion serves only as an attack surface
|
|
@@ -12194,7 +12379,10 @@ var PptxRuntimeDependencyFactory = class {
|
|
|
12194
12379
|
// they cannot trigger entity expansion, so the security guarantee
|
|
12195
12380
|
// above is preserved - so text nodes hold their real characters and
|
|
12196
12381
|
// the builder re-encodes them symmetrically on save.
|
|
12197
|
-
tagValueProcessor: (
|
|
12382
|
+
tagValueProcessor: (tagName, tagValue) => {
|
|
12383
|
+
const decoded = decodeXmlEntities(tagValue);
|
|
12384
|
+
return tagName === "a:t" ? decoded : decoded.trim();
|
|
12385
|
+
}
|
|
12198
12386
|
});
|
|
12199
12387
|
}
|
|
12200
12388
|
createBuilder() {
|
|
@@ -61600,6 +61788,8 @@ var MediaContext = class {
|
|
|
61600
61788
|
this.fs = fs;
|
|
61601
61789
|
this.resolvedMediaDir = `${outputDir}/${this.folderName}`;
|
|
61602
61790
|
}
|
|
61791
|
+
folderName;
|
|
61792
|
+
fs;
|
|
61603
61793
|
/** Running counter used to assign unique sequential filenames. */
|
|
61604
61794
|
imageIndex = 0;
|
|
61605
61795
|
/** Whether the media output directory has been created yet. */
|
|
@@ -61725,6 +61915,9 @@ var DocumentConverter = class {
|
|
|
61725
61915
|
this.fs = fs;
|
|
61726
61916
|
this.mediaContext = new MediaContext(outputDir, options.mediaFolderName, fs);
|
|
61727
61917
|
}
|
|
61918
|
+
outputDir;
|
|
61919
|
+
options;
|
|
61920
|
+
fs;
|
|
61728
61921
|
/** Shared context for extracting and saving media (images) during conversion. */
|
|
61729
61922
|
mediaContext;
|
|
61730
61923
|
/**
|
|
@@ -63089,6 +63282,7 @@ var TextElementProcessor = class {
|
|
|
63089
63282
|
constructor(textRenderer) {
|
|
63090
63283
|
this.textRenderer = textRenderer;
|
|
63091
63284
|
}
|
|
63285
|
+
textRenderer;
|
|
63092
63286
|
supportedTypes = ["text", "shape", "connector"];
|
|
63093
63287
|
async process(element, ctx) {
|
|
63094
63288
|
if (!hasTextProperties(element)) {
|
|
@@ -63285,6 +63479,7 @@ var SlideMetadataRenderer = class {
|
|
|
63285
63479
|
constructor(textRenderer) {
|
|
63286
63480
|
this.textRenderer = textRenderer;
|
|
63287
63481
|
}
|
|
63482
|
+
textRenderer;
|
|
63288
63483
|
/**
|
|
63289
63484
|
* Renders the slide transition effect as a short metadata line.
|
|
63290
63485
|
*/
|
|
@@ -63473,6 +63668,9 @@ var SlideProcessor = class {
|
|
|
63473
63668
|
this.textRenderer = textRenderer;
|
|
63474
63669
|
this.metadataRenderer = new SlideMetadataRenderer(textRenderer);
|
|
63475
63670
|
}
|
|
63671
|
+
registry;
|
|
63672
|
+
mediaContext;
|
|
63673
|
+
textRenderer;
|
|
63476
63674
|
/** Delegate for rendering slide-level metadata sections. */
|
|
63477
63675
|
metadataRenderer;
|
|
63478
63676
|
/** Processes a slide into a complete Markdown section. */
|
|
@@ -65414,4 +65612,4 @@ var SvgExporter = class _SvgExporter {
|
|
|
65414
65612
|
* `<p:extLst>` (optional)
|
|
65415
65613
|
*/
|
|
65416
65614
|
|
|
65417
|
-
export { ALL_ANIMATION_PRESETS, BLIP_FILL_ORDER, CLOUD_CALLOUT_TAIL_COUNT, CLOUD_LOBE_COUNT, COLOR_MAP_ALIAS_KEYS, CONNECTOR_ARROW_OPTIONS, CONNECTOR_GEOMETRY_OPTIONS, ChartBuilder, ConnectorBuilder, ConnectorXmlFactory, DEFAULT_CANVAS_HEIGHT, DEFAULT_CANVAS_WIDTH, DEFAULT_COLOR_MAP, DEFAULT_FILL_COLOR, DEFAULT_FONT_FAMILY, DEFAULT_MAX_UNCOMPRESSED_BYTES, DEFAULT_SCHEME_COLOR_MAP, DEFAULT_STROKE_COLOR, DEFAULT_TEXT_COLOR, DEFAULT_TEXT_FONT_SIZE, DIGEST_ALGORITHM_TO_HASH, DIGEST_ALGORITHM_TO_WEB_CRYPTO, DIGITAL_SIGNATURE_ORIGIN_REL_TYPE, DIGITAL_SIGNATURE_REL_TYPE, DataIntegrityError, DocumentConverter, EFFECT_LST_ORDER, EMPHASIS_PRESETS, EMU_PER_INCH, EMU_PER_PIXEL2 as EMU_PER_PIXEL, EMU_PER_POINT, EMU_PER_PX, ENTERPRISE_FAIL_ON_REVOCATION_UNKNOWN_ENV, ENTERPRISE_REQUIRE_REVOCATION_ENV, ENTERPRISE_REQUIRE_TIMESTAMP_ENV, ENTERPRISE_TRUST_ROOTS_FILE_ENV, ENTERPRISE_TRUST_ROOTS_PEM_ENV, ENTRANCE_PRESETS, EXIT_PRESETS, EncryptedFileError, FONT_SUBSTITUTION_MAP, FreeformPathBuilder, GroupBuilder, ImageBuilder, IncorrectPasswordError, MAX_TABLE_DIMENSION, MAX_ZIP_ENTRY_COUNT, MIN_ELEMENT_SIZE, MIN_TABLE_DIMENSION, MOTION_PATH_PRESETS, MediaBuilder, MediaContext, MediaGraphicFrameXmlFactory, OOXML_TO_PRESET_EMPH, OOXML_TO_PRESET_ENTR, OOXML_TO_PRESET_EXIT, OPC_RELATIONSHIP_TRANSFORM, Ole2ParseError, P14_GUIDE_URI, P15_GUIDE_URI, PANOSE_FAMILY_MAP, PANOSE_MONOSPACE_PROPORTION, PANOSE_SANS_SERIF_STYLES, PANOSE_WEIGHT_MAP, POWERPOINT_PRESENCE_KEY, PPTX_VIEWER_MANIFEST_NS, PRESET_COLOR_MAP, PRESET_SHAPE_CATEGORY_LABELS, PRESET_SHAPE_CLIP_PATHS, PRESET_SHAPE_DEFINITIONS, PRESET_SHAPE_GEOMETRY_TABLE, PRESET_TO_OOXML, PictureXmlFactory, PptxAnimationWriteService, PptxColorStyleCodec, PptxCommentAuthorsXmlFactory, PptxCommentXmlFactoryProvider, PptxCompatibilityService, PptxConnectorParser, PptxContentTypesBuilder, PptxDocumentPropertiesUpdater, PptxEditorAnimationService, PptxElementTransformUpdater, PptxElementXmlBuilder, PptxGraphicFrameParser, PptxHandler, PptxHandlerRuntime82 as PptxHandlerRuntime, PptxHandlerRuntimeFactory, PptxLoadDataBuilder, PptxMarkdownConverter, PptxMediaDataParser, PptxNativeAnimationService, PptxPresentationSaveBuilder, PptxPresentationSlidesReconciler, PptxRuntimeDependencyFactory, PptxSaveConstantsFactory, PptxSaveState as PptxSaveSession, PptxSaveStateBuilder as PptxSaveSessionBuilder, PptxSaveState, PptxSaveStateBuilder, PptxShapeIdValidator, PptxShapeStyleExtractor, PptxSlideBackgroundBuilder, PptxSlideBuilder, PptxSlideCommentPartWriter, PptxSlideCommentsXmlFactory, PptxSlideElementsBuilder, PptxSlideLoaderService, PptxSlideMediaRelationshipBuilder, PptxSlideNotesBuilder, PptxSlideNotesPartUpdater, PptxSlideRelationshipRegistry, PptxSlideTransitionService, PptxTableDataParser, PptxTemplateBackgroundService, PptxXmlBuilder, PptxXmlFactoryProvider, PptxXmlLookupService, Presentation, PresentationBuilder, SHAPE_TREE_ELEMENT_TAGS, SP_PR_ORDER, STROKE_DASH_OPTIONS, SUPPORTED_XML_CANON_TRANSFORMS, SWITCHABLE_LAYOUT_TYPES, SYSTEM_COLOR_MAP, ShapeBuilder, SlideBuilder, SlideProcessor, SlideSizes, SvgExporter, TC_PR_BORDERS_ORDER, THEME_COLOR_SCHEME_KEYS, THEME_PRESETS, TRANSITION_VALID_DIRECTIONS, TableBuilder, TextBuilder, TextShapeXmlFactory, ThemePresets, VML_SHAPE_TAGS, XMLDSIG_NS, XML_TRANSFORM_ENVELOPED_SIGNATURE, ZipBombError, addChartCategory, addChartSeries, addSection, addSmartArtNode, addSmartArtNodeAsChild, applyDrawingColorTransforms, applyKinsokuToXml, applyTableCellTextAndStyle, applyTemplate, applyThemeToData, areNamespacesSupported, buildCalloutLeaderLineSvgPath, buildClrMapOverrideXml, buildFontFamilyString, buildGuideListExtension, buildLinkedTextBoxChains, buildOle2, buildSingleEffectNode, buildSrgbColorChoice, buildThemeColorMap, catmullRomToBezier, chartDataAddCategory, chartDataAddSeries, chartDataChangeType, chartDataRemoveCategory, chartDataRemoveSeries, chartDataUpdatePoint, checkBlankSlide, checkComplexTables, checkDuplicateTitles, checkLowContrast, checkMissingAltText, checkMissingSlideTitle, checkPresentation, clampUnitInterval, classifyPanose, cloneElement, cloneShapeStyle, cloneSlide, cloneTemplateElementsBySlideId, cloneTextStyle, cloneXmlObject, cm, cmToEmu, colorWithOpacity, colorsEqual, combineShapes, computeContrastRatio, computeCycleLayout, computeDetailStatus, computeDigestBase64 as computeDigestBase64WebCrypto, computeHierarchyLayout, computeLinearLayout, computeMatrixLayout, computePyramidLayout, computeSmartArtLayout, computeSnakeLayout, computeVerificationStatus, convertXmlToStrict, createArrayBufferCopy, createBuiltinVariables, createChartElement, createConnectorElement, createDefaultPptxHandlerRuntime, createEditorId, createFreeformElement, createGroupElement, createImageElement, createLayout, createLayouts, createMediaElement, createModifyVerifier, createPptxSaveConstants, createShapeElement, createTableCellXml, createTableElement, createTableGraphicFrameRawXml, createTemplateConnectorRawXml, createTemplateShapeRawXml, createTextElement, createUniformTextSegments, dataUrlToMediaBytes, decodeOle10Native, decodeXmlEntities, decomposeSmartArt, decryptPptx, demoteSmartArtNode, deobfuscateFont, deriveOutputPath, detectDigitalSignatures, detectFileFormat, detectFontFormat, detectOleObjectType, detectStrictConformance, diffPresentations, diffSlides, distributeSegmentsAcrossChain, douglasPeucker, duplicateElement, duplicateSlide, elementActionToPptxAction, elementHasAction, emuToPixels, encryptPptx, ensureArrayValue, escapeXmlAttr, escapeXmlText, estimateTextBoxCapacity, evaluateGeometryPaths, evaluateGuides, evaluatePresetShape, extractAllTagText, extractColorChoiceXml, extractFirstTagText, extractGuidFromPartName, extractModel3DTransform, extractTagAttribute, fetchUrlToBytes, findCustomShow, findLayoutByName, findLayoutByType, findPlaceholders, findText, formatCommentTimestamp, fragmentShapes, generateFontGuid, generateLayoutXml, generateMediaFilename, getAdjustmentAwareClipPath, getAdjustmentAwareShapeClipPath, getAnimationPresetInfo, getCalloutLeaderLineGeometry, getCalloutTier, getCalloutViewBoxBounds, getCloudCalloutClipPath, getCloudClipPath, getCloudPathForRendering, getCommentMarkerPosition, getConnectorAdjustment, getConnectorPathGeometry, getCssBorderDashStyle, getCustomShowNames, getCustomShowPositionLabel, getDirectory, getElementLabel, getElementTextContent, getElementTransform, getImageMaskStyle, getLinkedTextBoxSegments, getNativeAnimationPresetMetadata, getOleObjectTypeLabel, getPanoseWeight, getPresetShapeClipPath, getPresetsByCategory, getRoundRectRadiusPx, getSectionForSlide, getSectionSlideRange, getShapeClipPath, getShapeClipPathFromPreset, getShapeType, getSignaturePathsToStrip, getSubstituteFontFamily, getSubstituteFonts, getSupportedNamespaces, getSvgStrokeDasharray, getTextCompensationTransform, getThemePreset, getZoomElements, getZoomTargetSlideIndexes, guidToKey, guideEmuToPx, guidePxToEmu, hasDirectSubstitution, hasNonTrivialOverride, hasShapeProperties, hasTextProperties, hexToRgbChannels, hslToRgb, inches, inchesToEmu, inferOleExtensionFromTarget, interpolateShapeGeometry, intersectPolygons, intersectShapes, intersectSvgPaths, isCalloutShape, isConnectorElement, isEditableTextElement, isImageLikeElement, isInkElement, isNamespaceSupported, isOle2CompoundFile, isShapeElement, isStrictNamespaceUri, isSummaryZoomSlide, isSwitchableLayoutType, isTemplateElement, isTextElement, isTransitionalNamespaceUri, isValidBase64, isXmlNode, isZoomElement, isZoomElement2 as isZoomElementUtil, layoutEngineShapesToDrawingShapes, lookupPresetShape, mailMerge, mergePresentation, mergeShapes, mergeStyleParts, mergeThemeColorOverride, mimeTypeForOleFile, mm, moveSlidesToSection, navigateCustomShow, normalizeHexColor, normalizeNamespaceUri, normalizePartPath, normalizePath, normalizeStrictXml, normalizeStrokeDashType, obfuscateFont, oleBytesToDataUrl, ooxmlArcToSvg, ooxmlToPresetName, parseActiveXControlsFromSlide, parseAdjustmentValues, parseBodyPrBooleanAttrs, parseChart3DSurfaces, parseChartAxes, parseCondition, parseConditionList, parseCxChartSeries, parseDataTable, parseDataUrlToBytes, parseDrawingColor, parseDrawingColorChoice, parseDrawingColorOpacity, parseDrawingFraction, parseDrawingHueDegrees, parseDrawingPercent, parseEmbeddedXlsx, parseGuideDefinitions, parseHexColor, parseKinsoku, parseLayoutDefinition, parseLineStyle, parseMarker, parseOle2, parsePanoseBytes, parsePanoseString, parsePresentationDrawingGuides, parseSeriesDataLabels, parseSeriesDataPoints, parseSeriesErrBars, parseSeriesExplosion, parseSeriesTrendlines, parseShapeProps, parseSignatureXml, parseSlideDrawingGuides, parseSvgPath, parseVmlElement, parseVmlElements, pixelsToEmu, polygonsToSvgPath, pptxActionToElementAction, promoteSmartArtNode, pt, reResolveSlideColors, readFileAsDataUrl, rebuildTableStructureInRawXml, reconcileAnimationTargets, reflowSmartArtLayout, relativeLuminance, relayoutSmartArt, remapEditorAnimationsToShapeIds, removeChartCategory, removeChartSeries, removeSection, removeSmartArtNode, reorderObjectKeys, reorderSections, reorderSmartArtNode, reorderSmartArtNodeToIndex, repairPptx, replaceShapeGeometry, replaceText, replaceTextInSlide, replaceWithCustomGeometry, resetCloneIdCounter, resetDecomposeCounter, resetIdCounter, resetSectionIdCounter, resetSmartArtEditCounter, resolveCoordinate, resolveCustomShowSlideIndices, resolveLayoutDisplayName, resolveModel3DMimeType, resolveReferenceUriToPart, resolveTableCellStyle, rgbToHsl, selectAlternateContentBranch, serializeColorChoice, serializeCondition, serializeConditionList, serializeSvgPath, setChartAxis, setChartAxisGridlineStyle, setChartAxisLogScale, setChartAxisTitleStyle, setChartCategories, setChartDataLabels, setChartDataPointExplosion, setChartDataPointFill, setChartDataPointLabel, setChartDataPointMarker, setChartGrouping, setChartLegend, setChartSeriesChartType, setChartSeriesColor, setChartSeriesErrorBars, setChartSeriesMarker, setChartSeriesTrendline, setChartTitle, setChartType, setElementLocked, setSmartArtNodeStyle, shouldRenderFallbackLabel, shouldReturnToZoomSlide, stripParentDirSegments, subtractPolygons, subtractShapes, subtractSvgPaths, svgPathToPolygons, switchSmartArtLayout, toHex, toStrictNamespaceUri, unionPolygons, unionShapes, unionSvgPaths, unwrapAlternateContent, unwrapOleEmbedding, updateCellTextInRawXml, updateCellTextStyleInRawXml, updateChartDataPoint, updateChartSeriesValues, updateMergeAttrsInRawXml, updateSmartArtNodeText, validatePptx, verifyModifyPassword, verifyPassword, verifySignatureDigests, writeBodyPrBooleanAttrs, xmlAttr, xmlAttrBool, xmlAttrNumber, xmlChild, xmlChildren, xmlPath, xmlText };
|
|
65615
|
+
export { ALL_ANIMATION_PRESETS, BLIP_FILL_ORDER, CLOUD_CALLOUT_TAIL_COUNT, CLOUD_LOBE_COUNT, COLOR_MAP_ALIAS_KEYS, CONNECTOR_ARROW_OPTIONS, CONNECTOR_GEOMETRY_OPTIONS, ChartBuilder, ConnectorBuilder, ConnectorXmlFactory, DEFAULT_CANVAS_HEIGHT, DEFAULT_CANVAS_WIDTH, DEFAULT_COLOR_MAP, DEFAULT_FILL_COLOR, DEFAULT_FONT_FAMILY, DEFAULT_MAX_UNCOMPRESSED_BYTES, DEFAULT_SCHEME_COLOR_MAP, DEFAULT_STROKE_COLOR, DEFAULT_TEXT_COLOR, DEFAULT_TEXT_FONT_SIZE, DIGEST_ALGORITHM_TO_HASH, DIGEST_ALGORITHM_TO_WEB_CRYPTO, DIGITAL_SIGNATURE_ORIGIN_REL_TYPE, DIGITAL_SIGNATURE_REL_TYPE, DataIntegrityError, DocumentConverter, EFFECT_LST_ORDER, ELEMENT_FIELD_KIND, EMPHASIS_PRESETS, EMU_PER_INCH, EMU_PER_PIXEL2 as EMU_PER_PIXEL, EMU_PER_POINT, EMU_PER_PX, ENTERPRISE_FAIL_ON_REVOCATION_UNKNOWN_ENV, ENTERPRISE_REQUIRE_REVOCATION_ENV, ENTERPRISE_REQUIRE_TIMESTAMP_ENV, ENTERPRISE_TRUST_ROOTS_FILE_ENV, ENTERPRISE_TRUST_ROOTS_PEM_ENV, ENTRANCE_PRESETS, EXIT_PRESETS, EncryptedFileError, FONT_SUBSTITUTION_MAP, FreeformPathBuilder, GroupBuilder, ImageBuilder, IncorrectPasswordError, MAX_TABLE_DIMENSION, MAX_ZIP_ENTRY_COUNT, MIN_ELEMENT_SIZE, MIN_TABLE_DIMENSION, MOTION_PATH_PRESETS, MediaBuilder, MediaContext, MediaGraphicFrameXmlFactory, OOXML_TO_PRESET_EMPH, OOXML_TO_PRESET_ENTR, OOXML_TO_PRESET_EXIT, OPC_RELATIONSHIP_TRANSFORM, Ole2ParseError, P14_GUIDE_URI, P15_GUIDE_URI, PANOSE_FAMILY_MAP, PANOSE_MONOSPACE_PROPORTION, PANOSE_SANS_SERIF_STYLES, PANOSE_WEIGHT_MAP, POWERPOINT_PRESENCE_KEY, PPTX_VIEWER_MANIFEST_NS, PRESET_COLOR_MAP, PRESET_SHAPE_CATEGORY_LABELS, PRESET_SHAPE_CLIP_PATHS, PRESET_SHAPE_DEFINITIONS, PRESET_SHAPE_GEOMETRY_TABLE, PRESET_TO_OOXML, PictureXmlFactory, PptxAnimationWriteService, PptxColorStyleCodec, PptxCommentAuthorsXmlFactory, PptxCommentXmlFactoryProvider, PptxCompatibilityService, PptxConnectorParser, PptxContentTypesBuilder, PptxDocumentPropertiesUpdater, PptxEditorAnimationService, PptxElementTransformUpdater, PptxElementXmlBuilder, PptxGraphicFrameParser, PptxHandler, PptxHandlerRuntime82 as PptxHandlerRuntime, PptxHandlerRuntimeFactory, PptxLoadDataBuilder, PptxMarkdownConverter, PptxMediaDataParser, PptxNativeAnimationService, PptxPresentationSaveBuilder, PptxPresentationSlidesReconciler, PptxRuntimeDependencyFactory, PptxSaveConstantsFactory, PptxSaveState as PptxSaveSession, PptxSaveStateBuilder as PptxSaveSessionBuilder, PptxSaveState, PptxSaveStateBuilder, PptxShapeIdValidator, PptxShapeStyleExtractor, PptxSlideBackgroundBuilder, PptxSlideBuilder, PptxSlideCommentPartWriter, PptxSlideCommentsXmlFactory, PptxSlideElementsBuilder, PptxSlideLoaderService, PptxSlideMediaRelationshipBuilder, PptxSlideNotesBuilder, PptxSlideNotesPartUpdater, PptxSlideRelationshipRegistry, PptxSlideTransitionService, PptxTableDataParser, PptxTemplateBackgroundService, PptxXmlBuilder, PptxXmlFactoryProvider, PptxXmlLookupService, Presentation, PresentationBuilder, SHAPE_TREE_ELEMENT_TAGS, SLIDE_FIELD_KIND, SP_PR_ORDER, STROKE_DASH_OPTIONS, SUPPORTED_XML_CANON_TRANSFORMS, SWITCHABLE_LAYOUT_TYPES, SYSTEM_COLOR_MAP, ShapeBuilder, SlideBuilder, SlideProcessor, SlideSizes, SvgExporter, TC_PR_BORDERS_ORDER, THEME_COLOR_SCHEME_KEYS, THEME_PRESETS, TRANSITION_VALID_DIRECTIONS, TableBuilder, TextBuilder, TextShapeXmlFactory, ThemePresets, VML_SHAPE_TAGS, XMLDSIG_NS, XML_TRANSFORM_ENVELOPED_SIGNATURE, ZipBombError, addChartCategory, addChartSeries, addSection, addSmartArtNode, addSmartArtNodeAsChild, applyDrawingColorTransforms, applyKinsokuToXml, applyTableCellTextAndStyle, applyTemplate, applyThemeToData, areNamespacesSupported, buildCalloutLeaderLineSvgPath, buildClrMapOverrideXml, buildFontFamilyString, buildGuideListExtension, buildLinkedTextBoxChains, buildOle2, buildSingleEffectNode, buildSrgbColorChoice, buildThemeColorMap, catmullRomToBezier, chartDataAddCategory, chartDataAddSeries, chartDataChangeType, chartDataRemoveCategory, chartDataRemoveSeries, chartDataUpdatePoint, checkBlankSlide, checkComplexTables, checkDuplicateTitles, checkLowContrast, checkMissingAltText, checkMissingSlideTitle, checkPresentation, clampUnitInterval, classifyPanose, cloneElement, cloneShapeStyle, cloneSlide, cloneTemplateElementsBySlideId, cloneTextStyle, cloneXmlObject, cm, cmToEmu, colorWithOpacity, colorsEqual, combineShapes, computeContrastRatio, computeCycleLayout, computeDetailStatus, computeDigestBase64 as computeDigestBase64WebCrypto, computeHierarchyLayout, computeLinearLayout, computeMatrixLayout, computePyramidLayout, computeSmartArtLayout, computeSnakeLayout, computeVerificationStatus, convertXmlToStrict, createArrayBufferCopy, createBuiltinVariables, createChartElement, createConnectorElement, createDefaultPptxHandlerRuntime, createEditorId, createFreeformElement, createGroupElement, createImageElement, createLayout, createLayouts, createMediaElement, createModifyVerifier, createPptxSaveConstants, createShapeElement, createTableCellXml, createTableElement, createTableGraphicFrameRawXml, createTemplateConnectorRawXml, createTemplateShapeRawXml, createTextElement, createUniformTextSegments, dataUrlToMediaBytes, decodeOle10Native, decodeXmlEntities, decomposeSmartArt, decryptPptx, demoteSmartArtNode, deobfuscateFont, deriveOutputPath, detectDigitalSignatures, detectFileFormat, detectFontFormat, detectOleObjectType, detectStrictConformance, diffPresentations, diffSlides, distributeSegmentsAcrossChain, douglasPeucker, duplicateElement, duplicateSlide, elementActionToPptxAction, elementHasAction, emuToPixels, encryptPptx, ensureArrayValue, escapeXmlAttr, escapeXmlText, estimateTextBoxCapacity, evaluateGeometryPaths, evaluateGuides, evaluatePresetShape, extractAllTagText, extractColorChoiceXml, extractFirstTagText, extractGuidFromPartName, extractModel3DTransform, extractTagAttribute, fetchUrlToBytes, findCustomShow, findLayoutByName, findLayoutByType, findPlaceholders, findText, formatCommentTimestamp, fragmentShapes, generateFontGuid, generateLayoutXml, generateMediaFilename, getAdjustmentAwareClipPath, getAdjustmentAwareShapeClipPath, getAnimationPresetInfo, getCalloutLeaderLineGeometry, getCalloutTier, getCalloutViewBoxBounds, getCloudCalloutClipPath, getCloudClipPath, getCloudPathForRendering, getCommentMarkerPosition, getConnectorAdjustment, getConnectorPathGeometry, getCssBorderDashStyle, getCustomShowNames, getCustomShowPositionLabel, getDirectory, getElementLabel, getElementTextContent, getElementTransform, getImageMaskStyle, getLinkedTextBoxSegments, getNativeAnimationPresetMetadata, getOleObjectTypeLabel, getPanoseWeight, getPresetShapeClipPath, getPresetsByCategory, getRoundRectRadiusPx, getSectionForSlide, getSectionSlideRange, getShapeClipPath, getShapeClipPathFromPreset, getShapeType, getSignaturePathsToStrip, getSubstituteFontFamily, getSubstituteFonts, getSupportedNamespaces, getSvgStrokeDasharray, getTextCompensationTransform, getThemePreset, getZoomElements, getZoomTargetSlideIndexes, guidToKey, guideEmuToPx, guidePxToEmu, hasDirectSubstitution, hasNonTrivialOverride, hasShapeProperties, hasTextProperties, hexToRgbChannels, hslToRgb, inches, inchesToEmu, inferOleExtensionFromTarget, interpolateShapeGeometry, intersectPolygons, intersectShapes, intersectSvgPaths, isCalloutShape, isConnectorElement, isEditableTextElement, isImageLikeElement, isInkElement, isNamespaceSupported, isOle2CompoundFile, isShapeElement, isStrictNamespaceUri, isSummaryZoomSlide, isSwitchableLayoutType, isTemplateElement, isTextElement, isTransitionalNamespaceUri, isValidBase64, isXmlNode, isZoomElement, isZoomElement2 as isZoomElementUtil, layoutEngineShapesToDrawingShapes, lookupPresetShape, mailMerge, mergePresentation, mergeShapes, mergeStyleParts, mergeThemeColorOverride, mimeTypeForOleFile, mm, moveSlidesToSection, navigateCustomShow, normalizeHexColor, normalizeNamespaceUri, normalizePartPath, normalizePath, normalizeStrictXml, normalizeStrokeDashType, obfuscateFont, oleBytesToDataUrl, ooxmlArcToSvg, ooxmlToPresetName, parseActiveXControlsFromSlide, parseAdjustmentValues, parseBodyPrBooleanAttrs, parseChart3DSurfaces, parseChartAxes, parseCondition, parseConditionList, parseCxChartSeries, parseDataTable, parseDataUrlToBytes, parseDrawingColor, parseDrawingColorChoice, parseDrawingColorOpacity, parseDrawingFraction, parseDrawingHueDegrees, parseDrawingPercent, parseEmbeddedXlsx, parseGuideDefinitions, parseHexColor, parseKinsoku, parseLayoutDefinition, parseLineStyle, parseMarker, parseOle2, parsePanoseBytes, parsePanoseString, parsePresentationDrawingGuides, parseSeriesDataLabels, parseSeriesDataPoints, parseSeriesErrBars, parseSeriesExplosion, parseSeriesTrendlines, parseShapeProps, parseSignatureXml, parseSlideDrawingGuides, parseSvgPath, parseVmlElement, parseVmlElements, pixelsToEmu, polygonsToSvgPath, pptxActionToElementAction, promoteSmartArtNode, pt, reResolveSlideColors, readFileAsDataUrl, rebuildTableStructureInRawXml, reconcileAnimationTargets, reflowSmartArtLayout, relativeLuminance, relayoutSmartArt, remapEditorAnimationsToShapeIds, removeChartCategory, removeChartSeries, removeSection, removeSmartArtNode, reorderObjectKeys, reorderSections, reorderSmartArtNode, reorderSmartArtNodeToIndex, repairPptx, replaceShapeGeometry, replaceText, replaceTextInSlide, replaceWithCustomGeometry, resetCloneIdCounter, resetDecomposeCounter, resetIdCounter, resetSectionIdCounter, resetSmartArtEditCounter, resolveCoordinate, resolveCustomShowSlideIndices, resolveLayoutDisplayName, resolveModel3DMimeType, resolveReferenceUriToPart, resolveTableCellStyle, rgbToHsl, selectAlternateContentBranch, serializeColorChoice, serializeCondition, serializeConditionList, serializeSvgPath, setChartAxis, setChartAxisGridlineStyle, setChartAxisLogScale, setChartAxisTitleStyle, setChartCategories, setChartDataLabels, setChartDataPointExplosion, setChartDataPointFill, setChartDataPointLabel, setChartDataPointMarker, setChartGrouping, setChartLegend, setChartSeriesChartType, setChartSeriesColor, setChartSeriesErrorBars, setChartSeriesMarker, setChartSeriesTrendline, setChartTitle, setChartType, setElementLocked, setSmartArtNodeStyle, shouldRenderFallbackLabel, shouldReturnToZoomSlide, stripParentDirSegments, subtractPolygons, subtractShapes, subtractSvgPaths, svgPathToPolygons, switchSmartArtLayout, toHex, toStrictNamespaceUri, unionPolygons, unionShapes, unionSvgPaths, unwrapAlternateContent, unwrapOleEmbedding, updateCellTextInRawXml, updateCellTextStyleInRawXml, updateChartDataPoint, updateChartSeriesValues, updateMergeAttrsInRawXml, updateSmartArtNodeText, validatePptx, verifyModifyPassword, verifyPassword, verifySignatureDigests, writeBodyPrBooleanAttrs, xmlAttr, xmlAttrBool, xmlAttrNumber, xmlChild, xmlChildren, xmlPath, xmlText };
|