pptx-angular-viewer 1.1.21 → 1.1.23

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pptx-angular-viewer",
3
- "version": "1.1.21",
3
+ "version": "1.1.23",
4
4
  "description": "Angular PowerPoint viewer/editor component — depends on pptx-viewer-core. Angular counterpart of the React `pptx-viewer` and Vue `pptx-vue-viewer` packages.",
5
5
  "keywords": [
6
6
  "angular",
@@ -43,7 +43,7 @@
43
43
  "peerDependencies": {
44
44
  "@angular/common": "^22.0.1",
45
45
  "@angular/core": "^22.0.1",
46
- "pptx-viewer-core": "^1.1.21",
46
+ "pptx-viewer-core": "^1.1.23",
47
47
  "rxjs": "^7.8.0"
48
48
  },
49
49
  "module": "fesm2022/pptx-angular-viewer.mjs",
@@ -340,6 +340,20 @@
340
340
  word-break: break-word;
341
341
  }
342
342
 
343
+ /* Mobile speaker-notes sheet — docked above the mobile bottom bar. */
344
+ .pptx-ng-mobile-notes-sheet {
345
+ position: fixed;
346
+ left: 0;
347
+ right: 0;
348
+ bottom: 56px;
349
+ z-index: 29;
350
+ max-height: 50vh;
351
+ overflow: auto;
352
+ background: #ffffff;
353
+ border-top: 1px solid rgba(0, 0, 0, 0.15);
354
+ box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.18);
355
+ }
356
+
343
357
  /* ── Tables ─────────────────────────────────────────────────────────── */
344
358
  .pptx-ng-table-wrapper {
345
359
  width: 100%;
@@ -1,7 +1,7 @@
1
1
  import * as _angular_core from '@angular/core';
2
2
  import { Signal, OnInit, OnDestroy, OnChanges, SimpleChanges, InjectionToken, Provider } from '@angular/core';
3
3
  import * as pptx_viewer_core from 'pptx-viewer-core';
4
- import { PptxSlide, AccessibilityCheckOptions, AccessibilityIssue, PptxElement, PptxTheme, PptxSlideMaster, PptxEmbeddedFont, PptxCoreProperties, ParsedSignature, PptxComment, PptxTextWarpPreset, TextSegment, TextStyle, PptxTableCell, Model3DPptxElement, ZoomPptxElement, PptxElementAnimation, PptxSlideTransition, TablePptxElement, ChartPptxElement, PptxAnimationPreset, PptxAnimationTrigger, PptxAnimationTimingCurve, PptxAnimationRepeatMode, PptxAnimationDirection, PptxAnimationSequence, XmlObject, SignatureStatus, AccessibilityIssueSeverity, AccessibilityIssueType, PptxTransitionType, ShapeStyle } from 'pptx-viewer-core';
4
+ import { PptxSlide, AccessibilityCheckOptions, AccessibilityIssue, PptxElement, PptxTheme, PptxSlideMaster, PptxEmbeddedFont, PptxCoreProperties, ParsedSignature, PptxComment, PptxTextWarpPreset, TextSegment, TextStyle, PptxTableCell, Model3DPptxElement, ZoomPptxElement, PptxElementAnimation, PptxSlideTransition, TablePptxElement, ChartPptxElement, PptxAnimationPreset, PptxAnimationTrigger, PptxAnimationTimingCurve, PptxAnimationRepeatMode, PptxAnimationDirection, PptxAnimationSequence, ShapeStyle, XmlObject, SignatureStatus, AccessibilityIssueSeverity, AccessibilityIssueType, PptxTransitionType } 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';
@@ -1035,8 +1035,6 @@ declare class PowerPointViewerComponent {
1035
1035
  } | null>;
1036
1036
  /** Id of the element being inline text-edited, or null. */
1037
1037
  protected readonly editingId: _angular_core.WritableSignal<string | null>;
1038
- /** Notes for the active slide, if any. */
1039
- protected readonly activeNotes: _angular_core.Signal<string>;
1040
1038
  /**
1041
1039
  * Stable, always-truthy key for the slide-properties form. Changes only when
1042
1040
  * the active slide changes, so the `@if` recreates (and reseeds) the
@@ -1046,6 +1044,12 @@ declare class PowerPointViewerComponent {
1046
1044
  protected readonly slidePropsKey: _angular_core.Signal<string>;
1047
1045
  /** The single selected element on the active slide (for the inspector). */
1048
1046
  protected readonly selectedElement: _angular_core.Signal<PptxElement | null>;
1047
+ /** True while the painter is armed (next element click applies the copied format). */
1048
+ protected readonly formatPainterActive: _angular_core.WritableSignal<boolean>;
1049
+ /** Format copied from the source element when the painter was armed. */
1050
+ private copiedFormat;
1051
+ /** Whether the painter can be armed: exactly one selected element with copyable format. */
1052
+ protected readonly canActivateFormatPainter: _angular_core.Signal<boolean>;
1049
1053
  constructor();
1050
1054
  /**
1051
1055
  * Serialise the current presentation to `.pptx` bytes (imperative handle).
@@ -1127,6 +1131,14 @@ declare class PowerPointViewerComponent {
1127
1131
  id: string;
1128
1132
  additive: boolean;
1129
1133
  }): void;
1134
+ /** Empty-stage press: disarm the painter if armed, else clear the selection. */
1135
+ onBackgroundClick(): void;
1136
+ /** Toggle the format painter: arm from the current selection, or disarm. */
1137
+ toggleFormatPainter(): void;
1138
+ /** Disarm the painter and drop the copied format. */
1139
+ cancelFormatPainter(): void;
1140
+ /** Apply the copied format to a target element (shape/text style only; one history entry). */
1141
+ private applyFormatToTarget;
1130
1142
  /** Right-click: select the element under the cursor and open the menu. */
1131
1143
  onContextMenu(event: {
1132
1144
  id: string | null;
@@ -1137,6 +1149,8 @@ declare class PowerPointViewerComponent {
1137
1149
  onSlideBackground(event: Event): void;
1138
1150
  /** Update the active slide's speaker notes. */
1139
1151
  onSlideNotes(event: Event): void;
1152
+ /** Update the active slide's speaker notes from the editable NotesPanel. */
1153
+ onNotesUpdate(notes: string): void;
1140
1154
  /** Commit an inline text edit: replace the element's text (one history entry). */
1141
1155
  onTextCommit(event: {
1142
1156
  id: string;
@@ -1447,6 +1461,14 @@ declare class SlideCanvasComponent {
1447
1461
  readonly zoom: _angular_core.InputSignal<number>;
1448
1462
  /** When true, elements are selectable and drag/resize handles are shown. */
1449
1463
  readonly editable: _angular_core.InputSignal<boolean>;
1464
+ /**
1465
+ * When true (default), the stage auto-fits the slide to the scroll viewport so
1466
+ * the user's `zoom` is relative to "fit". Thumbnail consumers (slides panel,
1467
+ * slide sorter) pass an explicit fit-to-width `zoom` and set this `false`, so
1468
+ * their `zoom` is the sole scale — otherwise the two scales compound and the
1469
+ * thumbnail shrinks to near-invisible.
1470
+ */
1471
+ readonly autoFit: _angular_core.InputSignal<boolean>;
1450
1472
  /** Ids of currently-selected elements (drawn with a selection outline). */
1451
1473
  readonly selectedIds: _angular_core.InputSignal<readonly string[]>;
1452
1474
  /** Id of the element currently being text-edited inline (or null). */
@@ -1590,7 +1612,7 @@ declare class SlideCanvasComponent {
1590
1612
  readonly wrapperStyle: _angular_core.Signal<StyleMap>;
1591
1613
  readonly stageStyle: _angular_core.Signal<StyleMap>;
1592
1614
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SlideCanvasComponent, never>;
1593
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<SlideCanvasComponent, "pptx-slide-canvas", never, { "slide": { "alias": "slide"; "required": false; "isSignal": true; }; "canvasSize": { "alias": "canvasSize"; "required": true; "isSignal": true; }; "mediaDataUrls": { "alias": "mediaDataUrls"; "required": false; "isSignal": true; }; "zoom": { "alias": "zoom"; "required": false; "isSignal": true; }; "editable": { "alias": "editable"; "required": false; "isSignal": true; }; "selectedIds": { "alias": "selectedIds"; "required": false; "isSignal": true; }; "editingId": { "alias": "editingId"; "required": false; "isSignal": true; }; }, { "elementSelect": "elementSelect"; "backgroundClick": "backgroundClick"; "transformStart": "transformStart"; "transformUpdate": "transformUpdate"; "contextMenu": "contextMenu"; "textEditStart": "textEditStart"; "textCommit": "textCommit"; "textCancel": "textCancel"; "rotateUpdate": "rotateUpdate"; "marqueeSelect": "marqueeSelect"; }, never, never, true, never>;
1615
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SlideCanvasComponent, "pptx-slide-canvas", never, { "slide": { "alias": "slide"; "required": false; "isSignal": true; }; "canvasSize": { "alias": "canvasSize"; "required": true; "isSignal": true; }; "mediaDataUrls": { "alias": "mediaDataUrls"; "required": false; "isSignal": true; }; "zoom": { "alias": "zoom"; "required": false; "isSignal": true; }; "editable": { "alias": "editable"; "required": false; "isSignal": true; }; "autoFit": { "alias": "autoFit"; "required": false; "isSignal": true; }; "selectedIds": { "alias": "selectedIds"; "required": false; "isSignal": true; }; "editingId": { "alias": "editingId"; "required": false; "isSignal": true; }; }, { "elementSelect": "elementSelect"; "backgroundClick": "backgroundClick"; "transformStart": "transformStart"; "transformUpdate": "transformUpdate"; "contextMenu": "contextMenu"; "textEditStart": "textEditStart"; "textCommit": "textCommit"; "textCancel": "textCancel"; "rotateUpdate": "rotateUpdate"; "marqueeSelect": "marqueeSelect"; }, never, never, true, never>;
1594
1616
  }
1595
1617
 
1596
1618
  /**
@@ -3662,6 +3684,8 @@ declare class MobileBottomBarComponent {
3662
3684
  readonly menuOpen: _angular_core.InputSignal<boolean>;
3663
3685
  /** Whether the slides thumbnail sheet is currently open. */
3664
3686
  readonly slidesOpen: _angular_core.InputSignal<boolean>;
3687
+ /** Whether the speaker-notes sheet is currently open (highlights the button). */
3688
+ readonly notesOpen: _angular_core.InputSignal<boolean>;
3665
3689
  /** User tapped the previous-slide button. */
3666
3690
  readonly prev: _angular_core.OutputEmitterRef<void>;
3667
3691
  /** User tapped the next-slide button. */
@@ -3672,13 +3696,15 @@ declare class MobileBottomBarComponent {
3672
3696
  readonly openSorter: _angular_core.OutputEmitterRef<void>;
3673
3697
  /** User tapped the Find button. */
3674
3698
  readonly openFind: _angular_core.OutputEmitterRef<void>;
3699
+ /** User tapped the Notes button. */
3700
+ readonly notes: _angular_core.OutputEmitterRef<void>;
3675
3701
  /** User tapped the Slides thumbnail strip button. */
3676
3702
  readonly openSlides: _angular_core.OutputEmitterRef<void>;
3677
3703
  /** User tapped the menu (⋯) button. */
3678
3704
  readonly toggleMenu: _angular_core.OutputEmitterRef<void>;
3679
3705
  readonly actions: _angular_core.Signal<BarAction[]>;
3680
3706
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<MobileBottomBarComponent, never>;
3681
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<MobileBottomBarComponent, "pptx-mobile-bottom-bar", never, { "activeIndex": { "alias": "activeIndex"; "required": false; "isSignal": true; }; "slideCount": { "alias": "slideCount"; "required": false; "isSignal": true; }; "canPresent": { "alias": "canPresent"; "required": false; "isSignal": true; }; "menuOpen": { "alias": "menuOpen"; "required": false; "isSignal": true; }; "slidesOpen": { "alias": "slidesOpen"; "required": false; "isSignal": true; }; }, { "prev": "prev"; "next": "next"; "present": "present"; "openSorter": "openSorter"; "openFind": "openFind"; "openSlides": "openSlides"; "toggleMenu": "toggleMenu"; }, never, never, true, never>;
3707
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<MobileBottomBarComponent, "pptx-mobile-bottom-bar", never, { "activeIndex": { "alias": "activeIndex"; "required": false; "isSignal": true; }; "slideCount": { "alias": "slideCount"; "required": false; "isSignal": true; }; "canPresent": { "alias": "canPresent"; "required": false; "isSignal": true; }; "menuOpen": { "alias": "menuOpen"; "required": false; "isSignal": true; }; "slidesOpen": { "alias": "slidesOpen"; "required": false; "isSignal": true; }; "notesOpen": { "alias": "notesOpen"; "required": false; "isSignal": true; }; }, { "prev": "prev"; "next": "next"; "present": "present"; "openSorter": "openSorter"; "openFind": "openFind"; "notes": "notes"; "openSlides": "openSlides"; "toggleMenu": "toggleMenu"; }, never, never, true, never>;
3682
3708
  }
3683
3709
 
3684
3710
  /** Descriptor for a single menu row. */
@@ -3792,6 +3818,46 @@ declare class MobileSheetComponent {
3792
3818
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<MobileSheetComponent, "pptx-mobile-sheet", never, { "open": { "alias": "open"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "heightFraction": { "alias": "heightFraction"; "required": false; "isSignal": true; }; "fullScreen": { "alias": "fullScreen"; "required": false; "isSignal": true; }; }, { "closed": "closed"; }, never, ["*"], true, never>;
3793
3819
  }
3794
3820
 
3821
+ declare class NotesPanelComponent {
3822
+ /** The active slide whose notes are shown / edited. */
3823
+ readonly slide: _angular_core.InputSignal<PptxSlide | undefined>;
3824
+ /** Emits the new notes text on commit (change / blur). */
3825
+ readonly update: _angular_core.OutputEmitterRef<string>;
3826
+ /** Whether the panel body is collapsed (notes hidden). */
3827
+ readonly collapsed: _angular_core.WritableSignal<boolean>;
3828
+ private readonly textarea;
3829
+ /** The slide id we've already seeded the textarea for. */
3830
+ private seededId;
3831
+ constructor();
3832
+ /** Toggle the collapsed state. */
3833
+ toggle(): void;
3834
+ /** Commit the edited notes text to the host. */
3835
+ onCommit(event: Event): void;
3836
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<NotesPanelComponent, never>;
3837
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<NotesPanelComponent, "pptx-notes-panel", never, { "slide": { "alias": "slide"; "required": false; "isSignal": true; }; }, { "update": "update"; }, never, never, true, never>;
3838
+ }
3839
+
3840
+ /**
3841
+ * format-painter.ts — copies shape/text style properties from one element and
3842
+ * applies them to another.
3843
+ *
3844
+ * Pure, framework-agnostic logic (Angular-local port of the Vue
3845
+ * `viewer/composables/format-painter.ts`, itself a port of the React
3846
+ * `viewer/utils/format-painter.ts`). Extraction into `pptx-viewer-shared` is a
3847
+ * follow-up tracked in PORTING.md.
3848
+ */
3849
+
3850
+ interface CopiedFormat {
3851
+ shapeStyle?: Partial<ShapeStyle>;
3852
+ textStyle?: Partial<TextStyle>;
3853
+ }
3854
+ /** Copy the paintable shape + text style off an element. */
3855
+ declare function copyFormatFromElement(element: PptxElement): CopiedFormat;
3856
+ /** Merge a copied format onto a target element (only defined fields win). */
3857
+ declare function applyFormatToElement(element: PptxElement, format: CopiedFormat): PptxElement;
3858
+ /** True when an element exposes formatting fields the painter can copy. */
3859
+ declare function hasCopyableFormat(element: PptxElement | null | undefined): boolean;
3860
+
3795
3861
  /**
3796
3862
  * SlidesPanelComponent — vertical slide-strip for the editor sidebar.
3797
3863
  *
@@ -5963,5 +6029,5 @@ declare function themeStyle(theme: ViewerTheme | undefined): Record<string, stri
5963
6029
  type ClassValue = string | number | false | null | undefined;
5964
6030
  declare function cn(...values: ClassValue[]): string;
5965
6031
 
5966
- export { AccessibilityPanelComponent, AccessibilityService, AnimationAuthorPanelComponent, AnimationPanelComponent, AnimationPlaybackService, BroadcastDialogComponent, CURSOR_PALETTE, ChartDataEditorComponent, ChartRendererComponent, CollaborationCursorsComponent, CollaborationService, CommentsPanelComponent, CommentsService, 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, EditorContextMenuComponent, EditorHistory, EditorStateService, EditorToolbarComponent, EffectsPanelComponent, ElementRendererComponent, EmbeddedFontsService, EquationRendererComponent, ExportService, FindBarComponent, FindReplaceBarComponent, GradientPickerComponent, HANDOUT_OPTIONS, HyperlinkDialogComponent, InkRendererComponent, InspectorPanelComponent, IsMobileService, LoadContentService, MobileBottomBarComponent, MobileMenuSheetComponent, MobileSheetComponent, MobileSlidesSheetComponent, ModalDialogComponent, Model3DRendererComponent, OleRendererComponent, PowerPointViewerComponent, PresentationAnnotationOverlayComponent, PresentationAnnotationsService, PresentationOverlayComponent, PresentationSubtitleBarComponent, PresentationTransitionOverlayComponent, PresenterViewComponent, PrintDialogComponent, PrintService, PrintSettingsPanelComponent, PropertiesDialogComponent, RESIZE_HANDLES, SEVERITY_GROUPS, SEVERITY_LABELS, SLIDE_TRANSITION_KEYFRAMES, SVG_WARP_PRESETS, ShareDialogComponent, SignaturesPanelComponent, SignaturesService, SlideCanvasComponent, SlideSorterOverlayComponent, SlidesPanelComponent, SmartArtRendererComponent, TYPE_LABELS, TableDataEditorComponent, TableRendererComponent, TextAdvancedPanelComponent, VIEWER_THEME, WEBM_MIME_CANDIDATES, ZoomRendererComponent, addCommentToList, advanceStep, applyFindReplacements, applyMove, applyResize, assignUserColor, bringForward, bringToFront, buildBroadcastConfig, buildBroadcastViewerUrl, buildClearHyperlinkPatch, buildClickGroups, buildCollaborationConfig, buildCssGradientFromShapeStyle, buildDuotoneFilter, buildDuotoneFilterId, buildEmbeddedFontStyles, buildFontFaceRule, buildHyperlinkPatch, buildPatternFillCss, buildPrintDocument, buildPropertiesPatch, buildShareUrl, bulletIndentPx, canStartBroadcast, canStartShare, canUseClipboard, clampCursorPosition, clampGifDimensions, clampNotesFontSize, clampStep, cn, collectAccessibilityIssues, collectElementText, collectSlideText, computeHandoutLayout, computeIsMobile, computeIsTablet, computePageCount, computeSlideIndices, computeTimerProgress, convertOmmlToMathMl, countAccessibilityIssues, defaultCssVars, defaultRadius, defaultThemeColors, deleteElementsByIds, derivePresenceList, duplicateElementById, durationOf, encodeGif, estimatePageCount, findInSlides, fontMimeForFormat, formatAutoNumber, formatCursorLabel, formatElapsed, formatPropertyDate, formatTime, fpsToFrameIntervalMs, generateBroadcastRoomId, generateCommentId, getContainerStyle, getDuotoneFilterDef, getImageSrc, getPatternSvg, getResolvedShapeClipPath, getResolvedShapeClipPathFor, getShapeFillStrokeStyle, getSlideBackgroundStyle, getSlideTransitionAnimations, getTextBlockStyle, getTextWarp, getWarpCategory, getWarpPath, groupIssuesBySeverity, hasExistingLink, headerLabel, isInjectableUrl, isPpactionUrl, isSigned, isUrlSafe, isValidRoomId, issueTrackKey, issueTypeLabel, moveElementBy, msToFrameDelayCs, normalizeFontFormat, normalizeSlidesPerPage, ommlToMathml, overallStatus, pendingElementStyles, pickSupportedMimeType, planGifFrames, planVideoSegments, presenceToCursors, provideViewerTheme, recordWebm, removeCommentFromList, renderToCanvas, replaceInSlides, replaceMatch, resizeElement, resolveFontVariant, resolveHyperlinkHref, resolveParagraphBullet, resolvePresenterNotes, resolveTransitionDuration, revealedElementStyles, routeOrthogonalConnector, sanitizeColor, sanitizeSlideIndex, sanitizeUserName, searchSlides, seedBroadcastFields, seedHyperlinkDraft, seedPropertiesDraft, seedShareFields, segmentFrameCount, sendBackward, sendToBack, setElementPosition, shouldUseSvgWarp, signatureCountLabel, signatureKey, signatureTimestamp, signerName, statusKind, statusLabel, themeStyle, themeToCssVars, toggleCommentResolvedInList, updateElementById, validatePrintSettings, validateRoomId, waypointsToPathD, worstStatus };
5967
- export type { AccessibilityIssueGroup, AnimationClickGroup, AnnotationStroke, Box, BroadcastConfig, BroadcastDefaults, CSSProperties, CanvasSize, ClassValue, CollaborationConfig, CollaborationRole, Rect as ConnectorObstacle, Point as ConnectorPoint, ConnectorRouting, DocumentProperties, DuotoneFilterDef, EmbeddedFontStyles, FindOptions, FindResult, GifFrame, GifFramePlan, GifPlanOptions, HandoutSlidesPerPage, HyperlinkDraft, NotesSegmentViewModel, ObjectUrlFactory, OverallSignatureStatus, PresentationTool, PresenterNotes, PrintColorMode, PrintDocumentOptions, PrintOrientation, PrintSettings, PrintSlideRange, PrintWhat, PropertiesDraft, RecordWebmOptions, RemoteCursor, RemotePresence, ReplaceResult, ResizeHandle, ResolvedFontVariant, ShareDefaults, ShareFormFields, SignatureStatusKind, SlideTransitionAnimations, StyleMap, TextWarpCssDef, TextWarpDef, TextWarpPathDef, TimerProgress, VideoPlanOptions, VideoSegmentPlan, ViewerTheme, ViewerThemeColors };
6032
+ export { AccessibilityPanelComponent, AccessibilityService, AnimationAuthorPanelComponent, AnimationPanelComponent, AnimationPlaybackService, BroadcastDialogComponent, CURSOR_PALETTE, ChartDataEditorComponent, ChartRendererComponent, CollaborationCursorsComponent, CollaborationService, CommentsPanelComponent, CommentsService, 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, EditorContextMenuComponent, EditorHistory, EditorStateService, EditorToolbarComponent, EffectsPanelComponent, ElementRendererComponent, EmbeddedFontsService, EquationRendererComponent, ExportService, FindBarComponent, FindReplaceBarComponent, GradientPickerComponent, HANDOUT_OPTIONS, HyperlinkDialogComponent, InkRendererComponent, InspectorPanelComponent, IsMobileService, LoadContentService, MobileBottomBarComponent, MobileMenuSheetComponent, MobileSheetComponent, MobileSlidesSheetComponent, ModalDialogComponent, Model3DRendererComponent, NotesPanelComponent, OleRendererComponent, PowerPointViewerComponent, PresentationAnnotationOverlayComponent, PresentationAnnotationsService, PresentationOverlayComponent, PresentationSubtitleBarComponent, PresentationTransitionOverlayComponent, PresenterViewComponent, PrintDialogComponent, PrintService, PrintSettingsPanelComponent, PropertiesDialogComponent, RESIZE_HANDLES, SEVERITY_GROUPS, SEVERITY_LABELS, SLIDE_TRANSITION_KEYFRAMES, SVG_WARP_PRESETS, ShareDialogComponent, SignaturesPanelComponent, SignaturesService, SlideCanvasComponent, SlideSorterOverlayComponent, SlidesPanelComponent, SmartArtRendererComponent, TYPE_LABELS, TableDataEditorComponent, TableRendererComponent, TextAdvancedPanelComponent, VIEWER_THEME, WEBM_MIME_CANDIDATES, ZoomRendererComponent, addCommentToList, advanceStep, applyFindReplacements, applyFormatToElement, applyMove, applyResize, assignUserColor, bringForward, bringToFront, buildBroadcastConfig, buildBroadcastViewerUrl, buildClearHyperlinkPatch, buildClickGroups, buildCollaborationConfig, buildCssGradientFromShapeStyle, buildDuotoneFilter, buildDuotoneFilterId, buildEmbeddedFontStyles, buildFontFaceRule, buildHyperlinkPatch, buildPatternFillCss, buildPrintDocument, buildPropertiesPatch, buildShareUrl, bulletIndentPx, canStartBroadcast, canStartShare, canUseClipboard, clampCursorPosition, clampGifDimensions, clampNotesFontSize, clampStep, cn, collectAccessibilityIssues, collectElementText, collectSlideText, computeHandoutLayout, computeIsMobile, computeIsTablet, computePageCount, computeSlideIndices, computeTimerProgress, convertOmmlToMathMl, copyFormatFromElement, countAccessibilityIssues, defaultCssVars, defaultRadius, defaultThemeColors, deleteElementsByIds, derivePresenceList, duplicateElementById, durationOf, encodeGif, estimatePageCount, findInSlides, fontMimeForFormat, formatAutoNumber, formatCursorLabel, formatElapsed, formatPropertyDate, formatTime, fpsToFrameIntervalMs, generateBroadcastRoomId, generateCommentId, getContainerStyle, getDuotoneFilterDef, getImageSrc, getPatternSvg, getResolvedShapeClipPath, getResolvedShapeClipPathFor, getShapeFillStrokeStyle, getSlideBackgroundStyle, getSlideTransitionAnimations, getTextBlockStyle, getTextWarp, getWarpCategory, getWarpPath, groupIssuesBySeverity, hasCopyableFormat, hasExistingLink, headerLabel, isInjectableUrl, isPpactionUrl, isSigned, isUrlSafe, isValidRoomId, issueTrackKey, issueTypeLabel, moveElementBy, msToFrameDelayCs, normalizeFontFormat, normalizeSlidesPerPage, ommlToMathml, overallStatus, pendingElementStyles, pickSupportedMimeType, planGifFrames, planVideoSegments, presenceToCursors, provideViewerTheme, recordWebm, removeCommentFromList, renderToCanvas, replaceInSlides, replaceMatch, resizeElement, resolveFontVariant, resolveHyperlinkHref, resolveParagraphBullet, resolvePresenterNotes, resolveTransitionDuration, revealedElementStyles, routeOrthogonalConnector, sanitizeColor, sanitizeSlideIndex, sanitizeUserName, searchSlides, seedBroadcastFields, seedHyperlinkDraft, seedPropertiesDraft, seedShareFields, segmentFrameCount, sendBackward, sendToBack, setElementPosition, shouldUseSvgWarp, signatureCountLabel, signatureKey, signatureTimestamp, signerName, statusKind, statusLabel, themeStyle, themeToCssVars, toggleCommentResolvedInList, updateElementById, validatePrintSettings, validateRoomId, waypointsToPathD, worstStatus };
6033
+ export type { AccessibilityIssueGroup, AnimationClickGroup, AnnotationStroke, Box, BroadcastConfig, BroadcastDefaults, CSSProperties, CanvasSize, ClassValue, CollaborationConfig, CollaborationRole, Rect as ConnectorObstacle, Point as ConnectorPoint, ConnectorRouting, CopiedFormat, DocumentProperties, DuotoneFilterDef, EmbeddedFontStyles, FindOptions, FindResult, GifFrame, GifFramePlan, GifPlanOptions, HandoutSlidesPerPage, HyperlinkDraft, NotesSegmentViewModel, ObjectUrlFactory, OverallSignatureStatus, PresentationTool, PresenterNotes, PrintColorMode, PrintDocumentOptions, PrintOrientation, PrintSettings, PrintSlideRange, PrintWhat, PropertiesDraft, RecordWebmOptions, RemoteCursor, RemotePresence, ReplaceResult, ResizeHandle, ResolvedFontVariant, ShareDefaults, ShareFormFields, SignatureStatusKind, SlideTransitionAnimations, StyleMap, TextWarpCssDef, TextWarpDef, TextWarpPathDef, TimerProgress, VideoPlanOptions, VideoSegmentPlan, ViewerTheme, ViewerThemeColors };