pptx-angular-viewer 1.5.2 → 1.6.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/README.md +36 -18
- package/fesm2022/pptx-angular-viewer.mjs +189 -2
- package/fesm2022/pptx-angular-viewer.mjs.map +1 -1
- package/package.json +2 -2
- package/types/pptx-angular-viewer.d.ts +170 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pptx-angular-viewer",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"description": "Angular PowerPoint viewer and editor component: render, edit, and export PPTX slides in the browser.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"html2canvas-pro": "^2.0.4",
|
|
46
46
|
"jspdf": "^4.2.1",
|
|
47
47
|
"jszip": "^3.10.1",
|
|
48
|
-
"pptx-viewer-core": "^1.
|
|
48
|
+
"pptx-viewer-core": "^1.2.0",
|
|
49
49
|
"tslib": "^2.8.1"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
2
|
import { Signal, WritableSignal, OnDestroy, OnInit, OnChanges, SimpleChanges, InjectionToken, Provider } from '@angular/core';
|
|
3
3
|
import * as pptx_viewer_core from 'pptx-viewer-core';
|
|
4
|
-
import { PptxElement, ShapeStyle, PptxTextWarpPreset, XmlObject, PptxElementAnimation,
|
|
4
|
+
import { PptxSlide, PptxElement, ShapeStyle, PptxTextWarpPreset, XmlObject, PptxElementAnimation, TextSegment, TextStyle, PptxTransitionType, PptxEmbeddedFont, AccessibilityIssueSeverity, AccessibilityIssue, AccessibilityIssueType, AccessibilityCheckOptions, PptxComment, SmartArtLayout, PptxTheme, PptxSlideMaster, PptxCoreProperties, PptxCustomProperty, PptxHeaderFooter, ParsedSignature, PptxTableCell, PptxTableData, InkPptxElement, PptxCustomShow, PptxPresentationProperties, PptxThemePreset, Model3DPptxElement, ZoomPptxElement, PptxSlideTransition, TablePptxElement, ChartPptxElement, SmartArtPptxElement, PptxSmartArtData, PptxTableCellStyle, PptxChartDataLabelOptions, PptxChartAxisType, PptxChartAxisFormatting, PptxChartSeries, PptxChartType, PptxChartDataPoint, PptxChartTrendline, PptxChartErrBars, PptxAnimationPreset, PptxAnimationTrigger, PptxAnimationTimingCurve, PptxAnimationRepeatMode, PptxAnimationDirection, PptxAnimationSequence, SignatureStatus } from 'pptx-viewer-core';
|
|
5
5
|
import * as pptx_angular_viewer from 'pptx-angular-viewer';
|
|
6
6
|
import { Options } from 'html2canvas-pro';
|
|
7
7
|
import { SafeHtml } from '@angular/platform-browser';
|
|
@@ -118,11 +118,108 @@ declare function defaultCssVars(): Record<string, string>;
|
|
|
118
118
|
* packages; this is the canonical copy. Each binding layers its own
|
|
119
119
|
* framework-specific prop/event/handle types on top of these.
|
|
120
120
|
*/
|
|
121
|
+
|
|
121
122
|
/** Canvas dimensions in pixels. */
|
|
122
123
|
interface CanvasSize {
|
|
123
124
|
width: number;
|
|
124
125
|
height: number;
|
|
125
126
|
}
|
|
127
|
+
/** Viewer interaction mode: read-only, edit, presentation, or master-view. */
|
|
128
|
+
type ViewerMode = 'preview' | 'edit' | 'present' | 'master';
|
|
129
|
+
/**
|
|
130
|
+
* Framework-agnostic imperative API contract for the PowerPoint viewer.
|
|
131
|
+
*
|
|
132
|
+
* Each binding (React `forwardRef` handle, Vue `defineExpose`, Angular public
|
|
133
|
+
* methods) implements this interface so consumers get a consistent progressive
|
|
134
|
+
* API regardless of framework.
|
|
135
|
+
*/
|
|
136
|
+
interface PowerPointViewerAPI {
|
|
137
|
+
/** Serialise the current presentation to `.pptx` bytes. */
|
|
138
|
+
getContent: () => Promise<Uint8Array>;
|
|
139
|
+
/** Navigate to a specific slide by zero-based index. */
|
|
140
|
+
goTo: (slideIndex: number) => void;
|
|
141
|
+
/** Navigate to the previous slide. */
|
|
142
|
+
goPrev: () => void;
|
|
143
|
+
/** Navigate to the next slide. */
|
|
144
|
+
goNext: () => void;
|
|
145
|
+
/** Undo the last editing action. No-op when nothing to undo. */
|
|
146
|
+
undo: () => void;
|
|
147
|
+
/** Redo the last undone action. No-op when nothing to redo. */
|
|
148
|
+
redo: () => void;
|
|
149
|
+
/** Whether an undo action is available. */
|
|
150
|
+
canUndo: () => boolean;
|
|
151
|
+
/** Whether a redo action is available. */
|
|
152
|
+
canRedo: () => boolean;
|
|
153
|
+
/** Get the current zoom level (1 = 100%). */
|
|
154
|
+
getZoom: () => number;
|
|
155
|
+
/** Set the zoom level (clamped to min/max bounds). */
|
|
156
|
+
setZoom: (level: number) => void;
|
|
157
|
+
/** Zoom in by one step. */
|
|
158
|
+
zoomIn: () => void;
|
|
159
|
+
/** Zoom out by one step. */
|
|
160
|
+
zoomOut: () => void;
|
|
161
|
+
/** Reset zoom to 100%. */
|
|
162
|
+
zoomReset: () => void;
|
|
163
|
+
/** Get the current viewer mode. */
|
|
164
|
+
getMode: () => ViewerMode;
|
|
165
|
+
/** Switch the viewer mode (e.g. 'edit', 'preview', 'present'). */
|
|
166
|
+
setMode: (mode: ViewerMode) => void;
|
|
167
|
+
/** Get the zero-based active slide index. */
|
|
168
|
+
getActiveSlideIndex: () => number;
|
|
169
|
+
/** Set the active slide by zero-based index (alias of goTo). */
|
|
170
|
+
setActiveSlideIndex: (index: number) => void;
|
|
171
|
+
/** Get the total number of slides. */
|
|
172
|
+
getSlideCount: () => number;
|
|
173
|
+
/** Whether the document has unsaved changes. */
|
|
174
|
+
isDirty: () => boolean;
|
|
175
|
+
/**
|
|
176
|
+
* Get the full slide array. Returns the actual `PptxSlide[]` from the
|
|
177
|
+
* internal model with full type information (elements, notes, transitions,
|
|
178
|
+
* animations, etc.). The returned reference is a snapshot; mutations are
|
|
179
|
+
* not reflected back unless done via the manipulation methods.
|
|
180
|
+
*/
|
|
181
|
+
getSlides: () => readonly PptxSlide[];
|
|
182
|
+
/** Get a single slide by zero-based index, or undefined if out of range. */
|
|
183
|
+
getSlide: (index: number) => PptxSlide | undefined;
|
|
184
|
+
/** Get the currently active slide. */
|
|
185
|
+
getActiveSlide: () => PptxSlide | undefined;
|
|
186
|
+
/** Add a blank slide after the given index (or at end if omitted). */
|
|
187
|
+
addSlide: (afterIndex?: number) => void;
|
|
188
|
+
/** Delete slides at the given zero-based indexes. At least one slide is kept. */
|
|
189
|
+
deleteSlides: (indexes: number[]) => void;
|
|
190
|
+
/** Duplicate slides at the given zero-based indexes. */
|
|
191
|
+
duplicateSlides: (indexes: number[]) => void;
|
|
192
|
+
/** Move a slide from one position to another. */
|
|
193
|
+
moveSlide: (fromIndex: number, toIndex: number) => void;
|
|
194
|
+
/** Toggle the hidden flag on slides at the given indexes. */
|
|
195
|
+
toggleHideSlides: (indexes: number[]) => void;
|
|
196
|
+
/**
|
|
197
|
+
* Get the elements on a slide. Defaults to the active slide when
|
|
198
|
+
* `slideIndex` is omitted. Returns the full `PptxElement[]` with
|
|
199
|
+
* all type-specific properties intact.
|
|
200
|
+
*/
|
|
201
|
+
getElements: (slideIndex?: number) => readonly PptxElement[];
|
|
202
|
+
/** Get a single element by ID from the active slide (or a specified slide). */
|
|
203
|
+
getElementById: (elementId: string, slideIndex?: number) => PptxElement | undefined;
|
|
204
|
+
/**
|
|
205
|
+
* Update one or more properties of an element by ID on the active slide.
|
|
206
|
+
* Accepts a `Partial<PptxElement>` patch (e.g. `{ x: 100, width: 300 }`).
|
|
207
|
+
*/
|
|
208
|
+
updateElement: (elementId: string, updates: Partial<PptxElement>) => void;
|
|
209
|
+
/** Delete elements by their IDs from the active slide. */
|
|
210
|
+
deleteElements: (elementIds: string[]) => void;
|
|
211
|
+
/**
|
|
212
|
+
* Duplicate an element on the active slide.
|
|
213
|
+
* Returns the new element's ID, or undefined if the source was not found.
|
|
214
|
+
*/
|
|
215
|
+
duplicateElement: (elementId: string) => string | undefined;
|
|
216
|
+
/** Get the IDs of currently selected elements. */
|
|
217
|
+
getSelectedElementIds: () => string[];
|
|
218
|
+
/** Programmatically select elements by their IDs. */
|
|
219
|
+
selectElements: (ids: string[]) => void;
|
|
220
|
+
/** Clear the current selection. */
|
|
221
|
+
clearSelection: () => void;
|
|
222
|
+
}
|
|
126
223
|
/** Collaboration role within a session. */
|
|
127
224
|
type CollaborationRole = 'owner' | 'collaborator' | 'viewer';
|
|
128
225
|
/**
|
|
@@ -4387,6 +4484,14 @@ declare class PowerPointViewerComponent {
|
|
|
4387
4484
|
readonly contentChange: _angular_core.OutputEmitterRef<Uint8Array<ArrayBufferLike>>;
|
|
4388
4485
|
/** Fired when the user edits document properties in the Info dialog. */
|
|
4389
4486
|
readonly propertiesChange: _angular_core.OutputEmitterRef<Partial<PptxCoreProperties>>;
|
|
4487
|
+
/** Fired when the viewer mode changes (preview, edit, present, master). */
|
|
4488
|
+
readonly modeChange: _angular_core.OutputEmitterRef<string>;
|
|
4489
|
+
/** Fired when the zoom level changes. */
|
|
4490
|
+
readonly zoomChange: _angular_core.OutputEmitterRef<number>;
|
|
4491
|
+
/** Fired when element selection changes. */
|
|
4492
|
+
readonly selectionChange: _angular_core.OutputEmitterRef<string[]>;
|
|
4493
|
+
/** Fired when the total slide count changes (slide added/deleted). */
|
|
4494
|
+
readonly slideCountChange: _angular_core.OutputEmitterRef<number>;
|
|
4390
4495
|
/**
|
|
4391
4496
|
* Fired when a collaboration/broadcast session starts, with the connected
|
|
4392
4497
|
* config (role `collaborator` for Share, `owner` for Broadcast). Lets the
|
|
@@ -4496,6 +4601,68 @@ declare class PowerPointViewerComponent {
|
|
|
4496
4601
|
goTo(index: number): void;
|
|
4497
4602
|
goPrev(): void;
|
|
4498
4603
|
goNext(): void;
|
|
4604
|
+
/** Undo the last editing action. No-op when nothing to undo. */
|
|
4605
|
+
undo(): void;
|
|
4606
|
+
/** Redo the last undone action. No-op when nothing to redo. */
|
|
4607
|
+
redo(): void;
|
|
4608
|
+
/** Whether an undo action is available. */
|
|
4609
|
+
canUndo(): boolean;
|
|
4610
|
+
/** Whether a redo action is available. */
|
|
4611
|
+
canRedo(): boolean;
|
|
4612
|
+
/** Get the current zoom level (1 = 100%). */
|
|
4613
|
+
getZoom(): number;
|
|
4614
|
+
/** Set the zoom level (clamped to min/max bounds). */
|
|
4615
|
+
setZoom(level: number): void;
|
|
4616
|
+
/** Zoom in by one step. */
|
|
4617
|
+
zoomIn(): void;
|
|
4618
|
+
/** Zoom out by one step. */
|
|
4619
|
+
zoomOut(): void;
|
|
4620
|
+
/** Reset zoom to 100%. */
|
|
4621
|
+
zoomReset(): void;
|
|
4622
|
+
/** Get the current viewer mode. */
|
|
4623
|
+
getMode(): string;
|
|
4624
|
+
/** Switch the viewer mode (e.g. 'edit', 'preview', 'present'). */
|
|
4625
|
+
setMode(mode: string): void;
|
|
4626
|
+
/** Get the zero-based active slide index. */
|
|
4627
|
+
getActiveSlideIndex(): number;
|
|
4628
|
+
/** Get the total number of slides. */
|
|
4629
|
+
getSlideCount(): number;
|
|
4630
|
+
/** Whether the document has unsaved changes. */
|
|
4631
|
+
isDirty(): boolean;
|
|
4632
|
+
/** Get the IDs of currently selected elements. */
|
|
4633
|
+
getSelectedElementIds(): string[];
|
|
4634
|
+
/** Programmatically select elements by their IDs. */
|
|
4635
|
+
selectElements(ids: string[]): void;
|
|
4636
|
+
/** Clear the current selection. */
|
|
4637
|
+
clearSelection(): void;
|
|
4638
|
+
/** Set the active slide by zero-based index (alias of goTo). */
|
|
4639
|
+
setActiveSlideIndex(index: number): void;
|
|
4640
|
+
/** Get a read-only reference to all slides. */
|
|
4641
|
+
getSlides(): readonly PptxSlide[];
|
|
4642
|
+
/** Get a single slide by zero-based index. */
|
|
4643
|
+
getSlide(index: number): PptxSlide | undefined;
|
|
4644
|
+
/** Get the currently active slide. */
|
|
4645
|
+
getActiveSlide(): PptxSlide | undefined;
|
|
4646
|
+
/** Add a blank slide after the given index (or after the active slide). */
|
|
4647
|
+
addSlide(afterIndex?: number): void;
|
|
4648
|
+
/** Delete slides at the given zero-based indexes. */
|
|
4649
|
+
deleteSlides(indexes: number[]): void;
|
|
4650
|
+
/** Duplicate slides at the given zero-based indexes. */
|
|
4651
|
+
duplicateSlides(indexes: number[]): void;
|
|
4652
|
+
/** Move a slide from one position to another. */
|
|
4653
|
+
moveSlide(fromIndex: number, toIndex: number): void;
|
|
4654
|
+
/** Toggle the hidden flag on slides at the given indexes. */
|
|
4655
|
+
toggleHideSlides(indexes: number[]): void;
|
|
4656
|
+
/** Get elements on a slide (defaults to active slide). */
|
|
4657
|
+
getElements(slideIndex?: number): readonly PptxElement[];
|
|
4658
|
+
/** Get a single element by ID. */
|
|
4659
|
+
getElementById(elementId: string, slideIndex?: number): PptxElement | undefined;
|
|
4660
|
+
/** Update one or more properties of an element by ID. */
|
|
4661
|
+
updateElement(elementId: string, updates: Partial<PptxElement>): void;
|
|
4662
|
+
/** Delete elements by their IDs from the active slide. */
|
|
4663
|
+
deleteElements(elementIds: string[]): void;
|
|
4664
|
+
/** Duplicate an element. Returns the new element's ID. */
|
|
4665
|
+
duplicateElement(elementId: string): string | undefined;
|
|
4499
4666
|
/** Toggle the Find & Replace panel from the title-bar search button. */
|
|
4500
4667
|
protected toggleFindReplace(): void;
|
|
4501
4668
|
/**
|
|
@@ -4545,7 +4712,7 @@ declare class PowerPointViewerComponent {
|
|
|
4545
4712
|
/** Resolve the live slide-stage element within `<main>`. */
|
|
4546
4713
|
private stageElement;
|
|
4547
4714
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PowerPointViewerComponent, never>;
|
|
4548
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PowerPointViewerComponent, "pptx-viewer", never, { "content": { "alias": "content"; "required": false; "isSignal": true; }; "canEdit": { "alias": "canEdit"; "required": false; "isSignal": true; }; "class": { "alias": "class"; "required": false; "isSignal": true; }; "theme": { "alias": "theme"; "required": false; "isSignal": true; }; "filePath": { "alias": "filePath"; "required": false; "isSignal": true; }; "fileName": { "alias": "fileName"; "required": false; "isSignal": true; }; "collaboration": { "alias": "collaboration"; "required": false; "isSignal": true; }; "authorName": { "alias": "authorName"; "required": false; "isSignal": true; }; "shareDefaults": { "alias": "shareDefaults"; "required": false; "isSignal": true; }; "onOpenFile": { "alias": "onOpenFile"; "required": false; "isSignal": true; }; "smartArt3D": { "alias": "smartArt3D"; "required": false; "isSignal": true; }; }, { "activeSlideChange": "activeSlideChange"; "dirtyChange": "dirtyChange"; "contentChange": "contentChange"; "propertiesChange": "propertiesChange"; "startCollaboration": "startCollaboration"; "stopCollaboration": "stopCollaboration"; }, never, never, true, never>;
|
|
4715
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PowerPointViewerComponent, "pptx-viewer", never, { "content": { "alias": "content"; "required": false; "isSignal": true; }; "canEdit": { "alias": "canEdit"; "required": false; "isSignal": true; }; "class": { "alias": "class"; "required": false; "isSignal": true; }; "theme": { "alias": "theme"; "required": false; "isSignal": true; }; "filePath": { "alias": "filePath"; "required": false; "isSignal": true; }; "fileName": { "alias": "fileName"; "required": false; "isSignal": true; }; "collaboration": { "alias": "collaboration"; "required": false; "isSignal": true; }; "authorName": { "alias": "authorName"; "required": false; "isSignal": true; }; "shareDefaults": { "alias": "shareDefaults"; "required": false; "isSignal": true; }; "onOpenFile": { "alias": "onOpenFile"; "required": false; "isSignal": true; }; "smartArt3D": { "alias": "smartArt3D"; "required": false; "isSignal": true; }; }, { "activeSlideChange": "activeSlideChange"; "dirtyChange": "dirtyChange"; "contentChange": "contentChange"; "propertiesChange": "propertiesChange"; "modeChange": "modeChange"; "zoomChange": "zoomChange"; "selectionChange": "selectionChange"; "slideCountChange": "slideCountChange"; "startCollaboration": "startCollaboration"; "stopCollaboration": "stopCollaboration"; }, never, never, true, never>;
|
|
4549
4716
|
}
|
|
4550
4717
|
|
|
4551
4718
|
/** The eight resize-handle positions around a selection box. */
|
|
@@ -9210,4 +9377,4 @@ type TranslationKey = keyof typeof translationsEn;
|
|
|
9210
9377
|
declare function keyToLabel(key: string): string;
|
|
9211
9378
|
|
|
9212
9379
|
export { AUDIENCE_HASH, AUDIENCE_NONCE_KEY, AccessibilityPanelComponent, AccessibilityService, AdvancedChartEditorComponent, AnimationAuthorPanelComponent, AnimationPanelComponent, AnimationPlaybackService, BroadcastDialogComponent, CURSOR_PALETTE, ChartAxisOptionsComponent, ChartAxisStyleOptionsComponent, ChartComboTypeOptionsComponent, ChartDataEditorComponent, ChartDataLabelOptionsComponent, ChartDatapointOptionsComponent, ChartDisplayOptionsComponent, ChartErrorBarOptionsComponent, ChartMarkerOptionsComponent, ChartRendererComponent, ChartTrendlineOptionsComponent, CollaborationCursorsComponent, CollaborationService, CommentsPanelComponent, CommentsService, ComparePanelComponent, ConnectorRendererComponent, ConnectorTextOverlayComponent, DEFAULT_BROADCAST_SERVER_URL, DEFAULT_CANVAS_HEIGHT, DEFAULT_CANVAS_WIDTH, DEFAULT_FILL_COLOR, DEFAULT_PRINT_SETTINGS, DEFAULT_SLIDE_BACKGROUND, DEFAULT_STROKE_COLOR, DEFAULT_TEXT_COLOR, EMBEDDED_FONTS_STYLE_ID, TEMPLATES as EQUATION_TEMPLATES, EditorContextMenuComponent, EditorHistory, EditorStateService, EditorToolbarComponent, EffectsPanelComponent, ElementRendererComponent, EmbeddedFontsService, EncryptedFileDialogComponent, EquationEditorDialogComponent, EquationRendererComponent, EquationTemplateGalleryComponent, ExportService, FindBarComponent, FindReplaceBarComponent, FontEmbeddingListComponent, FontEmbeddingPanelComponent, GradientPickerComponent, HANDOUT_OPTIONS, HyperlinkDialogComponent, InkRendererComponent, InspectorPanelComponent, IsMobileService, KeepAnnotationsDialogComponent, LoadContentService, MobileBottomBarComponent, MobileMenuSheetComponent, MobilePresenterViewComponent, MobileSheetComponent, MobileSlidesSheetComponent, MobileToolbarComponent, ModalDialogComponent, Model3DRendererComponent, NotesPanelComponent, OleRendererComponent, PRESENTER_CHANNEL_NAME, PRESENTER_MSG_ORIGIN, PasswordProtectionDialogComponent, PasswordStrengthMeterComponent, PowerPointViewerComponent, PresentationAnnotationOverlayComponent, PresentationAnnotationsService, PresentationOverlayComponent, PresentationSubtitleBarComponent, PresentationTransitionOverlayComponent, PresenterViewComponent, PresenterWindowService, PrintDialogComponent, PrintService, PrintSettingsPanelComponent, PropertiesDialogComponent, RESIZE_HANDLES, SEVERITY_GROUPS, SEVERITY_LABELS, SLIDE_TRANSITION_KEYFRAMES, SVG_WARP_PRESETS, SetUpSlideShowDialogComponent, ShareDialogComponent, ShortcutPanelComponent, ShowOptionsFieldsetComponent, ShowSlidesFieldsetComponent, SignatureStrippedDialogComponent, SignaturesPanelComponent, SignaturesService, SlideCanvasComponent, SlideDiffChangesComponent, SlideDiffRowComponent, SlideDiffThumbnailsComponent, SlideSorterOverlayComponent, SlidesPanelComponent, SmartArtRendererComponent, StatusBarComponent, TYPE_LABELS, TableCellAdvancedFillComponent, TableCellFormattingComponent, TableDataEditorComponent, TablePropertiesComponent, TableRendererComponent, TableResizeOverlayComponent, TableSelectionService, TextAdvancedPanelComponent, VIEWER_THEME, VersionHistoryPanelComponent, ViewerCompareService, ViewerDialogsService, ViewerExtraDialogsComponent, WEBM_MIME_CANDIDATES, ZoomRendererComponent, addCommentToList, advanceStep, annotationMapToInkInserts, applyAcceptedDiff, applyFindReplacements, applyFormatToElement, applyMove, applyResize, assignUserColor, bringForward, bringToFront, buildBroadcastConfig, buildBroadcastViewerUrl, buildClearHyperlinkPatch, buildClickGroups, buildCollaborationConfig, buildCssGradientFromShapeStyle, buildDuotoneFilter, buildDuotoneFilterId, buildEmbeddedFontStyles, buildEquationElement, buildEquationSegment, buildFontFaceRule, buildHyperlinkPatch, buildPatternFillCss, buildPrintHtmlDocument as buildPrintDocument, buildPropertiesPatch, buildShareUrl, bulletIndentPx, canStartBroadcast, canStartShare, canUseClipboard, changeCountLabel, changeIcon, checkFontAvailable, clampCursorPosition, clampGifDimensions, clampNotesFontSize, clampStep, clearAudienceContent, cn, collectAccessibilityIssues, collectElementText, collectSlideText, collectUsedFontFamilies, computeHandoutLayout, computeIsMobile, computeIsTablet, computePageCount, computeSlideIndices, computeTimerProgress, convertOmmlToMathMl, copyFormatFromElement, countAccessibilityIssues, countAnnotationStrokes, defaultCssVars, defaultRadius, defaultThemeColors, deleteElementsByIds, deleteVersion as deleteRecoveryVersion, derivePresenceList, duplicateElementById, durationOf, encodeGif, estimatePageCount, findInSlides, fontMimeForFormat, formatAutoNumber, formatCursorLabel, formatElapsed, formatFileSize, formatPropertyDate, formatTime, fpsToFrameIntervalMs, generateBroadcastRoomId, generateCommentId, getContainerStyle, getDuotoneFilterDef, getImageSrc, getPasswordStrength, getPatternSvg, getVersions as getRecoveryVersions, getResolvedShapeClipPath, getResolvedShapeClipPathFor, getShapeFillStrokeStyle, getSlideBackgroundStyle, getSlideTransitionAnimations, getTextBlockStyle, getTextWarp, getWarpCategory, getWarpPath, groupIssuesBySeverity, hasCopyableFormat, hasExistingLink, headerLabel, isAudienceTab, isInjectableUrl, isPpactionUrl, isPresenterMessage, isSigned, isUrlSafe, isValidRoomId, issueTrackKey, issueTypeLabel, keyToLabel, latexToMathml, loadAudienceContent, moveElementBy, msToFrameDelayCs, normalizeFontFormat, normalizeSlidesPerPage, ommlToMathml, overallStatus, parseAudienceNonce, pendingElementStyles, pickSupportedMimeType, planGifFrames, planVideoSegments, presenceToCursors, provideViewerTheme, recordWebm, removeCommentFromList, renderToCanvas, replaceInSlides, replaceMatch, resizeElement, resolveFontVariant, resolveHyperlinkHref, resolveParagraphBullet, resolvePresenterNotes, resolveTransitionDuration, revealedElementStyles, routeOrthogonalConnector, sanitizeColor, sanitizeSlideIndex, sanitizeUserName, scanAvailableFonts, searchSlides, seedBroadcastFields, seedHyperlinkDraft, seedPropertiesDraft, seedShareFields, segmentFrameCount, sendBackward, sendToBack, setElementPosition, shouldUseSvgWarp, signatureCountLabel, signatureKey, signatureTimestamp, signerName, statusLabel as slideDiffStatusLabel, slideNumberOf, statusKind, statusLabel$1 as statusLabel, storeAudienceContent, themeStyle, themeToCssVars, toggleCommentResolvedInList, translationsEn, updateElementById, validatePassword, validatePrintSettings, validateRoomId, waypointsToPathD, worstStatus };
|
|
9213
|
-
export type { AccessibilityIssueGroup, AnimationClickGroup, AnnotationInkInsert, AnnotationStroke, Box, BroadcastConfig, BroadcastDefaults, CSSProperties, CanvasSize, ClassValue, CollaborationConfig, CollaborationRole, RouterRect as ConnectorObstacle, RouterPoint as ConnectorPoint, ConnectorRouting, CopiedFormat, DocumentProperties, DuotoneFilterDef, EmbeddedFontStyles, EquationTemplate, FindOptions, FindResult, GifFrame, GifFramePlan, GifPlanOptions, HandoutSlidesPerPage, HyperlinkDraft, NotesSegmentViewModel, ObjectUrlFactory, OverallSignatureStatus, PresentationTool, PresenterExitMessage, PresenterMessage, PresenterNotes, PresenterSlideChangeMessage, PrintColorMode, PrintHtmlDocumentOptions as PrintDocumentOptions, PrintOrientation, PrintSettings, PrintSlideRange, PrintWhat, PropertiesDraft, RecordWebmOptions, RecoveryVersion, RemoteCursor, SanitizedPresence as RemotePresence, ReplaceResult, ResizeHandle, ResolvedFontVariant, ShareDefaults, ShareFormFields, SignatureStatusKind, SlideTransitionAnimations, StyleMap, TableCellSelection, TextWarpCssDef, TextWarpDef, TextWarpPathDef, TimerProgress, TranslationKey, VideoPlanOptions, VideoSegmentPlan, ViewerTheme, ViewerThemeColors };
|
|
9380
|
+
export type { AccessibilityIssueGroup, AnimationClickGroup, AnnotationInkInsert, AnnotationStroke, Box, BroadcastConfig, BroadcastDefaults, CSSProperties, CanvasSize, ClassValue, CollaborationConfig, CollaborationRole, RouterRect as ConnectorObstacle, RouterPoint as ConnectorPoint, ConnectorRouting, CopiedFormat, DocumentProperties, DuotoneFilterDef, EmbeddedFontStyles, EquationTemplate, FindOptions, FindResult, GifFrame, GifFramePlan, GifPlanOptions, HandoutSlidesPerPage, HyperlinkDraft, NotesSegmentViewModel, ObjectUrlFactory, OverallSignatureStatus, PowerPointViewerAPI, PresentationTool, PresenterExitMessage, PresenterMessage, PresenterNotes, PresenterSlideChangeMessage, PrintColorMode, PrintHtmlDocumentOptions as PrintDocumentOptions, PrintOrientation, PrintSettings, PrintSlideRange, PrintWhat, PropertiesDraft, RecordWebmOptions, RecoveryVersion, RemoteCursor, SanitizedPresence as RemotePresence, ReplaceResult, ResizeHandle, ResolvedFontVariant, ShareDefaults, ShareFormFields, SignatureStatusKind, SlideTransitionAnimations, StyleMap, TableCellSelection, TextWarpCssDef, TextWarpDef, TextWarpPathDef, TimerProgress, TranslationKey, VideoPlanOptions, VideoSegmentPlan, ViewerMode, ViewerTheme, ViewerThemeColors };
|