pptx-angular-viewer 1.11.1 → 1.12.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 +6 -0
- package/README.md +12 -0
- package/fesm2022/pptx-angular-viewer.mjs +324 -16
- package/fesm2022/pptx-angular-viewer.mjs.map +1 -1
- package/package.json +1 -1
- package/types/pptx-angular-viewer.d.ts +91 -3
package/package.json
CHANGED
|
@@ -111,6 +111,26 @@ declare function themeToCssVars(theme: ViewerTheme | undefined, omitDefaults?: b
|
|
|
111
111
|
*/
|
|
112
112
|
declare function defaultCssVars(): Record<string, string>;
|
|
113
113
|
|
|
114
|
+
/**
|
|
115
|
+
* Built-in "vermilion" theme presets.
|
|
116
|
+
*
|
|
117
|
+
* These mirror the pptx-viewer brand used on the documentation site:
|
|
118
|
+
* a warm paper canvas in light mode, a dimmed presenter room in dark
|
|
119
|
+
* mode, and the vermilion accent in both. Pass one to the viewer's
|
|
120
|
+
* `theme` prop (React/Vue) or `provideViewerTheme` (Angular), or spread
|
|
121
|
+
* the color objects to derive your own variant.
|
|
122
|
+
*/
|
|
123
|
+
/** Light "paper" palette: a projection screen in a bright room. */
|
|
124
|
+
declare const vermilionLightColors: ViewerThemeColors;
|
|
125
|
+
/** Dark "presenter" palette: the presenter room with the lights down. */
|
|
126
|
+
declare const vermilionDarkColors: ViewerThemeColors;
|
|
127
|
+
/** Shared border-radius for the vermilion presets (slightly sharper than the default). */
|
|
128
|
+
declare const vermilionRadius = "0.375rem";
|
|
129
|
+
/** Light vermilion theme, ready for the viewer's `theme` prop. */
|
|
130
|
+
declare const vermilionLightTheme: ViewerTheme;
|
|
131
|
+
/** Dark vermilion theme, ready for the viewer's `theme` prop. */
|
|
132
|
+
declare const vermilionDarkTheme: ViewerTheme;
|
|
133
|
+
|
|
114
134
|
/**
|
|
115
135
|
* Framework-agnostic public types shared by the viewer bindings.
|
|
116
136
|
*
|
|
@@ -587,6 +607,42 @@ interface ChartOption<V> {
|
|
|
587
607
|
* @module chart-view-model
|
|
588
608
|
*/
|
|
589
609
|
|
|
610
|
+
/** Min/max/span of a value axis. */
|
|
611
|
+
interface ValueRange {
|
|
612
|
+
min: number;
|
|
613
|
+
max: number;
|
|
614
|
+
span: number;
|
|
615
|
+
/** When true, the range is log-scaled (min/max are data-space power-of-base bounds, span is in log-space). */
|
|
616
|
+
logScale?: boolean;
|
|
617
|
+
/** Logarithmic base (e.g. 10, 2, Math.E). Only meaningful when logScale is true. */
|
|
618
|
+
logBase?: number;
|
|
619
|
+
}
|
|
620
|
+
/**
|
|
621
|
+
* Reference to an interactive chart sub-part, carried by the primitives that
|
|
622
|
+
* represent data marks (bars, dots, slices, series lines). Bindings use it to
|
|
623
|
+
* make marks clickable/draggable in edit mode and to sync selection with the
|
|
624
|
+
* chart inspector; primitives without a `part` stay purely decorative.
|
|
625
|
+
*/
|
|
626
|
+
interface ChartPartRef {
|
|
627
|
+
/** 'dataPoint' targets one (series, category) cell; 'series' the whole series. */
|
|
628
|
+
role: 'dataPoint' | 'series';
|
|
629
|
+
seriesIndex: number;
|
|
630
|
+
/** Category/point index. Absent when the primitive spans the whole series. */
|
|
631
|
+
pointIndex?: number;
|
|
632
|
+
}
|
|
633
|
+
/**
|
|
634
|
+
* Vertical drag-to-value context, present on cartesian view-models whose data
|
|
635
|
+
* marks can be dragged vertically to change their value (clustered bar, line,
|
|
636
|
+
* scatter, bubble). `secondarySeriesIndexes` lists series plotted against
|
|
637
|
+
* `secondaryRange` instead of `range`.
|
|
638
|
+
*/
|
|
639
|
+
interface ChartValueDrag {
|
|
640
|
+
range: ValueRange;
|
|
641
|
+
secondaryRange?: ValueRange;
|
|
642
|
+
secondarySeriesIndexes?: number[];
|
|
643
|
+
plotTop: number;
|
|
644
|
+
plotBottom: number;
|
|
645
|
+
}
|
|
590
646
|
interface SvgRect {
|
|
591
647
|
kind: 'rect';
|
|
592
648
|
x: number;
|
|
@@ -596,6 +652,7 @@ interface SvgRect {
|
|
|
596
652
|
fill: string;
|
|
597
653
|
rx?: number;
|
|
598
654
|
opacity?: number;
|
|
655
|
+
part?: ChartPartRef;
|
|
599
656
|
}
|
|
600
657
|
interface SvgPath {
|
|
601
658
|
kind: 'path';
|
|
@@ -604,6 +661,7 @@ interface SvgPath {
|
|
|
604
661
|
stroke?: string;
|
|
605
662
|
strokeWidth?: number;
|
|
606
663
|
opacity?: number;
|
|
664
|
+
part?: ChartPartRef;
|
|
607
665
|
}
|
|
608
666
|
interface SvgPolyline {
|
|
609
667
|
kind: 'polyline';
|
|
@@ -612,6 +670,7 @@ interface SvgPolyline {
|
|
|
612
670
|
strokeWidth: number;
|
|
613
671
|
fill: string;
|
|
614
672
|
opacity?: number;
|
|
673
|
+
part?: ChartPartRef;
|
|
615
674
|
}
|
|
616
675
|
interface SvgCircle {
|
|
617
676
|
kind: 'circle';
|
|
@@ -620,6 +679,7 @@ interface SvgCircle {
|
|
|
620
679
|
r: number;
|
|
621
680
|
fill: string;
|
|
622
681
|
opacity?: number;
|
|
682
|
+
part?: ChartPartRef;
|
|
623
683
|
}
|
|
624
684
|
interface SvgLine {
|
|
625
685
|
kind: 'line';
|
|
@@ -654,6 +714,7 @@ interface SvgPolygon {
|
|
|
654
714
|
strokeWidth: number;
|
|
655
715
|
opacity?: number;
|
|
656
716
|
dashArray?: string;
|
|
717
|
+
part?: ChartPartRef;
|
|
657
718
|
}
|
|
658
719
|
interface SvgAreaGradient {
|
|
659
720
|
kind: 'areaGradient';
|
|
@@ -700,6 +761,12 @@ interface ChartViewModel {
|
|
|
700
761
|
* is set). Already appended to `primitives`; surfaced separately for projectors.
|
|
701
762
|
*/
|
|
702
763
|
dataTable?: SvgPrimitive[];
|
|
764
|
+
/**
|
|
765
|
+
* Present when the chart's data marks support vertical drag-to-value editing
|
|
766
|
+
* (clustered bar / line / scatter / bubble). Absent for stacked, polar, and
|
|
767
|
+
* hierarchical kinds, where a vertical drag has no single-value meaning.
|
|
768
|
+
*/
|
|
769
|
+
valueDrag?: ChartValueDrag;
|
|
703
770
|
}
|
|
704
771
|
|
|
705
772
|
/**
|
|
@@ -4235,6 +4302,14 @@ declare class ViewerInspectorPanelService {
|
|
|
4235
4302
|
readonly activePanel: _angular_core.WritableSignal<InspectorToolPanel | null>;
|
|
4236
4303
|
/** True once the user swiped the inspector away on mobile (until reopened). */
|
|
4237
4304
|
readonly mobileInspectorHidden: _angular_core.WritableSignal<boolean>;
|
|
4305
|
+
/**
|
|
4306
|
+
* True once the user has explicitly closed the format (element/slide)
|
|
4307
|
+
* panel via the ribbon toggle - independent of selection, mirroring
|
|
4308
|
+
* React's/Vue's own open/closed toggle state. Never affects the explicit
|
|
4309
|
+
* tool panels (comments/accessibility/signatures/selection), which show
|
|
4310
|
+
* regardless of this flag.
|
|
4311
|
+
*/
|
|
4312
|
+
readonly formatPanelClosed: _angular_core.WritableSignal<boolean>;
|
|
4238
4313
|
/**
|
|
4239
4314
|
* Swipe-to-dismiss drag for the inspector host. The host docks in-flow below
|
|
4240
4315
|
* the canvas on mobile (same keyboard-reachability reason as the notes
|
|
@@ -4253,6 +4328,12 @@ declare class ViewerInspectorPanelService {
|
|
|
4253
4328
|
* `canEdit`.
|
|
4254
4329
|
*/
|
|
4255
4330
|
readonly inspectorContent: _angular_core.Signal<InspectorContent>;
|
|
4331
|
+
/**
|
|
4332
|
+
* `inspectorContent`, but the format (element/slide) view collapses to
|
|
4333
|
+
* `null` once the user has explicitly closed it via the ribbon toggle.
|
|
4334
|
+
* Explicit tool panels (comments/accessibility/etc.) are untouched.
|
|
4335
|
+
*/
|
|
4336
|
+
private readonly formatPanelContent;
|
|
4256
4337
|
/**
|
|
4257
4338
|
* Whether the right-docked inspector is showing the format panel (element or
|
|
4258
4339
|
* slide properties). Drives the top-bar inspector-toggle active state.
|
|
@@ -4264,6 +4345,13 @@ declare class ViewerInspectorPanelService {
|
|
|
4264
4345
|
readonly inspectorLabel: _angular_core.Signal<"" | "pptx.toolbar.comments" | "pptx.accessibility.title" | "pptx.viewer.digitalSignatures" | "pptx.selectionPane.title" | "pptx.viewer.elementProperties" | "pptx.viewer.slideProperties">;
|
|
4265
4346
|
/** Toggle a right-docked tool panel (clicking the active one closes it). */
|
|
4266
4347
|
togglePanel(panel: InspectorToolPanel): void;
|
|
4348
|
+
/**
|
|
4349
|
+
* Ribbon "toggle inspector" action: if a tool panel is active, return to
|
|
4350
|
+
* the format (element/slide) view; otherwise toggle the format view's
|
|
4351
|
+
* open/closed state, matching React's and Vue's independent open/close
|
|
4352
|
+
* toggle (closing/opening is not tied to selection changes).
|
|
4353
|
+
*/
|
|
4354
|
+
toggleFormatPanel(): void;
|
|
4267
4355
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ViewerInspectorPanelService, never>;
|
|
4268
4356
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ViewerInspectorPanelService>;
|
|
4269
4357
|
}
|
|
@@ -8472,7 +8560,7 @@ declare class SetUpSlideShowDialogComponent {
|
|
|
8472
8560
|
/** Working copy of the properties; seeded from `properties` on open. */
|
|
8473
8561
|
readonly draft: _angular_core.WritableSignal<PptxPresentationProperties>;
|
|
8474
8562
|
readonly showType: _angular_core.Signal<"presented" | "browsed" | "kiosk">;
|
|
8475
|
-
readonly showSlidesMode: _angular_core.Signal<"
|
|
8563
|
+
readonly showSlidesMode: _angular_core.Signal<"range" | "all" | "customShow">;
|
|
8476
8564
|
constructor();
|
|
8477
8565
|
/** Merge a partial patch into the current draft. */
|
|
8478
8566
|
update(patch: Partial<PptxPresentationProperties>): void;
|
|
@@ -8496,7 +8584,7 @@ declare class ShowSlidesFieldsetComponent {
|
|
|
8496
8584
|
/** Current slide-show properties draft. */
|
|
8497
8585
|
readonly draft: _angular_core.InputSignal<PptxPresentationProperties>;
|
|
8498
8586
|
/** Derived active mode (falls back to 'all' upstream). */
|
|
8499
|
-
readonly showSlidesMode: _angular_core.InputSignal<"
|
|
8587
|
+
readonly showSlidesMode: _angular_core.InputSignal<"range" | "all" | "customShow">;
|
|
8500
8588
|
/** Total number of slides in the deck (clamps the range inputs). */
|
|
8501
8589
|
readonly slideCount: _angular_core.InputSignal<number>;
|
|
8502
8590
|
/** Named custom shows defined by the deck (may be empty). */
|
|
@@ -9467,5 +9555,5 @@ type TranslationKey = keyof typeof translationsEn;
|
|
|
9467
9555
|
*/
|
|
9468
9556
|
declare function keyToLabel(key: string): string;
|
|
9469
9557
|
|
|
9470
|
-
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 };
|
|
9558
|
+
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, vermilionDarkColors, vermilionDarkTheme, vermilionLightColors, vermilionLightTheme, vermilionRadius, waypointsToPathD, worstStatus };
|
|
9471
9559
|
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 };
|