@office-open/pptx 0.7.0 → 0.8.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/README.md +14 -8
- package/dist/index.d.mts +462 -85
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +1283 -199
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -5
package/dist/index.d.mts
CHANGED
|
@@ -1,12 +1,190 @@
|
|
|
1
|
-
import { AppProperties, BaseXmlComponent, BuilderElement, CompressionOptions, Context, EmptyElement, ImportedXmlComponent, OutputByType, OutputType, PackerOptions, ParsedArchive, RelationshipType, Relationships, XmlComponent, convertEmuToInches, convertEmuToPixels, convertEmuToPoints, convertInchesToEmu, convertPixelsToEmu, convertPointsToEmu, hashedId, parseArchive, uniqueId, uniqueNumericIdCreator, uniqueUuid } from "@office-open/core";
|
|
1
|
+
import { AppProperties, BaseXmlComponent, BuilderElement, CompressionOptions, Context, DataType, EmptyElement, ImportedXmlComponent, OutputByType, OutputType, PackerOptions, ParsedArchive, RelationshipType, Relationships, ShapeLockingOptions, TableStyleListOptions, XmlComponent, convertEmuToInches, convertEmuToPixels, convertEmuToPoints, convertInchesToEmu, convertPixelsToEmu, convertPointsToEmu, hashedId, parseArchive, uniqueId, uniqueNumericIdCreator, uniqueUuid } from "@office-open/core";
|
|
2
2
|
import { BevelOptions, BevelPresetType, BlipFillConfigOptions, BlipFillMediaData, ColorTransformOptions, CompoundLine, EffectListOptions, FillOptions, GradientFillOptions as CoreGradientFillOptions, GradientStop, GradientStopOptions, GroupTransform2DOptions, LineCap, LineJoin, OutlineOptions as CoreOutlineOptions, PathShadeType, PenAlignment, PresetDash, PresetGeometry, PresetMaterialType, Scene3DOptions, Shape3DOptions, TileFlipMode, Transform2DOptions, buildFill, createBevel, createBottomBevel, createColorElement, createColorTransforms, createEffectList, createGradientFill, createGradientStop, createOutline, createScene3D, createScene3D as createScene3D$1, createShape3D, createShape3D as createShape3D$1, extractBlipFillMedia } from "@office-open/core/drawingml";
|
|
3
3
|
import { ChartCollection, ChartData, ChartSeriesData, ChartSpace, ChartSpaceOptions, ChartType } from "@office-open/core/chart";
|
|
4
4
|
import { Element } from "@office-open/xml";
|
|
5
5
|
import { SmartArtCollection, TreeNode } from "@office-open/core/smartart";
|
|
6
|
-
import {
|
|
6
|
+
import { ColorSchemeOptions, DefaultTheme, FontSchemeOptions, ThemeOptions } from "@office-open/core/theme";
|
|
7
7
|
import { Buffer } from "\u0000polyfill-node.buffer";
|
|
8
8
|
export * from "@office-open/core/values";
|
|
9
9
|
|
|
10
|
+
//#region src/file/view-properties.d.ts
|
|
11
|
+
type SplitterBarState = "restored" | "maximized" | "minimized";
|
|
12
|
+
interface NormalViewOptions {
|
|
13
|
+
readonly showOutlineIcons?: boolean;
|
|
14
|
+
readonly snapVertSplitter?: boolean;
|
|
15
|
+
readonly vertBarState?: SplitterBarState;
|
|
16
|
+
readonly horzBarState?: SplitterBarState;
|
|
17
|
+
readonly preferSingleView?: boolean;
|
|
18
|
+
}
|
|
19
|
+
interface SlideViewOptions {
|
|
20
|
+
readonly snapToGrid?: boolean;
|
|
21
|
+
readonly snapToObjects?: boolean;
|
|
22
|
+
readonly showGuides?: boolean;
|
|
23
|
+
readonly varScale?: boolean;
|
|
24
|
+
}
|
|
25
|
+
interface ViewPropertiesOptions {
|
|
26
|
+
readonly lastView?: "slideView" | "slideMasterView" | "notesView" | "handoutView" | "outlineView" | "slideSorterView";
|
|
27
|
+
readonly showComments?: boolean;
|
|
28
|
+
readonly gridSpacing?: {
|
|
29
|
+
readonly cx: number;
|
|
30
|
+
readonly cy: number;
|
|
31
|
+
};
|
|
32
|
+
readonly zoomScaleNumerator?: number;
|
|
33
|
+
readonly zoomScaleDenominator?: number;
|
|
34
|
+
readonly normalView?: NormalViewOptions;
|
|
35
|
+
readonly slideView?: SlideViewOptions;
|
|
36
|
+
}
|
|
37
|
+
declare class ViewProperties extends ImportedXmlComponent {
|
|
38
|
+
private static cache;
|
|
39
|
+
private readonly key;
|
|
40
|
+
constructor(opts?: ViewPropertiesOptions);
|
|
41
|
+
toXml(context: Context): string;
|
|
42
|
+
}
|
|
43
|
+
//#endregion
|
|
44
|
+
//#region src/file/handout-master/handout-master.d.ts
|
|
45
|
+
interface ColorMapOptions {
|
|
46
|
+
readonly bg1?: string;
|
|
47
|
+
readonly tx1?: string;
|
|
48
|
+
readonly bg2?: string;
|
|
49
|
+
readonly tx2?: string;
|
|
50
|
+
readonly accent1?: string;
|
|
51
|
+
readonly accent2?: string;
|
|
52
|
+
readonly accent3?: string;
|
|
53
|
+
readonly accent4?: string;
|
|
54
|
+
readonly accent5?: string;
|
|
55
|
+
readonly accent6?: string;
|
|
56
|
+
readonly hlink?: string;
|
|
57
|
+
readonly folHlink?: string;
|
|
58
|
+
}
|
|
59
|
+
interface HeaderFooterOptions {
|
|
60
|
+
readonly date?: boolean;
|
|
61
|
+
readonly header?: boolean;
|
|
62
|
+
readonly footer?: boolean;
|
|
63
|
+
readonly slideNumber?: boolean;
|
|
64
|
+
}
|
|
65
|
+
interface HandoutMasterOptions {
|
|
66
|
+
readonly colorMap?: ColorMapOptions;
|
|
67
|
+
readonly headerFooter?: HeaderFooterOptions;
|
|
68
|
+
}
|
|
69
|
+
declare class DefaultHandoutMaster extends ImportedXmlComponent {
|
|
70
|
+
private static instance;
|
|
71
|
+
private readonly options?;
|
|
72
|
+
constructor(options?: HandoutMasterOptions);
|
|
73
|
+
toXml(context: Context): string;
|
|
74
|
+
}
|
|
75
|
+
//#endregion
|
|
76
|
+
//#region src/file/notes-master/notes-master.d.ts
|
|
77
|
+
interface NotesLevelProperties {
|
|
78
|
+
readonly fontSize?: number;
|
|
79
|
+
readonly marginLeft?: number;
|
|
80
|
+
readonly alignment?: string;
|
|
81
|
+
}
|
|
82
|
+
interface NotesMasterOptions {
|
|
83
|
+
readonly colorMap?: ColorMapOptions;
|
|
84
|
+
readonly headerFooter?: HeaderFooterOptions;
|
|
85
|
+
readonly notesStyle?: readonly NotesLevelProperties[];
|
|
86
|
+
}
|
|
87
|
+
declare class DefaultNotesMaster extends ImportedXmlComponent {
|
|
88
|
+
private static instance;
|
|
89
|
+
private readonly options?;
|
|
90
|
+
constructor(options?: NotesMasterOptions);
|
|
91
|
+
toXml(context: Context): string;
|
|
92
|
+
}
|
|
93
|
+
//#endregion
|
|
94
|
+
//#region src/file/presentation-properties.d.ts
|
|
95
|
+
interface WebPropertiesOptions {
|
|
96
|
+
readonly showAnimation?: boolean;
|
|
97
|
+
readonly resizeGraphics?: boolean;
|
|
98
|
+
readonly allowPng?: boolean;
|
|
99
|
+
readonly relyOnVml?: boolean;
|
|
100
|
+
readonly organizeInFolders?: boolean;
|
|
101
|
+
readonly useLongFilenames?: boolean;
|
|
102
|
+
readonly imageSize?: string;
|
|
103
|
+
readonly encoding?: string;
|
|
104
|
+
readonly color?: string;
|
|
105
|
+
}
|
|
106
|
+
interface PrintPropertiesOptions {
|
|
107
|
+
readonly printWhat?: "slides" | "handouts1" | "handouts2" | "handouts3" | "handouts4" | "handouts6" | "handouts9" | "notes" | "outline";
|
|
108
|
+
readonly colorMode?: "blackWhite" | "gray" | "color";
|
|
109
|
+
readonly hiddenSlides?: boolean;
|
|
110
|
+
readonly scaleToFitPaper?: boolean;
|
|
111
|
+
readonly frameSlides?: boolean;
|
|
112
|
+
}
|
|
113
|
+
interface HtmlPublishPropertiesOptions {
|
|
114
|
+
readonly showSpeakerNotes?: boolean;
|
|
115
|
+
readonly target?: string;
|
|
116
|
+
readonly title?: string;
|
|
117
|
+
readonly rId?: string;
|
|
118
|
+
}
|
|
119
|
+
interface PresentationPropertiesFullOptions {
|
|
120
|
+
readonly show?: ShowOptions;
|
|
121
|
+
readonly web?: WebPropertiesOptions;
|
|
122
|
+
readonly print?: PrintPropertiesOptions;
|
|
123
|
+
readonly htmlPublish?: HtmlPublishPropertiesOptions;
|
|
124
|
+
}
|
|
125
|
+
declare class PresentationProperties extends ImportedXmlComponent {
|
|
126
|
+
private static cache;
|
|
127
|
+
private readonly key;
|
|
128
|
+
constructor(opts?: PresentationPropertiesFullOptions);
|
|
129
|
+
toXml(context: Context): string;
|
|
130
|
+
}
|
|
131
|
+
//#endregion
|
|
132
|
+
//#region src/file/presentation/presentation.d.ts
|
|
133
|
+
interface PhotoAlbumOptions {
|
|
134
|
+
readonly blackWhite?: boolean;
|
|
135
|
+
readonly showCaptions?: boolean;
|
|
136
|
+
readonly layout?: "fitToSlide" | "1pic" | "2pic" | "4pic" | "1picTitle" | "2picTitle" | "4picTitle";
|
|
137
|
+
readonly frame?: "frameStyle1" | "frameStyle2" | "frameStyle3" | "frameStyle4" | "frameStyle5" | "frameStyle6" | "frameStyle7" | "none";
|
|
138
|
+
}
|
|
139
|
+
interface ModifyVerifierOptions {
|
|
140
|
+
readonly password?: string;
|
|
141
|
+
readonly algorithmName?: string;
|
|
142
|
+
readonly hashValue?: string;
|
|
143
|
+
readonly saltValue?: string;
|
|
144
|
+
readonly spinValue?: number;
|
|
145
|
+
readonly cryptoProviderType?: string;
|
|
146
|
+
readonly cryptoAlgorithmClass?: string;
|
|
147
|
+
readonly cryptoAlgorithmType?: string;
|
|
148
|
+
readonly cryptoAlgorithmSid?: number;
|
|
149
|
+
readonly spinCount?: number;
|
|
150
|
+
readonly saltData?: string;
|
|
151
|
+
readonly hashData?: string;
|
|
152
|
+
readonly cryptoProvider?: string;
|
|
153
|
+
readonly algorithmExtensionId?: number;
|
|
154
|
+
readonly algorithmExtensionSource?: string;
|
|
155
|
+
readonly cryptoProviderTypeExtension?: number;
|
|
156
|
+
readonly cryptoProviderTypeExtensionSource?: string;
|
|
157
|
+
}
|
|
158
|
+
interface PresentationOptions {
|
|
159
|
+
readonly slideWidth?: number;
|
|
160
|
+
readonly slideHeight?: number;
|
|
161
|
+
readonly slideIds: readonly number[];
|
|
162
|
+
readonly masterCount: number;
|
|
163
|
+
readonly notesMasterRId?: number;
|
|
164
|
+
readonly handoutMasterRId?: number;
|
|
165
|
+
readonly serverZoom?: string;
|
|
166
|
+
readonly firstSlideNum?: number;
|
|
167
|
+
readonly showSpecialPlsOnTitleSld?: boolean;
|
|
168
|
+
readonly rtl?: boolean;
|
|
169
|
+
readonly removePersonalInfoOnSave?: boolean;
|
|
170
|
+
readonly compatMode?: boolean;
|
|
171
|
+
readonly strictFirstAndLastChars?: boolean;
|
|
172
|
+
readonly embedTrueTypeFonts?: boolean;
|
|
173
|
+
readonly saveSubsetFonts?: boolean;
|
|
174
|
+
readonly autoCompressPictures?: boolean;
|
|
175
|
+
readonly bookmarkIdSeed?: number;
|
|
176
|
+
readonly conformance?: "strict" | "transitional";
|
|
177
|
+
readonly photoAlbum?: PhotoAlbumOptions;
|
|
178
|
+
readonly modifyVerifier?: ModifyVerifierOptions;
|
|
179
|
+
}
|
|
180
|
+
declare class Presentation extends XmlComponent {
|
|
181
|
+
private options;
|
|
182
|
+
constructor(options: PresentationOptions);
|
|
183
|
+
setNotesMasterRId(rId: number): void;
|
|
184
|
+
setHandoutMasterRId(rId: number): void;
|
|
185
|
+
toXml(_context: Context): string;
|
|
186
|
+
}
|
|
187
|
+
//#endregion
|
|
10
188
|
//#region src/file/drawingml/effects.d.ts
|
|
11
189
|
declare const ReflectionAlignment: {
|
|
12
190
|
readonly TOP_LEFT: "topLeft";
|
|
@@ -81,6 +259,7 @@ interface BackgroundOptions {
|
|
|
81
259
|
readonly fill?: FillOptions;
|
|
82
260
|
readonly effects?: EffectsOptions;
|
|
83
261
|
readonly shadeToTitle?: boolean;
|
|
262
|
+
readonly blackWhiteMode?: "clr" | "gray" | "ltGray" | "invGray" | "gmGray" | "bw" | "auto" | "black" | "white";
|
|
84
263
|
}
|
|
85
264
|
declare class Background extends XmlComponent {
|
|
86
265
|
constructor(options?: BackgroundOptions);
|
|
@@ -103,6 +282,7 @@ interface CommentEntry {
|
|
|
103
282
|
readonly authorId: number;
|
|
104
283
|
readonly idx: number;
|
|
105
284
|
readonly date?: string;
|
|
285
|
+
readonly modified?: boolean;
|
|
106
286
|
readonly x: number;
|
|
107
287
|
readonly y: number;
|
|
108
288
|
readonly text: string;
|
|
@@ -118,6 +298,7 @@ declare class ContentTypes extends BaseXmlComponent {
|
|
|
118
298
|
addSlide(index: number): void;
|
|
119
299
|
addNotesSlide(index: number): void;
|
|
120
300
|
addNotesMaster(): void;
|
|
301
|
+
addHandoutMaster(): void;
|
|
121
302
|
addComments(index: number): void;
|
|
122
303
|
addCommentAuthors(): void;
|
|
123
304
|
addChart(index: number): void;
|
|
@@ -238,35 +419,6 @@ declare class NotesSlide extends XmlComponent {
|
|
|
238
419
|
constructor(options?: NotesSlideOptions);
|
|
239
420
|
}
|
|
240
421
|
//#endregion
|
|
241
|
-
//#region src/file/presentation-properties.d.ts
|
|
242
|
-
interface ShowOptions$1 {
|
|
243
|
-
readonly loop?: boolean;
|
|
244
|
-
readonly kiosk?: boolean;
|
|
245
|
-
readonly showNarration?: boolean;
|
|
246
|
-
readonly useTimings?: boolean;
|
|
247
|
-
}
|
|
248
|
-
declare class PresentationProperties extends ImportedXmlComponent {
|
|
249
|
-
private static cache;
|
|
250
|
-
private readonly key;
|
|
251
|
-
constructor(showOptions?: ShowOptions$1);
|
|
252
|
-
toXml(context: Context): string;
|
|
253
|
-
}
|
|
254
|
-
//#endregion
|
|
255
|
-
//#region src/file/presentation/presentation.d.ts
|
|
256
|
-
interface PresentationOptions {
|
|
257
|
-
readonly slideWidth?: number;
|
|
258
|
-
readonly slideHeight?: number;
|
|
259
|
-
readonly slideIds: readonly number[];
|
|
260
|
-
readonly masterCount: number;
|
|
261
|
-
readonly notesMasterRId?: number;
|
|
262
|
-
}
|
|
263
|
-
declare class Presentation extends XmlComponent {
|
|
264
|
-
private options;
|
|
265
|
-
constructor(options: PresentationOptions);
|
|
266
|
-
setNotesMasterRId(rId: number): void;
|
|
267
|
-
toXml(_context: Context): string;
|
|
268
|
-
}
|
|
269
|
-
//#endregion
|
|
270
422
|
//#region src/file/presentation/presentation-wrapper.d.ts
|
|
271
423
|
interface ViewWrapper {
|
|
272
424
|
readonly view: BaseXmlComponent;
|
|
@@ -316,6 +468,50 @@ interface AnimationOptions {
|
|
|
316
468
|
readonly animBy?: string;
|
|
317
469
|
readonly charRange?: readonly [number, number];
|
|
318
470
|
readonly paragraphRange?: readonly [number, number];
|
|
471
|
+
readonly setBehavior?: {
|
|
472
|
+
readonly attributeName: string;
|
|
473
|
+
readonly toValue: string;
|
|
474
|
+
readonly toType?: "string" | "number";
|
|
475
|
+
};
|
|
476
|
+
readonly commandType?: "call" | "evt" | "verb";
|
|
477
|
+
readonly command?: string;
|
|
478
|
+
readonly iterate?: {
|
|
479
|
+
readonly type?: "el" | "wd" | "lt";
|
|
480
|
+
readonly interval?: number;
|
|
481
|
+
readonly backwards?: boolean;
|
|
482
|
+
};
|
|
483
|
+
readonly repeatDuration?: string;
|
|
484
|
+
readonly acceleration?: number;
|
|
485
|
+
readonly deceleration?: number;
|
|
486
|
+
readonly restart?: "always" | "whenNotActive" | "never";
|
|
487
|
+
readonly syncBehavior?: "canSlip" | "isLocked" | "stoppable";
|
|
488
|
+
readonly timeFilter?: string;
|
|
489
|
+
readonly eventFilter?: string;
|
|
490
|
+
readonly display?: boolean;
|
|
491
|
+
readonly masterRelation?: "clearConn" | "keepConn" | "resume";
|
|
492
|
+
readonly buildLevel?: number;
|
|
493
|
+
readonly groupId?: number;
|
|
494
|
+
readonly afterEffect?: boolean;
|
|
495
|
+
readonly nodePlaceholder?: boolean;
|
|
496
|
+
readonly advanceAfterTime?: string;
|
|
497
|
+
readonly animateBackground?: boolean;
|
|
498
|
+
readonly autoUpdateAnimationBackground?: boolean;
|
|
499
|
+
readonly additive?: "base" | "sum" | "repl" | "mult" | "none";
|
|
500
|
+
readonly accumulate?: "none" | "always";
|
|
501
|
+
readonly transformType?: "pt" | "img";
|
|
502
|
+
readonly runtimeContext?: string;
|
|
503
|
+
readonly override?: "normal" | "childStyle";
|
|
504
|
+
readonly paragraphBuild?: "whole" | "allAtOnce" | "p" | "cust";
|
|
505
|
+
readonly formula?: string;
|
|
506
|
+
readonly colorSpace?: "rgb" | "hsl";
|
|
507
|
+
readonly pathEditMode?: "relative" | "fixed" | "none";
|
|
508
|
+
readonly previousAction?: "none" | "skipTimed";
|
|
509
|
+
readonly pointsTypes?: string;
|
|
510
|
+
readonly rotationAngle?: number;
|
|
511
|
+
readonly zoomContents?: boolean;
|
|
512
|
+
readonly showWhenStopped?: boolean;
|
|
513
|
+
readonly numberOfSlides?: number;
|
|
514
|
+
readonly propertyList?: string;
|
|
319
515
|
}
|
|
320
516
|
//#endregion
|
|
321
517
|
//#region src/file/drawingml/outline.d.ts
|
|
@@ -386,6 +582,7 @@ interface ParagraphPropertiesOptions {
|
|
|
386
582
|
readonly marginIndent?: number;
|
|
387
583
|
readonly marginRight?: number;
|
|
388
584
|
readonly defTabSize?: number;
|
|
585
|
+
readonly fontAlignment?: "auto" | "t" | "ctr" | "b" | "base";
|
|
389
586
|
}
|
|
390
587
|
declare class ParagraphProperties extends XmlComponent {
|
|
391
588
|
private readonly options;
|
|
@@ -412,6 +609,10 @@ declare const TextCapitalization: {
|
|
|
412
609
|
interface HyperlinkOptions {
|
|
413
610
|
readonly url: string;
|
|
414
611
|
readonly tooltip?: string;
|
|
612
|
+
readonly action?: string;
|
|
613
|
+
readonly highlightClick?: boolean;
|
|
614
|
+
readonly endSound?: boolean;
|
|
615
|
+
readonly invalidUrl?: boolean;
|
|
415
616
|
}
|
|
416
617
|
interface RunPropertiesOptions {
|
|
417
618
|
readonly fontSize?: number;
|
|
@@ -431,6 +632,11 @@ interface RunPropertiesOptions {
|
|
|
431
632
|
readonly rightToLeft?: boolean;
|
|
432
633
|
readonly noProof?: boolean;
|
|
433
634
|
readonly dirty?: boolean;
|
|
635
|
+
readonly kumimoji?: boolean;
|
|
636
|
+
readonly alternateLanguage?: string;
|
|
637
|
+
readonly normalizeHeight?: boolean;
|
|
638
|
+
readonly bookmarkMark?: string;
|
|
639
|
+
readonly smartTagId?: string;
|
|
434
640
|
}
|
|
435
641
|
declare function hasRunProperties(options: RunPropertiesOptions): boolean;
|
|
436
642
|
declare class RunProperties extends XmlComponent {
|
|
@@ -497,6 +703,8 @@ interface TableCellOptions {
|
|
|
497
703
|
};
|
|
498
704
|
readonly columnSpan?: number;
|
|
499
705
|
readonly rowSpan?: number;
|
|
706
|
+
readonly horizontalMerge?: "continue" | "restart";
|
|
707
|
+
readonly verticalMerge?: "continue" | "restart";
|
|
500
708
|
readonly verticalAlign?: VerticalAlignment;
|
|
501
709
|
readonly margins?: {
|
|
502
710
|
readonly top?: number;
|
|
@@ -526,6 +734,8 @@ interface TextBodyOptions {
|
|
|
526
734
|
readonly left?: number;
|
|
527
735
|
readonly right?: number;
|
|
528
736
|
};
|
|
737
|
+
readonly marginTop?: number;
|
|
738
|
+
readonly marginBottom?: number;
|
|
529
739
|
readonly columns?: number;
|
|
530
740
|
readonly columnSpacing?: number;
|
|
531
741
|
}
|
|
@@ -551,8 +761,14 @@ interface ShapeOptions {
|
|
|
551
761
|
readonly rotation?: number;
|
|
552
762
|
readonly textBody?: TextBodyOptions;
|
|
553
763
|
readonly animation?: AnimationOptions;
|
|
764
|
+
readonly locking?: ShapeLockingOptions;
|
|
554
765
|
readonly placeholder?: "title" | "body" | "subTitle" | "sldNum" | "dt" | "ftr" | "hdr" | "obj";
|
|
555
766
|
readonly placeholderIndex?: number;
|
|
767
|
+
readonly useBackgroundFill?: boolean;
|
|
768
|
+
readonly isPhoto?: boolean;
|
|
769
|
+
readonly userDrawn?: boolean;
|
|
770
|
+
readonly hasCustomPrompt?: boolean;
|
|
771
|
+
readonly blackWhiteMode?: "clr" | "auto" | "gray" | "ltGray" | "invGray" | "grayWhite" | "blackGray" | "blackWhite" | "black" | "white" | "hidden";
|
|
556
772
|
}
|
|
557
773
|
declare class Shape extends XmlComponent {
|
|
558
774
|
private static nextId;
|
|
@@ -668,6 +884,33 @@ declare class VideoFrame extends MediaFrameBase {
|
|
|
668
884
|
constructor(options: VideoFrameOptions);
|
|
669
885
|
}
|
|
670
886
|
//#endregion
|
|
887
|
+
//#region src/file/ole/ole-frame.d.ts
|
|
888
|
+
interface OleEmbedOptions {
|
|
889
|
+
readonly rId: string;
|
|
890
|
+
readonly lastEdited?: string;
|
|
891
|
+
}
|
|
892
|
+
interface OleLinkOptions {
|
|
893
|
+
readonly rId: string;
|
|
894
|
+
readonly updateLastEdited?: string;
|
|
895
|
+
readonly autoUpdate?: boolean;
|
|
896
|
+
}
|
|
897
|
+
interface OleOptions {
|
|
898
|
+
readonly x?: number;
|
|
899
|
+
readonly y?: number;
|
|
900
|
+
readonly width?: number;
|
|
901
|
+
readonly height?: number;
|
|
902
|
+
readonly progId?: string;
|
|
903
|
+
readonly spid?: string;
|
|
904
|
+
readonly name?: string;
|
|
905
|
+
readonly showAsIcon?: boolean;
|
|
906
|
+
readonly imgW?: number;
|
|
907
|
+
readonly imgH?: number;
|
|
908
|
+
readonly embed?: OleEmbedOptions;
|
|
909
|
+
readonly link?: OleLinkOptions;
|
|
910
|
+
readonly imgRId?: string;
|
|
911
|
+
readonly followColorScheme?: "none" | "full" | "textAndBackground";
|
|
912
|
+
}
|
|
913
|
+
//#endregion
|
|
671
914
|
//#region src/file/picture/picture.d.ts
|
|
672
915
|
interface PictureOptions {
|
|
673
916
|
readonly x?: number;
|
|
@@ -785,6 +1028,7 @@ interface DrawingTableOptions {
|
|
|
785
1028
|
readonly firstCol?: boolean;
|
|
786
1029
|
readonly lastCol?: boolean;
|
|
787
1030
|
readonly bandCol?: boolean;
|
|
1031
|
+
readonly tableStyleId?: string;
|
|
788
1032
|
readonly borders?: {
|
|
789
1033
|
readonly top?: CellBorderOptions;
|
|
790
1034
|
readonly bottom?: CellBorderOptions;
|
|
@@ -831,6 +1075,8 @@ type SlideChild = BaseXmlComponent | {
|
|
|
831
1075
|
group: GroupShapeOptions;
|
|
832
1076
|
} | {
|
|
833
1077
|
smartart: SmartArtOptions;
|
|
1078
|
+
} | {
|
|
1079
|
+
ole: OleOptions;
|
|
834
1080
|
};
|
|
835
1081
|
//#endregion
|
|
836
1082
|
//#region src/file/transition/transition.d.ts
|
|
@@ -858,54 +1104,16 @@ declare class Slide extends XmlComponent {
|
|
|
858
1104
|
private readonly background?;
|
|
859
1105
|
private readonly transition?;
|
|
860
1106
|
readonly HeaderFooter?: SlideHeaderFooterOptions;
|
|
861
|
-
|
|
1107
|
+
private readonly showMasterSp?;
|
|
1108
|
+
private readonly showMasterPhAnim?;
|
|
1109
|
+
constructor(children: readonly SlideChild[], background?: Background, transition?: TransitionOptions, headerFooter?: SlideHeaderFooterOptions, showMasterSp?: boolean, showMasterPhAnim?: boolean);
|
|
862
1110
|
toXml(context: Context): string;
|
|
863
1111
|
}
|
|
864
1112
|
//#endregion
|
|
865
1113
|
//#region src/file/table-styles.d.ts
|
|
866
|
-
declare class TableStyles extends
|
|
867
|
-
private
|
|
868
|
-
constructor();
|
|
869
|
-
toXml(context: Context): string;
|
|
870
|
-
}
|
|
871
|
-
//#endregion
|
|
872
|
-
//#region src/file/theme/theme.d.ts
|
|
873
|
-
interface ColorSchemeOptions {
|
|
874
|
-
dark1?: string;
|
|
875
|
-
light1?: string;
|
|
876
|
-
dark2?: string;
|
|
877
|
-
light2?: string;
|
|
878
|
-
accent1?: string;
|
|
879
|
-
accent2?: string;
|
|
880
|
-
accent3?: string;
|
|
881
|
-
accent4?: string;
|
|
882
|
-
accent5?: string;
|
|
883
|
-
accent6?: string;
|
|
884
|
-
hyperlink?: string;
|
|
885
|
-
followedHyperlink?: string;
|
|
886
|
-
}
|
|
887
|
-
interface FontSchemeOptions {
|
|
888
|
-
majorFont?: string;
|
|
889
|
-
minorFont?: string;
|
|
890
|
-
majorFontAsian?: string;
|
|
891
|
-
minorFontAsian?: string;
|
|
892
|
-
}
|
|
893
|
-
interface ThemeOptions {
|
|
894
|
-
name?: string;
|
|
895
|
-
colors?: ColorSchemeOptions;
|
|
896
|
-
fonts?: FontSchemeOptions;
|
|
897
|
-
}
|
|
898
|
-
declare class DefaultTheme extends ImportedXmlComponent {
|
|
899
|
-
private static cache;
|
|
900
|
-
private readonly cacheKey;
|
|
901
|
-
constructor(options?: ThemeOptions);
|
|
902
|
-
toXml(context: Context): string;
|
|
903
|
-
}
|
|
904
|
-
//#endregion
|
|
905
|
-
//#region src/file/view-properties.d.ts
|
|
906
|
-
declare class ViewProperties extends ImportedXmlComponent {
|
|
907
|
-
private static instance;
|
|
908
|
-
constructor();
|
|
1114
|
+
declare class TableStyles extends BaseXmlComponent {
|
|
1115
|
+
private readonly opts?;
|
|
1116
|
+
constructor(opts?: TableStyleListOptions);
|
|
909
1117
|
toXml(context: Context): string;
|
|
910
1118
|
}
|
|
911
1119
|
//#endregion
|
|
@@ -928,6 +1136,7 @@ interface LayoutPlaceholderOptions {
|
|
|
928
1136
|
interface LayoutDefinition {
|
|
929
1137
|
readonly type?: SlideLayoutType;
|
|
930
1138
|
readonly name?: string;
|
|
1139
|
+
readonly matchingName?: string;
|
|
931
1140
|
readonly placeholders?: LayoutPlaceholderOptions;
|
|
932
1141
|
readonly children?: readonly MasterChild[];
|
|
933
1142
|
}
|
|
@@ -953,18 +1162,51 @@ interface SlideOptions {
|
|
|
953
1162
|
readonly comments?: readonly SlideCommentOptions[];
|
|
954
1163
|
readonly layout?: SlideLayoutType | string;
|
|
955
1164
|
readonly master?: string;
|
|
1165
|
+
readonly showMasterShapes?: boolean;
|
|
1166
|
+
readonly showMasterPlaceholderAnimations?: boolean;
|
|
956
1167
|
}
|
|
957
1168
|
interface ShowOptions {
|
|
958
1169
|
readonly loop?: boolean;
|
|
959
|
-
readonly
|
|
1170
|
+
readonly type?: "present" | "browse" | "kiosk";
|
|
1171
|
+
readonly showScrollbar?: boolean;
|
|
1172
|
+
readonly restart?: number;
|
|
960
1173
|
readonly showNarration?: boolean;
|
|
1174
|
+
readonly showAnimation?: boolean;
|
|
961
1175
|
readonly useTimings?: boolean;
|
|
1176
|
+
readonly slideRange?: {
|
|
1177
|
+
readonly start: number;
|
|
1178
|
+
readonly end: number;
|
|
1179
|
+
};
|
|
1180
|
+
readonly penColor?: string;
|
|
962
1181
|
}
|
|
963
1182
|
interface PresentationOptions$1 extends CorePropertiesOptions {
|
|
964
1183
|
readonly size?: SlideSize;
|
|
965
1184
|
readonly masters?: readonly MasterDefinition[];
|
|
966
1185
|
readonly slides?: readonly SlideOptions[];
|
|
967
1186
|
readonly show?: ShowOptions;
|
|
1187
|
+
readonly view?: ViewPropertiesOptions;
|
|
1188
|
+
readonly includeHandoutMaster?: boolean;
|
|
1189
|
+
readonly includeNotesMaster?: boolean;
|
|
1190
|
+
readonly handoutMasterOptions?: HandoutMasterOptions;
|
|
1191
|
+
readonly notesMasterOptions?: NotesMasterOptions;
|
|
1192
|
+
readonly tableStyles?: import("@office-open/core").TableStyleListOptions;
|
|
1193
|
+
readonly web?: WebPropertiesOptions;
|
|
1194
|
+
readonly print?: PrintPropertiesOptions;
|
|
1195
|
+
readonly htmlPublish?: HtmlPublishPropertiesOptions;
|
|
1196
|
+
readonly serverZoom?: string;
|
|
1197
|
+
readonly firstSlideNum?: number;
|
|
1198
|
+
readonly showSpecialPlsOnTitleSld?: boolean;
|
|
1199
|
+
readonly rtl?: boolean;
|
|
1200
|
+
readonly removePersonalInfoOnSave?: boolean;
|
|
1201
|
+
readonly compatMode?: boolean;
|
|
1202
|
+
readonly strictFirstAndLastChars?: boolean;
|
|
1203
|
+
readonly embedTrueTypeFonts?: boolean;
|
|
1204
|
+
readonly saveSubsetFonts?: boolean;
|
|
1205
|
+
readonly autoCompressPictures?: boolean;
|
|
1206
|
+
readonly bookmarkIdSeed?: number;
|
|
1207
|
+
readonly conformance?: "strict" | "transitional";
|
|
1208
|
+
readonly photoAlbum?: PhotoAlbumOptions;
|
|
1209
|
+
readonly modifyVerifier?: ModifyVerifierOptions;
|
|
968
1210
|
}
|
|
969
1211
|
interface LayoutInfo {
|
|
970
1212
|
readonly key: string;
|
|
@@ -979,6 +1221,13 @@ declare class File {
|
|
|
979
1221
|
private readonly slideWidthEmus;
|
|
980
1222
|
private readonly slideHeightEmus;
|
|
981
1223
|
private readonly masterDefs;
|
|
1224
|
+
private readonly includeHandout;
|
|
1225
|
+
private readonly tableStylesOpts?;
|
|
1226
|
+
private readonly viewOpts?;
|
|
1227
|
+
private readonly handoutMasterOpts?;
|
|
1228
|
+
private readonly notesMasterOpts?;
|
|
1229
|
+
private readonly presPropsFullOpts?;
|
|
1230
|
+
private readonly presAttrOpts?;
|
|
982
1231
|
private _coreProperties?;
|
|
983
1232
|
private _appProperties?;
|
|
984
1233
|
private _contentTypes?;
|
|
@@ -1028,6 +1277,9 @@ declare class File {
|
|
|
1028
1277
|
get notesSlides(): readonly NotesSlide[];
|
|
1029
1278
|
get notesSlideIndexMap(): Map<number, number>;
|
|
1030
1279
|
get notesMasterRelationships(): Relationships;
|
|
1280
|
+
get hasHandoutMaster(): boolean;
|
|
1281
|
+
get handoutMasterOptions(): HandoutMasterOptions | undefined;
|
|
1282
|
+
get notesMasterOptions(): NotesMasterOptions | undefined;
|
|
1031
1283
|
get commentAuthorList(): CommentAuthorList | undefined;
|
|
1032
1284
|
get slideCommentLists(): readonly (SlideCommentList | undefined)[];
|
|
1033
1285
|
private buildComments;
|
|
@@ -1110,13 +1362,6 @@ declare class ShapeTree extends XmlComponent {
|
|
|
1110
1362
|
constructor(children: readonly XmlComponent[]);
|
|
1111
1363
|
}
|
|
1112
1364
|
//#endregion
|
|
1113
|
-
//#region src/file/notes-master/notes-master.d.ts
|
|
1114
|
-
declare class DefaultNotesMaster extends ImportedXmlComponent {
|
|
1115
|
-
private static instance;
|
|
1116
|
-
constructor();
|
|
1117
|
-
toXml(context: Context): string;
|
|
1118
|
-
}
|
|
1119
|
-
//#endregion
|
|
1120
1365
|
//#region src/file/table/table-properties.d.ts
|
|
1121
1366
|
declare class TableProperties extends BaseXmlComponent {
|
|
1122
1367
|
private readonly options?;
|
|
@@ -1127,10 +1372,142 @@ declare class TableProperties extends BaseXmlComponent {
|
|
|
1127
1372
|
readonly firstCol?: boolean;
|
|
1128
1373
|
readonly lastCol?: boolean;
|
|
1129
1374
|
readonly bandCol?: boolean;
|
|
1375
|
+
readonly tableStyleId?: string;
|
|
1130
1376
|
});
|
|
1131
1377
|
toXml(_context: Context): string;
|
|
1132
1378
|
}
|
|
1133
1379
|
//#endregion
|
|
1380
|
+
//#region src/file/pml-elements.d.ts
|
|
1381
|
+
declare const BLINDS = "p:blinds";
|
|
1382
|
+
declare const CHECKER = "p:checker";
|
|
1383
|
+
declare const CIRCLE = "p:circle";
|
|
1384
|
+
declare const COMB = "p:comb";
|
|
1385
|
+
declare const COVER = "p:cover";
|
|
1386
|
+
declare const CUT = "p:cut";
|
|
1387
|
+
declare const DIAMOND = "p:diamond";
|
|
1388
|
+
declare const DISSOLVE = "p:dissolve";
|
|
1389
|
+
declare const FADE = "p:fade";
|
|
1390
|
+
declare const NEWSFLASH = "p:newsflash";
|
|
1391
|
+
declare const PLUS = "p:plus";
|
|
1392
|
+
declare const PULL = "p:pull";
|
|
1393
|
+
declare const PUSH = "p:push";
|
|
1394
|
+
declare const RANDOM = "p:random";
|
|
1395
|
+
declare const RANDOM_BAR = "p:randomBar";
|
|
1396
|
+
declare const SPLIT = "p:split";
|
|
1397
|
+
declare const STRIPS = "p:strips";
|
|
1398
|
+
declare const WEDGE = "p:wedge";
|
|
1399
|
+
declare const WHEEL = "p:wheel";
|
|
1400
|
+
declare const WIPE = "p:wipe";
|
|
1401
|
+
declare const ZOOM = "p:zoom";
|
|
1402
|
+
declare const ST_SND = "p:stSnd";
|
|
1403
|
+
declare const END_SND = "p:endSnd";
|
|
1404
|
+
declare const SND_AC = "p:sndAc";
|
|
1405
|
+
declare const BLD_LST = "p:bldLst";
|
|
1406
|
+
declare const BLD_P = "p:bldP";
|
|
1407
|
+
declare const BLD_DGM = "p:bldDgm";
|
|
1408
|
+
declare const BLD_OLE_CHART = "p:bldOleChart";
|
|
1409
|
+
declare const BLD_GRAPHIC = "p:bldGraphic";
|
|
1410
|
+
declare const BLD_AS_ONE = "p:bldAsOne";
|
|
1411
|
+
declare const BLD_SUB = "p:bldSub";
|
|
1412
|
+
declare const TN = "p:tn";
|
|
1413
|
+
declare const SUB_TN_LST = "p:subTnLst";
|
|
1414
|
+
declare const END_COND_LST = "p:endCondLst";
|
|
1415
|
+
declare const END_SYNC = "p:endSync";
|
|
1416
|
+
declare const TMPL = "p:tmpl";
|
|
1417
|
+
declare const TMPL_LST = "p:tmplLst";
|
|
1418
|
+
declare const TM_PCT = "p:tmPct";
|
|
1419
|
+
declare const EXCL = "p:excl";
|
|
1420
|
+
declare const INK_TGT = "p:inkTgt";
|
|
1421
|
+
declare const SND_TGT = "p:sndTgt";
|
|
1422
|
+
declare const SUB_SP = "p:subSp";
|
|
1423
|
+
declare const GRAPHIC_EL = "p:graphicEl";
|
|
1424
|
+
declare const OLE_CHART_EL = "p:oleChartEl";
|
|
1425
|
+
declare const R_CTR = "p:rCtr";
|
|
1426
|
+
declare const BOOL_VAL = "p:boolVal";
|
|
1427
|
+
declare const INT_VAL = "p:intVal";
|
|
1428
|
+
declare const FLT_VAL = "p:fltVal";
|
|
1429
|
+
declare const STR_VAL = "p:strVal";
|
|
1430
|
+
declare const CLR_VAL = "p:clrVal";
|
|
1431
|
+
declare const FROM = "p:from";
|
|
1432
|
+
declare const RGB = "p:rgb";
|
|
1433
|
+
declare const HSL = "p:hsl";
|
|
1434
|
+
declare const RTN = "p:rtn";
|
|
1435
|
+
declare const BOLD = "p:bold";
|
|
1436
|
+
declare const ITALIC = "p:italic";
|
|
1437
|
+
declare const BOLD_ITALIC = "p:boldItalic";
|
|
1438
|
+
declare const REGULAR = "p:regular";
|
|
1439
|
+
declare const STYLE = "p:style";
|
|
1440
|
+
declare const FONT = "p:font";
|
|
1441
|
+
declare const CONTENT_PART = "p:contentPart";
|
|
1442
|
+
declare const SLD_LST = "p:sldLst";
|
|
1443
|
+
declare const PHOTO_ALBUM = "p:photoAlbum";
|
|
1444
|
+
declare const CONTROL = "p:control";
|
|
1445
|
+
declare const CONTROLS = "p:controls";
|
|
1446
|
+
declare const CUST_DATA = "p:custData";
|
|
1447
|
+
declare const CUST_DATA_LST = "p:custDataLst";
|
|
1448
|
+
declare const CUST_SHOW = "p:custShow";
|
|
1449
|
+
declare const CUST_SHOW_LST = "p:custShowLst";
|
|
1450
|
+
declare const TAG = "p:tag";
|
|
1451
|
+
declare const TAG_LST = "p:tagLst";
|
|
1452
|
+
declare const TAGS = "p:tags";
|
|
1453
|
+
declare const EMBEDDED_FONT = "p:embeddedFont";
|
|
1454
|
+
declare const EMBEDDED_FONT_LST = "p:embeddedFontLst";
|
|
1455
|
+
declare const HTML_PUB_PR = "p:htmlPubPr";
|
|
1456
|
+
declare const WEB_PR = "p:webPr";
|
|
1457
|
+
declare const PRN_PR = "p:prnPr";
|
|
1458
|
+
declare const MODIFY_VERIFIER = "p:modifyVerifier";
|
|
1459
|
+
declare const SMART_TAGS = "p:smartTags";
|
|
1460
|
+
declare const SLD_SYNC_PR = "p:sldSyncPr";
|
|
1461
|
+
declare const NOTES_VIEW_PR = "p:notesViewPr";
|
|
1462
|
+
declare const OUTLINE_VIEW_PR = "p:outlineViewPr";
|
|
1463
|
+
declare const SORTER_VIEW_PR = "p:sorterViewPr";
|
|
1464
|
+
declare const CLR_MRU = "p:clrMru";
|
|
1465
|
+
declare const GUIDE = "p:guide";
|
|
1466
|
+
declare const KINSOKU = "p:kinsoku";
|
|
1467
|
+
declare const PROGRESS = "p:progress";
|
|
1468
|
+
interface SlideSyncPropertiesOptions {
|
|
1469
|
+
readonly serverSlideId?: string;
|
|
1470
|
+
readonly serverSlideModifiedTime?: string;
|
|
1471
|
+
readonly clientInsertedTime?: string;
|
|
1472
|
+
}
|
|
1473
|
+
declare const createSlideSyncProperties: (options?: SlideSyncPropertiesOptions) => XmlComponent;
|
|
1474
|
+
interface OutlineViewPropertiesOptions {
|
|
1475
|
+
readonly showFormatting?: boolean;
|
|
1476
|
+
}
|
|
1477
|
+
declare const createOutlineViewProperties: (options?: OutlineViewPropertiesOptions) => XmlComponent;
|
|
1478
|
+
interface OutlineViewSlideEntryOptions {
|
|
1479
|
+
readonly collapse?: boolean;
|
|
1480
|
+
}
|
|
1481
|
+
declare const createOutlineViewSlideEntry: (options?: OutlineViewSlideEntryOptions) => XmlComponent;
|
|
1482
|
+
interface KinsokuOptions {
|
|
1483
|
+
readonly invalidStartCharacters?: string;
|
|
1484
|
+
readonly invalidEndCharacters?: string;
|
|
1485
|
+
}
|
|
1486
|
+
declare const createKinsoku: (options?: KinsokuOptions) => XmlComponent;
|
|
1487
|
+
interface ExclusiveTimingOptions {
|
|
1488
|
+
readonly previousAction?: "none" | "skipTimed";
|
|
1489
|
+
}
|
|
1490
|
+
declare const createExclusiveTiming: (options?: ExclusiveTimingOptions) => XmlComponent;
|
|
1491
|
+
interface BuildParagraphOptions {
|
|
1492
|
+
readonly build?: "whole" | "allAtOnce" | "p" | "cust";
|
|
1493
|
+
readonly uiExpand?: boolean;
|
|
1494
|
+
}
|
|
1495
|
+
declare const createBuildParagraph: (options?: BuildParagraphOptions) => XmlComponent;
|
|
1496
|
+
interface BuildDiagramOptions {
|
|
1497
|
+
readonly build?: "whole" | "allAtOnce" | "cust" | "sp" | "bg";
|
|
1498
|
+
readonly uiExpand?: boolean;
|
|
1499
|
+
}
|
|
1500
|
+
declare const createBuildDiagram: (options?: BuildDiagramOptions) => XmlComponent;
|
|
1501
|
+
interface BuildOleChartOptions {
|
|
1502
|
+
readonly build?: "allAtOnce" | "series" | "category" | "seriesEl" | "categoryEl";
|
|
1503
|
+
readonly uiExpand?: boolean;
|
|
1504
|
+
}
|
|
1505
|
+
declare const createBuildOleChart: (options?: BuildOleChartOptions) => XmlComponent;
|
|
1506
|
+
interface BuildGraphicOptions {
|
|
1507
|
+
readonly uiExpand?: boolean;
|
|
1508
|
+
}
|
|
1509
|
+
declare const createBuildGraphic: (options?: BuildGraphicOptions) => XmlComponent;
|
|
1510
|
+
//#endregion
|
|
1134
1511
|
//#region src/export/packer/packer.d.ts
|
|
1135
1512
|
declare const Packer: import("@office-open/core").Packer<File>;
|
|
1136
1513
|
//#endregion
|
|
@@ -1214,8 +1591,8 @@ declare const patchPresentation: <T extends PatchDocumentOutputType = PatchDocum
|
|
|
1214
1591
|
placeholderDelimiters
|
|
1215
1592
|
}: PatchPresentationOptions<T>) => Promise<OutputByType[T]>;
|
|
1216
1593
|
declare namespace index_d_exports {
|
|
1217
|
-
export { AnimationCalcMode, AnimationClass, AnimationDirection, AnimationOptions, AnimationTrigger, AnimationType, AnimationValueType, AppProperties, AudioFrame, AudioFrameOptions, AudioType, Background, BackgroundOptions, BevelOptions, BevelPresetType, BlipFill, BlipFillConfigOptions, BlipFillMediaData, CellBorderOptions, Chart, ChartCollection, ChartData, ChartOptions, ChartSeriesData, ChartSpace, ChartSpaceOptions, ChartType, ColorSchemeOptions, ColorTransformOptions, CompoundLine, CompressionOptions, ConnectorShape, ConnectorShapeOptions, ContentTypes, CoreGradientFillOptions, CoreOutlineOptions, CoreProperties, CorePropertiesOptions, DateTimeField, DefaultNotesMaster, DefaultSlideLayout, DefaultSlideMaster, DefaultTheme, DrawingTable, EffectListOptions, EffectsOptions, EmphasisType, EndParagraphRunProperties, Field, File, FillOptions, FontSchemeOptions, GlowOptions, GradientStop, GradientStopOptions, GroupShape, GroupShapeOptions, GroupShapeProperties, GroupTransform2D, HeaderFooter, HyperlinkOptions, IGroupTransform2DOptions, IMediaData, IPatch, PresentationOptions as IPresentationXmlOptions, ITransform2DOptions, InputDataType, LayoutDefinition, LayoutPlaceholderOptions, LineCap, LineJoin, LineShape, LineShapeOptions, MasterChild, MasterDefinition, MasterPlaceholderOptions, MasterPlaceholderPosition, Media, MediaAnimationType, MediaDataTransformation, MediaTransformation, NonVisualDrawingProperties, NonVisualPictureProperties, NonVisualShapeProperties, NotesSlide, NotesSlideOptions, OutlineOptions, Packer, PackerOptions, Paragraph, ParagraphOptions, ParagraphProperties, ParagraphPropertiesOptions, PatchDocumentOutputType, PatchPresentationOptions, PatchType, PathAnimationType, PathShadeType, PenAlignment, Picture, PictureOptions, PosterType, PptxDocument, PptxPartRefs, File as Presentation, PresentationOptions$1 as PresentationOptions, PresentationWrapper, PresetDash, PresetGeometry, PresetMaterialType, ReflectionAlignment, ReflectionOptions, RelationshipType, Relationships, RunOptions, RunProperties, RunPropertiesOptions, Scene3DOptions, ShadowOptions, Shape, Shape3DOptions, ShapeOptions, ShapeProperties, ShapePropertiesOptions, ShapeTree, Slide, SlideChild, SlideCommentOptions, SlideHeaderFooterOptions, SlideLayout, SlideLayoutType, SlideMasterOptions, SlideNumberField, SlideOptions, SlideSize, SlideSizePreset, SmartArt, SmartArtOptions, SoftEdgeOptions, StrikeStyle, Table, TableCell, TableCellOptions, TableCellProperties, TableOptions, TableProperties, TableRow, TableRowOptions, Text, TextAlignment, TextBody, TextBodyOptions, TextCapitalization, TextRun, ThemeOptions, TileFlipMode, Transform2D, Transition, TransitionDirection, TransitionOptions, TransitionType, TreeNode, UnderlineStyle, VerticalAlignment, VideoFrame, VideoFrameOptions, VideoType, ViewWrapper, buildFill, coerceChild, convertEmuToInches, convertEmuToPixels, convertEmuToPoints, convertInchesToEmu, convertPixelsToEmu, convertPointsToEmu, createBevel, createBottomBevel, createColorElement, createColorTransforms, createEffectList, createGradientFill, createGradientStop, createOutline, createOutlineCompat, createPptxEffectList, createScene3D, createShape3D, createTransformation, extractBlipFillMedia, hashedId, parseArchive, parsePptx, parsePresentation, patchPresentation, percentToTHousandths, uniqueId, uniqueNumericIdCreator, uniqueUuid };
|
|
1594
|
+
export { AnimationCalcMode, AnimationClass, AnimationDirection, AnimationOptions, AnimationTrigger, AnimationType, AnimationValueType, AppProperties, AudioFrame, AudioFrameOptions, AudioType, BLD_AS_ONE, BLD_DGM, BLD_GRAPHIC, BLD_LST, BLD_OLE_CHART, BLD_P, BLD_SUB, BLINDS, BOLD, BOLD_ITALIC, BOOL_VAL, Background, BackgroundOptions, BevelOptions, BevelPresetType, BlipFill, BlipFillConfigOptions, BlipFillMediaData, BuildDiagramOptions, BuildGraphicOptions, BuildOleChartOptions, BuildParagraphOptions, CHECKER, CIRCLE, CLR_MRU, CLR_VAL, COMB, CONTENT_PART, CONTROL, CONTROLS, COVER, CUST_DATA, CUST_DATA_LST, CUST_SHOW, CUST_SHOW_LST, CUT, CellBorderOptions, Chart, ChartCollection, ChartData, ChartOptions, ChartSeriesData, ChartSpace, ChartSpaceOptions, ChartType, ColorSchemeOptions, ColorTransformOptions, CompoundLine, CompressionOptions, ConnectorShape, ConnectorShapeOptions, ContentTypes, CoreGradientFillOptions, CoreOutlineOptions, CoreProperties, CorePropertiesOptions, DIAMOND, DISSOLVE, DateTimeField, DefaultHandoutMaster, DefaultNotesMaster, DefaultSlideLayout, DefaultSlideMaster, DefaultTheme, DrawingTable, EMBEDDED_FONT, EMBEDDED_FONT_LST, END_COND_LST, END_SND, END_SYNC, EXCL, EffectListOptions, EffectsOptions, EmphasisType, EndParagraphRunProperties, ExclusiveTimingOptions, FADE, FLT_VAL, FONT, FROM, Field, File, FillOptions, FontSchemeOptions, GRAPHIC_EL, GUIDE, GlowOptions, GradientStop, GradientStopOptions, GroupShape, GroupShapeOptions, GroupShapeProperties, GroupTransform2D, HSL, HTML_PUB_PR, HeaderFooter, HyperlinkOptions, IGroupTransform2DOptions, IMediaData, INK_TGT, INT_VAL, IPatch, PresentationOptions as IPresentationXmlOptions, ITALIC, ITransform2DOptions, InputDataType, KINSOKU, KinsokuOptions, LayoutDefinition, LayoutPlaceholderOptions, LineCap, LineJoin, LineShape, LineShapeOptions, MODIFY_VERIFIER, MasterChild, MasterDefinition, MasterPlaceholderOptions, MasterPlaceholderPosition, Media, MediaAnimationType, MediaDataTransformation, MediaTransformation, NEWSFLASH, NOTES_VIEW_PR, NonVisualDrawingProperties, NonVisualPictureProperties, NonVisualShapeProperties, NotesSlide, NotesSlideOptions, OLE_CHART_EL, OUTLINE_VIEW_PR, OutlineOptions, OutlineViewPropertiesOptions, OutlineViewSlideEntryOptions, PHOTO_ALBUM, PLUS, PRN_PR, PROGRESS, PULL, PUSH, Packer, PackerOptions, Paragraph, ParagraphOptions, ParagraphProperties, ParagraphPropertiesOptions, PatchDocumentOutputType, PatchPresentationOptions, PatchType, PathAnimationType, PathShadeType, PenAlignment, Picture, PictureOptions, PosterType, PptxDocument, PptxPartRefs, File as Presentation, PresentationOptions$1 as PresentationOptions, PresentationWrapper, PresetDash, PresetGeometry, PresetMaterialType, RANDOM, RANDOM_BAR, REGULAR, RGB, RTN, R_CTR, ReflectionAlignment, ReflectionOptions, RelationshipType, Relationships, RunOptions, RunProperties, RunPropertiesOptions, SLD_LST, SLD_SYNC_PR, SMART_TAGS, SND_AC, SND_TGT, SORTER_VIEW_PR, SPLIT, STRIPS, STR_VAL, STYLE, ST_SND, SUB_SP, SUB_TN_LST, Scene3DOptions, ShadowOptions, Shape, Shape3DOptions, ShapeOptions, ShapeProperties, ShapePropertiesOptions, ShapeTree, ShowOptions, Slide, SlideChild, SlideCommentOptions, SlideHeaderFooterOptions, SlideLayout, SlideLayoutType, SlideMasterOptions, SlideNumberField, SlideOptions, SlideSize, SlideSizePreset, SlideSyncPropertiesOptions, SmartArt, SmartArtOptions, SoftEdgeOptions, StrikeStyle, TAG, TAGS, TAG_LST, TMPL, TMPL_LST, TM_PCT, TN, Table, TableCell, TableCellOptions, TableCellProperties, TableOptions, TableProperties, TableRow, TableRowOptions, Text, TextAlignment, TextBody, TextBodyOptions, TextCapitalization, TextRun, ThemeOptions, TileFlipMode, Transform2D, Transition, TransitionDirection, TransitionOptions, TransitionType, TreeNode, UnderlineStyle, VerticalAlignment, VideoFrame, VideoFrameOptions, VideoType, ViewPropertiesOptions, ViewWrapper, WEB_PR, WEDGE, WHEEL, WIPE, ZOOM, buildFill, coerceChild, convertEmuToInches, convertEmuToPixels, convertEmuToPoints, convertInchesToEmu, convertPixelsToEmu, convertPointsToEmu, createBevel, createBottomBevel, createBuildDiagram, createBuildGraphic, createBuildOleChart, createBuildParagraph, createColorElement, createColorTransforms, createEffectList, createExclusiveTiming, createGradientFill, createGradientStop, createKinsoku, createOutline, createOutlineCompat, createOutlineViewProperties, createOutlineViewSlideEntry, createPptxEffectList, createScene3D, createShape3D, createSlideSyncProperties, createTransformation, extractBlipFillMedia, hashedId, parseArchive, parsePptx, parsePresentation, patchPresentation, percentToTHousandths, uniqueId, uniqueNumericIdCreator, uniqueUuid };
|
|
1218
1595
|
}
|
|
1219
1596
|
//#endregion
|
|
1220
|
-
export { type AnimationCalcMode, type AnimationClass, type AnimationDirection, type AnimationOptions, type AnimationTrigger, type AnimationType, type AnimationValueType, AppProperties, AudioFrame, type AudioFrameOptions, type AudioType, Background, type BackgroundOptions, type BevelOptions, BevelPresetType, BlipFill, type BlipFillConfigOptions, type BlipFillMediaData, type CellBorderOptions, Chart, ChartCollection, type ChartData, type ChartOptions, type ChartSeriesData, ChartSpace, type ChartSpaceOptions, type ChartType, type ColorSchemeOptions, type ColorTransformOptions, CompoundLine, type CompressionOptions, ConnectorShape, type ConnectorShapeOptions, ContentTypes, type CoreGradientFillOptions, type CoreOutlineOptions, CoreProperties, type CorePropertiesOptions, DateTimeField, DefaultNotesMaster, DefaultSlideLayout, DefaultSlideMaster, DefaultTheme, DrawingTable, type EffectListOptions, type EffectsOptions, type EmphasisType, EndParagraphRunProperties, Field, File, File as Presentation, type FillOptions, type FontSchemeOptions, type GlowOptions, type GradientStop, type GradientStopOptions, GroupShape, type GroupShapeOptions, GroupShapeProperties, GroupTransform2D, HeaderFooter, type HyperlinkOptions, type IGroupTransform2DOptions, type IMediaData, IPatch, type PresentationOptions as IPresentationXmlOptions, type ITransform2DOptions, InputDataType, type LayoutDefinition, type LayoutPlaceholderOptions, LineCap, LineJoin, LineShape, type LineShapeOptions, type MasterChild, type MasterDefinition, type MasterPlaceholderOptions, type MasterPlaceholderPosition, Media, type MediaAnimationType, type MediaDataTransformation, type MediaTransformation, NonVisualDrawingProperties, NonVisualPictureProperties, NonVisualShapeProperties, NotesSlide, type NotesSlideOptions, type OutlineOptions, Packer, type PackerOptions, Paragraph, type ParagraphOptions, ParagraphProperties, type ParagraphPropertiesOptions, PatchDocumentOutputType, PatchPresentationOptions, PatchType, type PathAnimationType, PathShadeType, PenAlignment, Picture, type PictureOptions, type PosterType, PptxDocument, PptxPartRefs, type PresentationOptions$1 as PresentationOptions, PresentationWrapper, PresetDash, PresetGeometry, PresetMaterialType, ReflectionAlignment, type ReflectionOptions, type RelationshipType, Relationships, type RunOptions, RunProperties, type RunPropertiesOptions, type Scene3DOptions, type ShadowOptions, Shape, type Shape3DOptions, type ShapeOptions, ShapeProperties, type ShapePropertiesOptions, ShapeTree, Slide, type SlideChild, type SlideCommentOptions, type SlideHeaderFooterOptions, SlideLayout, type SlideLayoutType, type SlideMasterOptions, SlideNumberField, type SlideOptions, type SlideSize, SlideSizePreset, SmartArt, type SmartArtOptions, type SoftEdgeOptions, StrikeStyle, Table, TableCell, type TableCellOptions, TableCellProperties, type TableOptions, TableProperties, TableRow, type TableRowOptions, Text, type TextAlignment, TextBody, type TextBodyOptions, TextCapitalization, TextRun, type ThemeOptions, TileFlipMode, Transform2D, Transition, type TransitionDirection, type TransitionOptions, type TransitionType, type TreeNode, UnderlineStyle, type VerticalAlignment, VideoFrame, type VideoFrameOptions, type VideoType, type ViewWrapper, buildFill, coerceChild, convertEmuToInches, convertEmuToPixels, convertEmuToPoints, convertInchesToEmu, convertPixelsToEmu, convertPointsToEmu, createBevel, createBottomBevel, createColorElement, createColorTransforms, createEffectList, createGradientFill, createGradientStop, createOutline, createOutlineCompat, createPptxEffectList, createScene3D, createShape3D, createTransformation, extractBlipFillMedia, hashedId, parseArchive, parsePptx, parsePresentation, patchPresentation, percentToTHousandths, uniqueId, uniqueNumericIdCreator, uniqueUuid };
|
|
1597
|
+
export { type AnimationCalcMode, type AnimationClass, type AnimationDirection, type AnimationOptions, type AnimationTrigger, type AnimationType, type AnimationValueType, AppProperties, AudioFrame, type AudioFrameOptions, type AudioType, BLD_AS_ONE, BLD_DGM, BLD_GRAPHIC, BLD_LST, BLD_OLE_CHART, BLD_P, BLD_SUB, BLINDS, BOLD, BOLD_ITALIC, BOOL_VAL, Background, type BackgroundOptions, type BevelOptions, BevelPresetType, BlipFill, type BlipFillConfigOptions, type BlipFillMediaData, BuildDiagramOptions, BuildGraphicOptions, BuildOleChartOptions, BuildParagraphOptions, CHECKER, CIRCLE, CLR_MRU, CLR_VAL, COMB, CONTENT_PART, CONTROL, CONTROLS, COVER, CUST_DATA, CUST_DATA_LST, CUST_SHOW, CUST_SHOW_LST, CUT, type CellBorderOptions, Chart, ChartCollection, type ChartData, type ChartOptions, type ChartSeriesData, ChartSpace, type ChartSpaceOptions, type ChartType, type ColorSchemeOptions, type ColorTransformOptions, CompoundLine, type CompressionOptions, ConnectorShape, type ConnectorShapeOptions, ContentTypes, type CoreGradientFillOptions, type CoreOutlineOptions, CoreProperties, type CorePropertiesOptions, DIAMOND, DISSOLVE, DateTimeField, DefaultHandoutMaster, DefaultNotesMaster, DefaultSlideLayout, DefaultSlideMaster, DefaultTheme, DrawingTable, EMBEDDED_FONT, EMBEDDED_FONT_LST, END_COND_LST, END_SND, END_SYNC, EXCL, type EffectListOptions, type EffectsOptions, type EmphasisType, EndParagraphRunProperties, ExclusiveTimingOptions, FADE, FLT_VAL, FONT, FROM, Field, File, File as Presentation, type FillOptions, type FontSchemeOptions, GRAPHIC_EL, GUIDE, type GlowOptions, type GradientStop, type GradientStopOptions, GroupShape, type GroupShapeOptions, GroupShapeProperties, GroupTransform2D, HSL, HTML_PUB_PR, HeaderFooter, type HyperlinkOptions, type IGroupTransform2DOptions, type IMediaData, INK_TGT, INT_VAL, IPatch, type PresentationOptions as IPresentationXmlOptions, ITALIC, type ITransform2DOptions, InputDataType, KINSOKU, KinsokuOptions, type LayoutDefinition, type LayoutPlaceholderOptions, LineCap, LineJoin, LineShape, type LineShapeOptions, MODIFY_VERIFIER, type MasterChild, type MasterDefinition, type MasterPlaceholderOptions, type MasterPlaceholderPosition, Media, type MediaAnimationType, type MediaDataTransformation, type MediaTransformation, NEWSFLASH, NOTES_VIEW_PR, NonVisualDrawingProperties, NonVisualPictureProperties, NonVisualShapeProperties, NotesSlide, type NotesSlideOptions, OLE_CHART_EL, OUTLINE_VIEW_PR, type OutlineOptions, OutlineViewPropertiesOptions, OutlineViewSlideEntryOptions, PHOTO_ALBUM, PLUS, PRN_PR, PROGRESS, PULL, PUSH, Packer, type PackerOptions, Paragraph, type ParagraphOptions, ParagraphProperties, type ParagraphPropertiesOptions, PatchDocumentOutputType, PatchPresentationOptions, PatchType, type PathAnimationType, PathShadeType, PenAlignment, Picture, type PictureOptions, type PosterType, PptxDocument, PptxPartRefs, type PresentationOptions$1 as PresentationOptions, PresentationWrapper, PresetDash, PresetGeometry, PresetMaterialType, RANDOM, RANDOM_BAR, REGULAR, RGB, RTN, R_CTR, ReflectionAlignment, type ReflectionOptions, type RelationshipType, Relationships, type RunOptions, RunProperties, type RunPropertiesOptions, SLD_LST, SLD_SYNC_PR, SMART_TAGS, SND_AC, SND_TGT, SORTER_VIEW_PR, SPLIT, STRIPS, STR_VAL, STYLE, ST_SND, SUB_SP, SUB_TN_LST, type Scene3DOptions, type ShadowOptions, Shape, type Shape3DOptions, type ShapeOptions, ShapeProperties, type ShapePropertiesOptions, ShapeTree, type ShowOptions, Slide, type SlideChild, type SlideCommentOptions, type SlideHeaderFooterOptions, SlideLayout, type SlideLayoutType, type SlideMasterOptions, SlideNumberField, type SlideOptions, type SlideSize, SlideSizePreset, SlideSyncPropertiesOptions, SmartArt, type SmartArtOptions, type SoftEdgeOptions, StrikeStyle, TAG, TAGS, TAG_LST, TMPL, TMPL_LST, TM_PCT, TN, Table, TableCell, type TableCellOptions, TableCellProperties, type TableOptions, TableProperties, TableRow, type TableRowOptions, Text, type TextAlignment, TextBody, type TextBodyOptions, TextCapitalization, TextRun, type ThemeOptions, TileFlipMode, Transform2D, Transition, type TransitionDirection, type TransitionOptions, type TransitionType, type TreeNode, UnderlineStyle, type VerticalAlignment, VideoFrame, type VideoFrameOptions, type VideoType, type ViewPropertiesOptions, type ViewWrapper, WEB_PR, WEDGE, WHEEL, WIPE, ZOOM, buildFill, coerceChild, convertEmuToInches, convertEmuToPixels, convertEmuToPoints, convertInchesToEmu, convertPixelsToEmu, convertPointsToEmu, createBevel, createBottomBevel, createBuildDiagram, createBuildGraphic, createBuildOleChart, createBuildParagraph, createColorElement, createColorTransforms, createEffectList, createExclusiveTiming, createGradientFill, createGradientStop, createKinsoku, createOutline, createOutlineCompat, createOutlineViewProperties, createOutlineViewSlideEntry, createPptxEffectList, createScene3D, createShape3D, createSlideSyncProperties, createTransformation, extractBlipFillMedia, hashedId, parseArchive, parsePptx, parsePresentation, patchPresentation, percentToTHousandths, uniqueId, uniqueNumericIdCreator, uniqueUuid };
|
|
1221
1598
|
//# sourceMappingURL=index.d.mts.map
|