pptx-angular-viewer 1.1.54 → 1.1.56
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 +11 -0
- package/fesm2022/pptx-angular-viewer.mjs +5194 -2213
- package/fesm2022/pptx-angular-viewer.mjs.map +1 -1
- package/package.json +3 -2
- package/types/pptx-angular-viewer.d.ts +56 -23
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pptx-angular-viewer",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.56",
|
|
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,12 +45,13 @@
|
|
|
45
45
|
"html2canvas-pro": "^2.0.4",
|
|
46
46
|
"jspdf": "^4.2.1",
|
|
47
47
|
"jszip": "^3.10.1",
|
|
48
|
-
"pptx-viewer-core": "^1.1.
|
|
48
|
+
"pptx-viewer-core": "^1.1.47",
|
|
49
49
|
"tslib": "^2.8.1"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
52
|
"@angular/common": "^22.0.1",
|
|
53
53
|
"@angular/core": "^22.0.1",
|
|
54
|
+
"@ngx-translate/core": "^18.0.0",
|
|
54
55
|
"rxjs": "^7.8.0",
|
|
55
56
|
"three": "^0.185.0"
|
|
56
57
|
},
|
|
@@ -391,10 +391,11 @@ declare function ommlToMathml(omml: OmmlNode | string): string;
|
|
|
391
391
|
* Vue, and Angular consume one source of truth instead of duplicating the
|
|
392
392
|
* (long) option arrays.
|
|
393
393
|
*
|
|
394
|
-
*
|
|
395
|
-
*
|
|
396
|
-
*
|
|
397
|
-
*
|
|
394
|
+
* Each option carries both a plain-ASCII `label` (for non-i18n consumers) and
|
|
395
|
+
* a `labelKey` (a `pptx.chart.*` dotted key resolvable via each binding's
|
|
396
|
+
* translation function, defined in `pptx-viewer-shared/i18n`). The `labelKey`
|
|
397
|
+
* values mirror React's local `chart-panel-constants.ts`, which keeps its own
|
|
398
|
+
* copy of these tables for historical reasons but resolves to the same keys.
|
|
398
399
|
*/
|
|
399
400
|
|
|
400
401
|
/** Display units selectable for a value axis (empty string = none). */
|
|
@@ -419,6 +420,7 @@ type ChartGridlineDashValue = '' | 'solid' | 'dash' | 'dot' | 'dashDot' | 'lgDas
|
|
|
419
420
|
interface ChartOption<V> {
|
|
420
421
|
value: V;
|
|
421
422
|
label: string;
|
|
423
|
+
labelKey: string;
|
|
422
424
|
}
|
|
423
425
|
|
|
424
426
|
/**
|
|
@@ -2981,7 +2983,7 @@ type MobileBarSheet = 'slides' | 'inspector' | 'comments' | 'notes' | null;
|
|
|
2981
2983
|
/** Internal action descriptor used to build the bar. */
|
|
2982
2984
|
interface BarAction {
|
|
2983
2985
|
key: NonNullable<MobileBarSheet> | 'insert';
|
|
2984
|
-
|
|
2986
|
+
labelKey: string;
|
|
2985
2987
|
/** SVG path data for the icon (24 × 24 view-box). */
|
|
2986
2988
|
svgPath: string;
|
|
2987
2989
|
disabled: boolean;
|
|
@@ -3703,8 +3705,8 @@ declare class PowerPointViewerComponent {
|
|
|
3703
3705
|
protected readonly inspectorPaneOpen: _angular_core.Signal<boolean>;
|
|
3704
3706
|
/** Inspector content, but null on mobile once the user has swiped it away. */
|
|
3705
3707
|
protected readonly visibleInspectorKind: _angular_core.Signal<"slide" | "element" | "comments" | "accessibility" | "signatures" | "selection" | null>;
|
|
3706
|
-
/** Accessible
|
|
3707
|
-
protected readonly inspectorLabel: _angular_core.Signal<"" | "
|
|
3708
|
+
/** Accessible-label translation key for the inspector host, by active content. */
|
|
3709
|
+
protected readonly inspectorLabel: _angular_core.Signal<"" | "pptx.toolbar.comments" | "pptx.accessibility.title" | "pptx.viewer.digitalSignatures" | "pptx.selectionPane.title" | "pptx.viewer.elementProperties" | "pptx.viewer.slideProperties">;
|
|
3708
3710
|
/**
|
|
3709
3711
|
* Which mobile bottom-bar slot is currently "active" (highlighted). The
|
|
3710
3712
|
* comments panel maps to the Comments slot; an open notes strip maps to
|
|
@@ -4921,6 +4923,7 @@ declare class SmartArtRendererComponent {
|
|
|
4921
4923
|
*/
|
|
4922
4924
|
private readonly editor;
|
|
4923
4925
|
private readonly injector;
|
|
4926
|
+
private readonly translate;
|
|
4924
4927
|
/** The node currently being edited on the canvas, or null. */
|
|
4925
4928
|
protected readonly editState: _angular_core.WritableSignal<InlineEditState | null>;
|
|
4926
4929
|
/** The mounted `<textarea>` for the active node edit, if any. */
|
|
@@ -6103,11 +6106,11 @@ declare class TableCellAdvancedFillComponent {
|
|
|
6103
6106
|
readonly styleChange: _angular_core.OutputEmitterRef<Partial<PptxTableCellStyle>>;
|
|
6104
6107
|
protected readonly fillModes: {
|
|
6105
6108
|
value: "none" | "solid" | "gradient" | "pattern";
|
|
6106
|
-
|
|
6109
|
+
i18nKey: string;
|
|
6107
6110
|
}[];
|
|
6108
6111
|
protected readonly gradientTypes: {
|
|
6109
6112
|
value: string;
|
|
6110
|
-
|
|
6113
|
+
i18nKey: string;
|
|
6111
6114
|
}[];
|
|
6112
6115
|
protected readonly patterns: ("horz" | "vert" | "pct5" | "pct10" | "pct20" | "pct25" | "pct30" | "pct40" | "pct50" | "pct60" | "pct70" | "pct75" | "pct80" | "pct90" | "ltHorz" | "dkHorz" | "narHorz" | "wdHorz" | "ltVert" | "dkVert" | "narVert" | "wdVert" | "dashHorz" | "dashVert" | "cross" | "dnDiag" | "ltDnDiag" | "dkDnDiag" | "wdDnDiag" | "dashDnDiag" | "upDiag" | "ltUpDiag" | "dkUpDiag" | "wdUpDiag" | "dashUpDiag" | "diagCross" | "smCheck" | "lgCheck" | "smGrid" | "lgGrid" | "dotGrid" | "smConfetti" | "lgConfetti" | "horzBrick" | "diagBrick" | "solidDmnd" | "openDmnd" | "dotDmnd" | "plaid" | "sphere" | "weave" | "divot" | "shingle" | "wave" | "trellis" | "zigZag")[];
|
|
6113
6116
|
protected readonly margins: ReadonlyArray<{
|
|
@@ -6229,6 +6232,7 @@ declare class ChartDataLabelOptionsComponent {
|
|
|
6229
6232
|
protected readonly contentOptions: readonly {
|
|
6230
6233
|
key: ChartDataLabelContentKey;
|
|
6231
6234
|
label: string;
|
|
6235
|
+
labelKey: string;
|
|
6232
6236
|
}[];
|
|
6233
6237
|
protected readonly positionOptions: readonly ChartOption<ChartDataLabelPositionValue>[];
|
|
6234
6238
|
protected readonly style: _angular_core.Signal<pptx_viewer_core.PptxChartStyle>;
|
|
@@ -6239,10 +6243,10 @@ declare class ChartDataLabelOptionsComponent {
|
|
|
6239
6243
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ChartDataLabelOptionsComponent, "pptx-chart-data-label-options", never, { "element": { "alias": "element"; "required": true; "isSignal": true; }; "canEdit": { "alias": "canEdit"; "required": false; "isSignal": true; }; }, { "elementChange": "elementChange"; }, never, never, true, never>;
|
|
6240
6244
|
}
|
|
6241
6245
|
|
|
6242
|
-
/** Axis kinds the inspector exposes, with their label and whether they scale. */
|
|
6246
|
+
/** Axis kinds the inspector exposes, with their label key and whether they scale. */
|
|
6243
6247
|
interface AxisRow$1 {
|
|
6244
6248
|
type: PptxChartAxisType;
|
|
6245
|
-
|
|
6249
|
+
labelKey: string;
|
|
6246
6250
|
hasScale: boolean;
|
|
6247
6251
|
axis: PptxChartAxisFormatting;
|
|
6248
6252
|
}
|
|
@@ -6252,7 +6256,7 @@ declare class ChartAxisOptionsComponent {
|
|
|
6252
6256
|
readonly elementChange: _angular_core.OutputEmitterRef<ChartPptxElement>;
|
|
6253
6257
|
protected readonly scaleFields: readonly {
|
|
6254
6258
|
key: "min" | "max" | "majorUnit" | "minorUnit";
|
|
6255
|
-
|
|
6259
|
+
labelKey: string;
|
|
6256
6260
|
}[];
|
|
6257
6261
|
protected readonly displayUnitOptions: readonly ChartOption<ChartDisplayUnitsValue>[];
|
|
6258
6262
|
protected readonly tickPositionOptions: readonly ChartOption<ChartTickLabelPosition>[];
|
|
@@ -6272,7 +6276,7 @@ declare class ChartAxisOptionsComponent {
|
|
|
6272
6276
|
|
|
6273
6277
|
interface AxisRow {
|
|
6274
6278
|
type: PptxChartAxisType;
|
|
6275
|
-
|
|
6279
|
+
labelKey: string;
|
|
6276
6280
|
hasScale: boolean;
|
|
6277
6281
|
axis: PptxChartAxisFormatting;
|
|
6278
6282
|
}
|
|
@@ -6401,35 +6405,43 @@ declare class AnimationAuthorPanelComponent {
|
|
|
6401
6405
|
protected readonly entrancePresets: readonly {
|
|
6402
6406
|
value: PptxAnimationPreset;
|
|
6403
6407
|
label: string;
|
|
6408
|
+
labelKey: string;
|
|
6404
6409
|
}[];
|
|
6405
6410
|
protected readonly exitPresets: readonly {
|
|
6406
6411
|
value: PptxAnimationPreset;
|
|
6407
6412
|
label: string;
|
|
6413
|
+
labelKey: string;
|
|
6408
6414
|
}[];
|
|
6409
6415
|
protected readonly emphasisPresets: readonly {
|
|
6410
6416
|
value: PptxAnimationPreset;
|
|
6411
6417
|
label: string;
|
|
6418
|
+
labelKey: string;
|
|
6412
6419
|
}[];
|
|
6413
6420
|
protected readonly triggerOptions: readonly {
|
|
6414
6421
|
value: PptxAnimationTrigger;
|
|
6415
6422
|
label: string;
|
|
6423
|
+
labelKey: string;
|
|
6416
6424
|
}[];
|
|
6417
6425
|
protected readonly timingCurveOptions: readonly {
|
|
6418
6426
|
value: PptxAnimationTimingCurve;
|
|
6419
6427
|
label: string;
|
|
6428
|
+
labelKey: string;
|
|
6420
6429
|
}[];
|
|
6421
6430
|
protected readonly repeatModeOptions: readonly {
|
|
6422
6431
|
value: "none" | PptxAnimationRepeatMode;
|
|
6423
6432
|
label: string;
|
|
6433
|
+
labelKey: string;
|
|
6424
6434
|
}[];
|
|
6425
6435
|
protected readonly directionOptions: readonly {
|
|
6426
6436
|
value: PptxAnimationDirection;
|
|
6427
6437
|
label: string;
|
|
6438
|
+
labelKey: string;
|
|
6428
6439
|
arrow: string;
|
|
6429
6440
|
}[];
|
|
6430
6441
|
protected readonly sequenceOptions: readonly {
|
|
6431
6442
|
value: PptxAnimationSequence;
|
|
6432
6443
|
label: string;
|
|
6444
|
+
labelKey: string;
|
|
6433
6445
|
}[];
|
|
6434
6446
|
/**
|
|
6435
6447
|
* Changes only when a *different* element is selected. Used as the
|
|
@@ -6492,8 +6504,8 @@ declare class AnimationAuthorPanelComponent {
|
|
|
6492
6504
|
/** Descriptor for a single menu row. */
|
|
6493
6505
|
interface MenuRow {
|
|
6494
6506
|
key: string;
|
|
6495
|
-
|
|
6496
|
-
|
|
6507
|
+
labelKey: string;
|
|
6508
|
+
sublabelKey?: string;
|
|
6497
6509
|
/** SVG path data (24 × 24 view-box). */
|
|
6498
6510
|
svgPath: string;
|
|
6499
6511
|
disabled?: boolean;
|
|
@@ -7462,7 +7474,9 @@ declare class BroadcastDialogComponent {
|
|
|
7462
7474
|
readonly serverUrl: _angular_core.WritableSignal<string>;
|
|
7463
7475
|
readonly copied: _angular_core.WritableSignal<boolean>;
|
|
7464
7476
|
readonly canStart: _angular_core.Signal<boolean>;
|
|
7465
|
-
readonly
|
|
7477
|
+
private readonly broadcastingTitle;
|
|
7478
|
+
private readonly startTitle;
|
|
7479
|
+
readonly dialogTitle: _angular_core.Signal<any>;
|
|
7466
7480
|
readonly canCopy: _angular_core.Signal<boolean>;
|
|
7467
7481
|
constructor();
|
|
7468
7482
|
asValue(event: Event): string;
|
|
@@ -7559,7 +7573,7 @@ declare class EquationEditorDialogComponent {
|
|
|
7559
7573
|
/** True when editing an existing equation (drives the title / button label). */
|
|
7560
7574
|
readonly isEditing: _angular_core.Signal<boolean>;
|
|
7561
7575
|
/** Header title: edit vs insert. */
|
|
7562
|
-
readonly dialogTitle: _angular_core.Signal<"
|
|
7576
|
+
readonly dialogTitle: _angular_core.Signal<"pptx.equation.editTitle" | "pptx.equation.insertTitle">;
|
|
7563
7577
|
/** Live OMML compiled from the current LaTeX ({} on failure / empty input). */
|
|
7564
7578
|
private readonly omml;
|
|
7565
7579
|
/** Whether there is a renderable equation (drives preview + insert enabling). */
|
|
@@ -7601,6 +7615,7 @@ declare class EquationTemplateGalleryComponent {
|
|
|
7601
7615
|
/** Templates with pre-computed MathML previews (built once). */
|
|
7602
7616
|
protected readonly templates: ReadonlyArray<EquationTemplate & {
|
|
7603
7617
|
mathml: SafeHtml;
|
|
7618
|
+
i18nKey: string;
|
|
7604
7619
|
}>;
|
|
7605
7620
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EquationTemplateGalleryComponent, never>;
|
|
7606
7621
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<EquationTemplateGalleryComponent, "pptx-equation-template-gallery", never, { "activeLatex": { "alias": "activeLatex"; "required": false; "isSignal": true; }; }, { "select": "select"; }, never, never, true, never>;
|
|
@@ -7945,7 +7960,6 @@ declare class KeepAnnotationsDialogComponent {
|
|
|
7945
7960
|
readonly keep: _angular_core.OutputEmitterRef<void>;
|
|
7946
7961
|
/** Fired when the user discards the annotations (also on dismiss). */
|
|
7947
7962
|
readonly discard: _angular_core.OutputEmitterRef<void>;
|
|
7948
|
-
readonly description: _angular_core.Signal<string>;
|
|
7949
7963
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KeepAnnotationsDialogComponent, never>;
|
|
7950
7964
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<KeepAnnotationsDialogComponent, "pptx-keep-annotations-dialog", never, { "open": { "alias": "open"; "required": false; "isSignal": true; }; "annotationCount": { "alias": "annotationCount"; "required": false; "isSignal": true; }; "slideCount": { "alias": "slideCount"; "required": false; "isSignal": true; }; }, { "keep": "keep"; "discard": "discard"; }, never, never, true, never>;
|
|
7951
7965
|
}
|
|
@@ -7959,7 +7973,6 @@ declare class SignatureStrippedDialogComponent {
|
|
|
7959
7973
|
readonly confirm: _angular_core.OutputEmitterRef<void>;
|
|
7960
7974
|
/** Fired when the user backs out (also on dismiss). */
|
|
7961
7975
|
readonly cancel: _angular_core.OutputEmitterRef<void>;
|
|
7962
|
-
readonly message: _angular_core.Signal<string>;
|
|
7963
7976
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SignatureStrippedDialogComponent, never>;
|
|
7964
7977
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SignatureStrippedDialogComponent, "pptx-signature-stripped-dialog", never, { "open": { "alias": "open"; "required": false; "isSignal": true; }; "signatureCount": { "alias": "signatureCount"; "required": false; "isSignal": true; }; }, { "confirm": "confirm"; "cancel": "cancel"; }, never, never, true, never>;
|
|
7965
7978
|
}
|
|
@@ -8058,15 +8071,15 @@ declare class PrintSettingsPanelComponent {
|
|
|
8058
8071
|
protected readonly handoutOptions: HandoutSlidesPerPage[];
|
|
8059
8072
|
protected readonly printWhatOptions: {
|
|
8060
8073
|
value: PrintWhat;
|
|
8061
|
-
|
|
8074
|
+
labelKey: string;
|
|
8062
8075
|
}[];
|
|
8063
8076
|
protected readonly orientationOptions: {
|
|
8064
8077
|
value: PrintOrientation;
|
|
8065
|
-
|
|
8078
|
+
labelKey: string;
|
|
8066
8079
|
}[];
|
|
8067
8080
|
protected readonly colorModeOptions: {
|
|
8068
8081
|
value: PrintColorMode;
|
|
8069
|
-
|
|
8082
|
+
labelKey: string;
|
|
8070
8083
|
}[];
|
|
8071
8084
|
/** Emit a settings patch. */
|
|
8072
8085
|
emit(patch: Partial<PrintSettings>): void;
|
|
@@ -8181,6 +8194,9 @@ declare class PresentationSubtitleBarComponent implements OnChanges {
|
|
|
8181
8194
|
readonly visible: _angular_core.InputSignal<boolean>;
|
|
8182
8195
|
private readonly _captionText;
|
|
8183
8196
|
private readonly _supportState;
|
|
8197
|
+
/** Reactive translated caption strings (used inside the recognition wiring). */
|
|
8198
|
+
private readonly listeningLabel;
|
|
8199
|
+
private readonly notSupportedLabel;
|
|
8184
8200
|
/** The text string rendered in the caption bar. */
|
|
8185
8201
|
protected readonly displayText: _angular_core.WritableSignal<string>;
|
|
8186
8202
|
/**
|
|
@@ -8592,5 +8608,22 @@ declare function themeStyle(theme: ViewerTheme | undefined): Record<string, stri
|
|
|
8592
8608
|
type ClassValue = string | number | false | null | undefined;
|
|
8593
8609
|
declare function cn(...values: ClassValue[]): string;
|
|
8594
8610
|
|
|
8595
|
-
|
|
8611
|
+
/**
|
|
8612
|
+
* The canonical English UI-string dictionary for pptx-viewer. None of the
|
|
8613
|
+
* React/Vue/Angular binding packages ship translations themselves - each
|
|
8614
|
+
* only calls its framework's translation function (react-i18next's `t()`,
|
|
8615
|
+
* vue-i18n's `t()`, ngx-translate's `TranslateService`/`translate` pipe)
|
|
8616
|
+
* against dotted `pptx.*` keys. The host app supplies the dictionary; this
|
|
8617
|
+
* module is that dictionary for the demos, shared so all three stay in sync
|
|
8618
|
+
* instead of drifting into three separate copies.
|
|
8619
|
+
*/
|
|
8620
|
+
declare const translationsEn: Record<string, string>;
|
|
8621
|
+
/**
|
|
8622
|
+
* Convert a dotted translation key to a human-readable label when no
|
|
8623
|
+
* explicit dictionary entry exists yet. Takes the last segment and converts
|
|
8624
|
+
* camelCase to Title Case, e.g. "pptx.slideSorter.zoomIn" -> "Zoom In".
|
|
8625
|
+
*/
|
|
8626
|
+
declare function keyToLabel(key: string): string;
|
|
8627
|
+
|
|
8628
|
+
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 };
|
|
8596
8629
|
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, VideoPlanOptions, VideoSegmentPlan, ViewerTheme, ViewerThemeColors };
|