pptx-angular-viewer 2.9.0 → 2.11.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.
@@ -1,8 +1,8 @@
1
1
  import * as pptx_viewer_core from 'pptx-viewer-core';
2
- import { PptxThemePreset, PptxSlide, PptxElement, ShapeStyle, PptxTextWarpPreset, XmlObject, PptxChartSeries, PptxChartData, PptxElementAnimation, PptxAnimationPreset, PptxAnimationDirection, PptxAnimationRepeatMode, PptxAnimationSequence, PptxAnimationTimingCurve, PptxAnimationTrigger, ParsedTableStyleMap, PptxThemeColorScheme, PptxThemeFontScheme, TablePptxElement, PptxSection, OlePptxElement, TextSegment, TextStyle, PptxTransitionType, PptxSlideTransition, SmartArtColorScheme, PptxSmartArtChrome, PptxSmartArtDrawingShape, SmartArtStyle, PptxSmartArtData, PptxEmbeddedFont, SmartArtLayout, AccessibilityIssueSeverity, AccessibilityIssue, AccessibilityIssueType, AccessibilityCheckOptions, ElementActionType, InkPptxElement, PptxComment, PptxChartType, PptxTheme, PptxHandler, PptxData, PptxHeaderFooter, PptxSlideMaster, PptxNotesMaster, PptxHandoutMaster, PptxPresentationProperties, PptxCoreProperties, PptxAppProperties, PptxThemeOption, PptxCustomProperty, PptxTagCollection, ParsedSignature, PptxSaveFormat, PptxTableCell, PptxTableCellStyle, PptxTableRow, PptxTableData, PptxCustomShow, MasterViewTab, SvgExportOptions, Model3DPptxElement, ZoomPptxElement, ChartPptxElement, MediaPptxElement, SmartArtPptxElement, MaterialPresetType, Text3DStyle, BevelPresetType, PptxChartDataLabelOptions, PptxChartAxisType, PptxChartAxisFormatting, PptxChartDataPoint, PptxChartTrendline, PptxChartErrBars, SignatureStatus, ElementAction, PptxImageEffects, MediaBookmark, ColorMapAliasKey, ChartAxisEdit, ChartDataPointLabelEdit, PptxChartLegendPosition, PptxChartStyle, ChartAxisTitleStyleEdit, ChartGridlineStyleEdit, PptxChartMarkerSymbol, PptxSmartArtNode, SmartArtLayoutType, PptxSmartArtNodeStyle, MediaCaptionTrack, PptxMediaType } from 'pptx-viewer-core';
2
+ import { PptxThemePreset, PptxSlide, PptxElement, ShapeStyle, PptxTextWarpPreset, XmlObject, PptxChartSeries, PptxChartData, PptxElementAnimation, PptxAnimationPreset, PptxAnimationDirection, PptxAnimationRepeatMode, PptxAnimationSequence, PptxAnimationTimingCurve, PptxAnimationTrigger, ParsedTableStyleMap, PptxThemeColorScheme, PptxThemeFontScheme, TablePptxElement, PptxSection, OlePptxElement, TextSegment, TextStyle, PptxTransitionType, PptxSlideTransition, SmartArtColorScheme, PptxSmartArtChrome, PptxSmartArtDrawingShape, SmartArtStyle, PptxSmartArtData, PptxEmbeddedFont, SmartArtLayout, AccessibilityIssueSeverity, AccessibilityIssue, AccessibilityIssueType, AccessibilityCheckOptions, ElementActionType, InkPptxElement, PptxComment, PptxChartType, PptxTheme, PptxHandler, PptxData, PptxHeaderFooter, PptxSlideMaster, PptxNotesMaster, PptxHandoutMaster, PptxPresentationProperties, PptxCoreProperties, PptxAppProperties, PptxThemeOption, PptxCustomProperty, PptxTagCollection, ParsedSignature, PptxSaveFormat, PptxTableCell, PptxTableCellStyle, PptxTableRow, PptxTableData, PptxCustomShow, MasterViewTab, SvgExportOptions, Model3DPptxElement, ZoomPptxElement, ChartPptxElement, MediaPptxElement, SmartArtPptxElement, MaterialPresetType, Text3DStyle, BevelPresetType, PptxChartDataLabelOptions, PptxChartAxisType, PptxChartAxisFormatting, PptxChartMarker, PptxChartDataPoint, PptxChartTrendline, PptxChartErrBars, SignatureStatus, ElementAction, PptxImageEffects, MediaBookmark, ColorMapAliasKey, ChartAxisEdit, ChartDataPointLabelEdit, PptxChartLegendPosition, PptxChartStyle, ChartAxisTitleStyleEdit, PptxChartMarkerSymbol, ChartGridlineStyleEdit, PptxSmartArtNode, SmartArtLayoutType, PptxSmartArtNodeStyle, MediaCaptionTrack, PptxMediaType } from 'pptx-viewer-core';
3
3
  export { SWITCHABLE_LAYOUT_TYPES, addSmartArtNode, addSmartArtNodeAsChild, chartDataAddCategory, chartDataAddSeries, chartDataChangeType, chartDataRemoveCategory, chartDataRemoveSeries, chartDataUpdatePoint, demoteSmartArtNode, promoteSmartArtNode, removeSmartArtNode, reorderSmartArtNode, switchSmartArtLayout, updateSmartArtNodeText } from 'pptx-viewer-core';
4
4
  import * as _angular_core from '@angular/core';
5
- import { Signal, WritableSignal, OnDestroy, OnInit, OnChanges, SimpleChanges, InjectionToken, Provider } from '@angular/core';
5
+ import { Signal, WritableSignal, OnDestroy, OnInit, AfterViewInit, OnChanges, SimpleChanges, InjectionToken, Provider } from '@angular/core';
6
6
  import * as AiSdk from 'ai';
7
7
  import { LanguageModel, ChatTransport, UIMessage, ToolSet } from 'ai';
8
8
  import * as pptx_angular_viewer from 'pptx-angular-viewer';
@@ -1475,7 +1475,11 @@ declare const DIRECTIONAL_PRESETS: Set<string>;
1475
1475
  declare function animationFor(slideAnimations: readonly PptxElementAnimation[], elementId: string): PptxElementAnimation | undefined;
1476
1476
  /**
1477
1477
  * Returns `true` when the element has at least one active effect (entrance,
1478
- * exit, or emphasis) in the slide's animation list.
1478
+ * exit, emphasis, or a motion path) in the slide's animation list.
1479
+ *
1480
+ * The motion path counts because it is driven by the same entry's timing
1481
+ * fields: without it, a motion-path-only element would hide its own
1482
+ * duration / delay / trigger controls.
1479
1483
  */
1480
1484
  declare function hasAnimation(slideAnimations: readonly PptxElementAnimation[], elementId: string): boolean;
1481
1485
  /**
@@ -1692,6 +1696,33 @@ interface ElementAnimationState {
1692
1696
  animatesStroke?: boolean;
1693
1697
  }
1694
1698
 
1699
+ /**
1700
+ * `motion-path-presets`: the authoring catalogue of PowerPoint motion-path
1701
+ * effects (Lines, Arcs, Turns, Shapes, Loops).
1702
+ *
1703
+ * WHY a path string and not a preset id: OOXML carries a motion path as free
1704
+ * form geometry in `p:animMotion/@path`; the integer `presetID` on a `path`
1705
+ * class node is informational and is NOT how PowerPoint reconstructs the
1706
+ * curve. So a preset here is a *named path string*, and applying one simply
1707
+ * writes that string onto the element's animation. Anything the user then
1708
+ * drags stays representable, and a deck authored elsewhere round-trips through
1709
+ * the same field.
1710
+ *
1711
+ * Coordinate space: the numbers are fractions of the SLIDE box, measured from
1712
+ * the animated element's own centre (`pathEditMode="relative"`), which is what
1713
+ * PowerPoint emits. `0.25 0` means "a quarter of the slide width to the right
1714
+ * of where the shape sits". Keeping the catalogue in the wire units means no
1715
+ * conversion happens on apply or save, only on render.
1716
+ *
1717
+ * The shapes/loops use x fractions of 0.125 against y fractions of 0.2222 so
1718
+ * they read as visually round on the 16:9 canvas the viewer renders at
1719
+ * (0.125 * 1280 === 0.2222 * 720 === 160 px).
1720
+ *
1721
+ * @module render/motion-path-presets
1722
+ */
1723
+ /** PowerPoint's five motion-path families, in ribbon order. */
1724
+ type MotionPathFamily = 'lines' | 'arcs' | 'turns' | 'shapes' | 'loops';
1725
+
1695
1726
  /**
1696
1727
  * table-style.ts — framework-agnostic table render helpers.
1697
1728
  *
@@ -1798,6 +1829,127 @@ interface CellCoord {
1798
1829
  */
1799
1830
  declare function setCellText(element: TablePptxElement, rowIndex: number, colIndex: number, text: string): TablePptxElement;
1800
1831
 
1832
+ /**
1833
+ * table-data-grid.ts: framework-agnostic render model for the inspector's table
1834
+ * data grid (the spreadsheet-like editor that edits table cell TEXT from the
1835
+ * sidebar, as opposed to on-canvas cell editing).
1836
+ *
1837
+ * The matching mutations live in `table-data-grid-ops.ts`; both are exported
1838
+ * from the package barrel and are one feature in two files, split only to stay
1839
+ * inside the repo's 300 LOC ceiling.
1840
+ *
1841
+ * WHY this model exists rather than each binding reading `tableData` directly:
1842
+ * the grid is the table analogue of the chart data grid every binding already
1843
+ * ships, and without a shared layer all five re-derive the same two awkward
1844
+ * details and drift apart.
1845
+ *
1846
+ * 1. **Ragged rows.** `PptxTableData.rows[i].cells` is not guaranteed to be
1847
+ * `columnWidths.length` long (merged spans and malformed decks both produce
1848
+ * short rows). A view that iterates `row.cells` renders a lopsided grid and
1849
+ * silently hides the trailing cells. `buildTableDataGrid` normalises every
1850
+ * row to exactly `colCount` entries so the view can iterate blindly.
1851
+ * 2. **The last-row/last-column floor.** A table may not be reduced to zero
1852
+ * rows or zero columns, so remove controls must be disabled at 1. Exposing
1853
+ * `canRemoveRow` / `canRemoveColumn` on the model keeps that rule in one
1854
+ * place instead of in five templates.
1855
+ *
1856
+ * @module render/table-data-grid
1857
+ */
1858
+
1859
+ /** One editable cell in the inspector grid, carrying its own coordinates. */
1860
+ interface TableDataGridCell {
1861
+ /** Zero-based row index within the table. */
1862
+ rowIndex: number;
1863
+ /** Zero-based column index within the table. */
1864
+ colIndex: number;
1865
+ /** Current plain-text content, `''` when the underlying cell is missing. */
1866
+ text: string;
1867
+ }
1868
+ /** One row of the inspector grid, normalised to the table's column count. */
1869
+ interface TableDataGridRow {
1870
+ /** Zero-based row index within the table. */
1871
+ rowIndex: number;
1872
+ /** Exactly `colCount` cells, left to right. */
1873
+ cells: TableDataGridCell[];
1874
+ }
1875
+ /** Everything a binding's table-data-grid view needs to render itself. */
1876
+ interface TableDataGridModel {
1877
+ /** Number of rows in the table. */
1878
+ rowCount: number;
1879
+ /** Number of columns, taken from `columnWidths` (the authoritative count). */
1880
+ colCount: number;
1881
+ /** `[0, 1, ... colCount - 1]`, so templates can render column headers. */
1882
+ colIndices: number[];
1883
+ /** Normalised rows; safe to iterate without bounds checks. */
1884
+ rows: TableDataGridRow[];
1885
+ /** False when removing a row would empty the table (or there is no data). */
1886
+ canRemoveRow: boolean;
1887
+ /** False when removing a column would empty the table (or there is no data). */
1888
+ canRemoveColumn: boolean;
1889
+ }
1890
+
1891
+ /**
1892
+ * table-data-grid-ops.ts: element-level, immutable row/column/cell operations
1893
+ * behind the inspector's table data grid.
1894
+ *
1895
+ * Split out of `table-data-grid.ts` (which owns the render model and its types)
1896
+ * to keep both files inside the repo's 300 LOC ceiling. Import either through
1897
+ * the package barrel; they are one feature in two files.
1898
+ *
1899
+ * WHY these wrap the primitives in `table-layout` rather than calling them
1900
+ * directly from a view:
1901
+ *
1902
+ * 1. **The "append / remove last" dance.** The grid's header buttons operate on
1903
+ * the END of the table, but the primitives are positional
1904
+ * (`insertTableRow(td, idx, 'below')`). Without these wrappers every binding
1905
+ * re-writes the same `count - 1` clamp and gets it wrong for an empty table.
1906
+ * 2. **rawXml synchronisation**, which is load-bearing: see {@link withTableData}.
1907
+ *
1908
+ * They take and return a whole `TablePptxElement` so an inspector can hand the
1909
+ * result straight to the binding's `updateElement` edit path as a single history
1910
+ * entry. The underlying transforms are the merge-AWARE ones in `table-layout`,
1911
+ * so existing merge spans are adjusted rather than destroyed.
1912
+ *
1913
+ * Every function is pure: the input element is never mutated.
1914
+ *
1915
+ * @module render/table-data-grid-ops
1916
+ */
1917
+
1918
+ /**
1919
+ * Insert a blank row above or below `rowIdx`, preserving merge spans.
1920
+ *
1921
+ * @param element - The source table element (not mutated).
1922
+ * @param rowIdx - Zero-based reference row.
1923
+ * @param position - Whether the new row goes above or below the reference row.
1924
+ * @returns A new element with the row inserted.
1925
+ */
1926
+ declare function insertTableElementRow(element: TablePptxElement, rowIdx: number, position: 'above' | 'below'): TablePptxElement;
1927
+ /**
1928
+ * Remove the row at `rowIdx`, preserving merge spans. No-op on the last row.
1929
+ *
1930
+ * @param element - The source table element (not mutated).
1931
+ * @param rowIdx - Zero-based row to remove.
1932
+ * @returns A new element with the row removed.
1933
+ */
1934
+ declare function removeTableElementRow(element: TablePptxElement, rowIdx: number): TablePptxElement;
1935
+ /**
1936
+ * Insert a blank column left or right of `colIdx`, preserving merge spans.
1937
+ *
1938
+ * @param element - The source table element (not mutated).
1939
+ * @param colIdx - Zero-based reference column.
1940
+ * @param position - Whether the new column goes left or right of the reference.
1941
+ * @returns A new element with the column inserted.
1942
+ */
1943
+ declare function insertTableElementColumn(element: TablePptxElement, colIdx: number, position: 'left' | 'right'): TablePptxElement;
1944
+ /**
1945
+ * Remove the column at `colIdx`, preserving merge spans. No-op on the last one.
1946
+ *
1947
+ * @param element - The source table element (not mutated).
1948
+ * @param colIdx - Zero-based column to remove.
1949
+ * @returns A new element with the column removed.
1950
+ */
1951
+ declare function removeTableElementColumn(element: TablePptxElement, colIdx: number): TablePptxElement;
1952
+
1801
1953
  /**
1802
1954
  * table-style-presets.ts - framework-agnostic table style preset catalogue.
1803
1955
  *
@@ -4149,6 +4301,98 @@ declare function sampleColorFromSlide(clientX: number, clientY: number): Eyedrop
4149
4301
  */
4150
4302
  declare function pickColorByClickFallback(): Promise<string | null>;
4151
4303
 
4304
+ /** Whether the reading view is on screen, and which slide it is showing. */
4305
+ interface ReadingViewState {
4306
+ open: boolean;
4307
+ /** Zero-based index into the deck's visible slides. */
4308
+ slideIndex: number;
4309
+ }
4310
+ /** A navigation intent a binding can raise from a key, a click or a tap. */
4311
+ type ReadingViewCommand = {
4312
+ command: 'next';
4313
+ } | {
4314
+ command: 'previous';
4315
+ } | {
4316
+ command: 'first';
4317
+ } | {
4318
+ command: 'last';
4319
+ }
4320
+ /** Jump to a zero-based slide index. */
4321
+ | {
4322
+ command: 'goto';
4323
+ slideIndex: number;
4324
+ } | {
4325
+ command: 'exit';
4326
+ } | {
4327
+ command: 'none';
4328
+ };
4329
+
4330
+ /**
4331
+ * PowerPoint's Outline view, as a framework-agnostic model of the deck's text.
4332
+ *
4333
+ * Outline view shows a deck as an indented text document: one line per slide
4334
+ * title at the far left, that slide's body text indented beneath it. It is the
4335
+ * fastest way to draft or restructure a deck, and no binding shipped it.
4336
+ *
4337
+ * This module owns the READ half (deck -> rows) plus the paragraph read/write
4338
+ * primitives the edit half builds on. `outline-view-edit` owns the WRITE half.
4339
+ * Both are pure: the bindings own the markup and the event listeners, and own
4340
+ * no rule about what a row is or what Tab does.
4341
+ *
4342
+ * Three decisions are worth stating up front, because they are the ones a
4343
+ * reader will otherwise assume were oversights:
4344
+ *
4345
+ * 1. **Placeholders first, then a fallback.** PowerPoint's outline shows only
4346
+ * placeholder text, and free text boxes never appear. Applying that alone
4347
+ * here would blank the outline for the many decks (and every deck this repo
4348
+ * hand-authors as a fixture) that carry no `<p:ph>` at all, which reads as a
4349
+ * broken feature rather than as fidelity. So placeholders win when present,
4350
+ * and a slide with none falls back to its text-bearing elements in document
4351
+ * order. See {@link resolveSlideOutlineElements}.
4352
+ * 2. **A slide always contributes at least one row.** A slide with no title
4353
+ * placeholder, or no text whatsoever, still gets a title row (with a null
4354
+ * `elementId`). Without it the outline silently hides slides, and hiding a
4355
+ * slide from the view whose entire job is to show the deck's structure is
4356
+ * the worst failure this feature has.
4357
+ * 3. **A row is one (element, paragraph) pair**, keyed by ids rather than by
4358
+ * position, so a key survives an edit that inserts a slide above it.
4359
+ *
4360
+ * @module render/outline-view
4361
+ */
4362
+
4363
+ /** Whether a row carries the slide's title or one of its body lines. */
4364
+ type OutlineRowKind = 'title' | 'body';
4365
+ /** One editable line of the outline. */
4366
+ interface OutlineRow {
4367
+ /**
4368
+ * Stable identity of the row: slide id, element id and paragraph index.
4369
+ *
4370
+ * Deliberately NOT the slide index: inserting a slide above this one must
4371
+ * not move a caret that is sitting in a row further down.
4372
+ */
4373
+ key: string;
4374
+ /** Zero-based position of the row's slide in the deck. */
4375
+ slideIndex: number;
4376
+ slideId: string;
4377
+ kind: OutlineRowKind;
4378
+ /**
4379
+ * Element the row's text lives in, or `null` for the synthetic title row of
4380
+ * a slide that has no text at all. Typing into a null-element row creates
4381
+ * the element (see `applyOutlineEdit`).
4382
+ */
4383
+ elementId: string | null;
4384
+ /** Zero-based paragraph index within {@link elementId}. */
4385
+ paragraphIndex: number;
4386
+ /**
4387
+ * Indent level as the outline shows it: `0` for a title, `1..9` for body
4388
+ * text. Body level `n` is the authored `a:pPr/@lvl` of `n - 1`, which is why
4389
+ * a top-level bullet is level 1 and not level 0: in the outline the title
4390
+ * occupies the leftmost column.
4391
+ */
4392
+ level: number;
4393
+ text: string;
4394
+ }
4395
+
4152
4396
  /**
4153
4397
  * The one definition of what the canvas context menu contains.
4154
4398
  *
@@ -6813,6 +7057,37 @@ declare class MobileBottomBarComponent {
6813
7057
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<MobileBottomBarComponent, "pptx-mobile-bottom-bar", never, { "slideCount": { "alias": "slideCount"; "required": false; "isSignal": true; }; "commentCount": { "alias": "commentCount"; "required": false; "isSignal": true; }; "activeSheet": { "alias": "activeSheet"; "required": false; "isSignal": true; }; }, { "openSlides": "openSlides"; "insert": "insert"; "openFormat": "openFormat"; "openComments": "openComments"; "notes": "notes"; }, never, never, true, never>;
6814
7058
  }
6815
7059
 
7060
+ /** The deck after an outline edit, plus the slide the editor should land on. */
7061
+ interface OutlineCommit {
7062
+ slides: PptxSlide[];
7063
+ activeSlideIndex: number;
7064
+ }
7065
+ declare class OutlineViewOverlayComponent {
7066
+ /** The editable (template-free) deck. See the class docstring for why. */
7067
+ readonly slides: _angular_core.InputSignal<readonly PptxSlide[]>;
7068
+ readonly canvasSize: _angular_core.InputSignal<CanvasSize>;
7069
+ readonly canEdit: _angular_core.InputSignal<boolean>;
7070
+ /** Emits the deck after an edit, so the host records ONE undo entry. */
7071
+ readonly commit: _angular_core.OutputEmitterRef<OutlineCommit>;
7072
+ readonly closed: _angular_core.OutputEmitterRef<void>;
7073
+ protected readonly INDENT_PX = 22;
7074
+ protected readonly rows: _angular_core.Signal<OutlineRow[]>;
7075
+ private readonly rowsHost;
7076
+ protected onInput(event: Event, key: string): void;
7077
+ protected onRowKeyDown(event: KeyboardEvent, key: string): void;
7078
+ private run;
7079
+ /**
7080
+ * Restore the caret after the host has re-fed the new deck.
7081
+ *
7082
+ * Deferred to a microtask because the row that should take focus may not
7083
+ * exist yet: a new slide's title row only enters the DOM once change
7084
+ * detection has run over the committed deck.
7085
+ */
7086
+ private focusRow;
7087
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<OutlineViewOverlayComponent, never>;
7088
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<OutlineViewOverlayComponent, "pptx-outline-view-overlay", never, { "slides": { "alias": "slides"; "required": false; "isSignal": true; }; "canvasSize": { "alias": "canvasSize"; "required": true; "isSignal": true; }; "canEdit": { "alias": "canEdit"; "required": false; "isSignal": true; }; }, { "commit": "commit"; "closed": "closed"; }, never, never, true, never>;
7089
+ }
7090
+
6816
7091
  /** BroadcastChannel name shared between presenter and audience tabs. */
6817
7092
  declare const PRESENTER_CHANNEL_NAME = "pptx-viewer-presenter";
6818
7093
  /** Unique origin identifier so we only react to our own messages. */
@@ -8500,6 +8775,13 @@ declare class PowerPointViewerComponent {
8500
8775
  protected readonly rootStyle: _angular_core.Signal<Record<string, string>>;
8501
8776
  /** Slide-sorter grid overlay visibility. */
8502
8777
  protected readonly showSorter: _angular_core.WritableSignal<boolean>;
8778
+ /**
8779
+ * Reading View visibility: the deck at full window size with the editor
8780
+ * chrome cut back to a nav bar. Not the slide show (no fullscreen, no
8781
+ * pointer tools, no presenter console).
8782
+ */
8783
+ protected readonly showReadingView: _angular_core.WritableSignal<boolean>;
8784
+ protected readonly showOutlineView: _angular_core.WritableSignal<boolean>;
8503
8785
  /** Full-canvas master editor visibility and active target. */
8504
8786
  protected readonly showMasterView: _angular_core.WritableSignal<boolean>;
8505
8787
  protected readonly masterViewTab: _angular_core.WritableSignal<MasterViewTab>;
@@ -8510,7 +8792,7 @@ declare class PowerPointViewerComponent {
8510
8792
  /** Whether periodic autosave is enabled (title-bar AutoSave toggle; default on). */
8511
8793
  protected readonly autosaveEnabled: _angular_core.WritableSignal<boolean>;
8512
8794
  /** Active drawing tool (from the ribbon Draw tab). */
8513
- protected readonly activeDrawTool: _angular_core.WritableSignal<"pen" | "highlighter" | "eraser" | "select" | "freeform">;
8795
+ protected readonly activeDrawTool: _angular_core.WritableSignal<"select" | "pen" | "highlighter" | "eraser" | "freeform">;
8514
8796
  /** Active ink stroke colour. */
8515
8797
  protected readonly activeDrawColor: _angular_core.WritableSignal<string>;
8516
8798
  /** Active ink stroke width in stage pixels. */
@@ -8584,6 +8866,20 @@ declare class PowerPointViewerComponent {
8584
8866
  protected updateNotesMaster(master: PptxNotesMaster): void;
8585
8867
  protected updateHandoutMaster(master: PptxHandoutMaster): void;
8586
8868
  goTo(index: number): void;
8869
+ /**
8870
+ * Leave Reading View on the slide the reader ended on, which is what leaving
8871
+ * any PowerPoint view does: the editor should not snap back to wherever it
8872
+ * was when the reader entered.
8873
+ */
8874
+ protected closeReadingView(slideIndex: number): void;
8875
+ /**
8876
+ * Commit an outline edit as ONE undoable entry.
8877
+ *
8878
+ * `applyReplacement` rather than `setSlides`: the latter resets the undo
8879
+ * stack and the selection, which would make every keystroke in the outline
8880
+ * throw away the user's history.
8881
+ */
8882
+ protected onOutlineCommit(commit: OutlineCommit): void;
8587
8883
  goPrev(): void;
8588
8884
  protected onCreatePresentation(templateId: string): void;
8589
8885
  /**
@@ -8645,6 +8941,14 @@ declare class PowerPointViewerComponent {
8645
8941
  id: string;
8646
8942
  additive: boolean;
8647
8943
  }): void;
8944
+ /**
8945
+ * Commit a motion path dragged on the canvas.
8946
+ *
8947
+ * `setMotionPath` rather than a preset apply: the dragged geometry no longer
8948
+ * matches any catalogue entry, and it is written onto the SAME animation
8949
+ * entry the preset buckets use, so the element's entrance survives the edit.
8950
+ */
8951
+ protected onMotionPathChange(path: string): void;
8648
8952
  /** Context-menu "Ask AI about this": scope + open the assistant, empty composer. */
8649
8953
  protected onContextMenuAskAi(): void;
8650
8954
  /** Context-menu "Fix with AI": scope + open the assistant with a prefilled directive. */
@@ -9640,6 +9944,9 @@ declare class RibbonComponent {
9640
9944
  readonly a11y: _angular_core.OutputEmitterRef<void>;
9641
9945
  readonly link: _angular_core.OutputEmitterRef<void>;
9642
9946
  readonly openSorter: _angular_core.OutputEmitterRef<void>;
9947
+ /** View tab > Reading View: the deck full-window, not the slide show. */
9948
+ readonly openReadingView: _angular_core.OutputEmitterRef<void>;
9949
+ readonly openOutlineView: _angular_core.OutputEmitterRef<void>;
9643
9950
  readonly openMasterView: _angular_core.OutputEmitterRef<void>;
9644
9951
  readonly toggleNotes: _angular_core.OutputEmitterRef<void>;
9645
9952
  readonly toggleFormatPainter: _angular_core.OutputEmitterRef<void>;
@@ -9698,7 +10005,7 @@ declare class RibbonComponent {
9698
10005
  /** Forward the Review proofing toggle to the viewer-owned live state. */
9699
10006
  protected setSpellCheck(enabled: boolean): void;
9700
10007
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<RibbonComponent, never>;
9701
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<RibbonComponent, "pptx-ribbon", never, { "slideIndex": { "alias": "slideIndex"; "required": false; "isSignal": true; }; "slideCount": { "alias": "slideCount"; "required": false; "isSignal": true; }; "canEdit": { "alias": "canEdit"; "required": false; "isSignal": true; }; "selectedElement": { "alias": "selectedElement"; "required": false; "isSignal": true; }; "zoomPercent": { "alias": "zoomPercent"; "required": false; "isSignal": true; }; "formatPainterActive": { "alias": "formatPainterActive"; "required": false; "isSignal": true; }; "canActivateFormatPainter": { "alias": "canActivateFormatPainter"; "required": false; "isSignal": true; }; "exporting": { "alias": "exporting"; "required": false; "isSignal": true; }; "hasMacros": { "alias": "hasMacros"; "required": false; "isSignal": true; }; "showGrid": { "alias": "showGrid"; "required": false; "isSignal": true; }; "showRulers": { "alias": "showRulers"; "required": false; "isSignal": true; }; "showGuides": { "alias": "showGuides"; "required": false; "isSignal": true; }; "snapToGrid": { "alias": "snapToGrid"; "required": false; "isSignal": true; }; "snapToShape": { "alias": "snapToShape"; "required": false; "isSignal": true; }; "eyedropperActive": { "alias": "eyedropperActive"; "required": false; "isSignal": true; }; "themeGalleryOpen": { "alias": "themeGalleryOpen"; "required": false; "isSignal": true; }; "sidebarCollapsed": { "alias": "sidebarCollapsed"; "required": false; "isSignal": true; }; "inspectorOpen": { "alias": "inspectorOpen"; "required": false; "isSignal": true; }; "commentsOpen": { "alias": "commentsOpen"; "required": false; "isSignal": true; }; "commentCount": { "alias": "commentCount"; "required": false; "isSignal": true; }; "findOpen": { "alias": "findOpen"; "required": false; "isSignal": true; }; "collabConnected": { "alias": "collabConnected"; "required": false; "isSignal": true; }; "connectedCount": { "alias": "connectedCount"; "required": false; "isSignal": true; }; "spellCheckEnabled": { "alias": "spellCheckEnabled"; "required": false; "isSignal": true; }; "showSubtitles": { "alias": "showSubtitles"; "required": false; "isSignal": true; }; "hiddenActions": { "alias": "hiddenActions"; "required": false; "isSignal": true; }; "aiEnabled": { "alias": "aiEnabled"; "required": false; "isSignal": true; }; "aiPanelOpen": { "alias": "aiPanelOpen"; "required": false; "isSignal": true; }; "accountAuth": { "alias": "accountAuth"; "required": false; "isSignal": true; }; }, { "prev": "prev"; "next": "next"; "zoomIn": "zoomIn"; "zoomOut": "zoomOut"; "zoomReset": "zoomReset"; "find": "find"; "present": "present"; "presenter": "presenter"; "record": "record"; "presentFromBeginning": "presentFromBeginning"; "rehearseTimings": "rehearseTimings"; "toggleSubtitles": "toggleSubtitles"; "openSubtitleSettings": "openSubtitleSettings"; "recordFromBeginning": "recordFromBeginning"; "recordFromCurrent": "recordFromCurrent"; "spellCheckChange": "spellCheckChange"; "share": "share"; "broadcast": "broadcast"; "openFile": "openFile"; "openRecentFile": "openRecentFile"; "createPresentation": "createPresentation"; "save": "save"; "savePpsx": "savePpsx"; "savePptm": "savePptm"; "packageForSharing": "packageForSharing"; "toggleSidebar": "toggleSidebar"; "toggleAiPanel": "toggleAiPanel"; "signatures": "signatures"; "info": "info"; "print": "print"; "comments": "comments"; "a11y": "a11y"; "link": "link"; "openSorter": "openSorter"; "openMasterView": "openMasterView"; "toggleNotes": "toggleNotes"; "toggleFormatPainter": "toggleFormatPainter"; "exportPng": "exportPng"; "exportPdf": "exportPdf"; "exportGif": "exportGif"; "exportVideo": "exportVideo"; "copySlideAsImage": "copySlideAsImage"; "replace": "replace"; "toggleInspector": "toggleInspector"; "drawToolChange": "drawToolChange"; "toggleThemeGallery": "toggleThemeGallery"; "toggleGrid": "toggleGrid"; "toggleRulers": "toggleRulers"; "toggleGuides": "toggleGuides"; "toggleSelectionPane": "toggleSelectionPane"; "openCustomShows": "openCustomShows"; "toggleSnapToGrid": "toggleSnapToGrid"; "toggleSnapToShape": "toggleSnapToShape"; "addGuide": "addGuide"; "zoomToFit": "zoomToFit"; "toggleEyedropper": "toggleEyedropper"; "openSmartArtDialog": "openSmartArtDialog"; "openEquationDialog": "openEquationDialog"; "openSetUpSlideShow": "openSetUpSlideShow"; "openCompare": "openCompare"; "openPassword": "openPassword"; "openFontEmbedding": "openFontEmbedding"; "openVersionHistory": "openVersionHistory"; "openShortcuts": "openShortcuts"; "openSettings": "openSettings"; }, never, never, true, never>;
10008
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<RibbonComponent, "pptx-ribbon", never, { "slideIndex": { "alias": "slideIndex"; "required": false; "isSignal": true; }; "slideCount": { "alias": "slideCount"; "required": false; "isSignal": true; }; "canEdit": { "alias": "canEdit"; "required": false; "isSignal": true; }; "selectedElement": { "alias": "selectedElement"; "required": false; "isSignal": true; }; "zoomPercent": { "alias": "zoomPercent"; "required": false; "isSignal": true; }; "formatPainterActive": { "alias": "formatPainterActive"; "required": false; "isSignal": true; }; "canActivateFormatPainter": { "alias": "canActivateFormatPainter"; "required": false; "isSignal": true; }; "exporting": { "alias": "exporting"; "required": false; "isSignal": true; }; "hasMacros": { "alias": "hasMacros"; "required": false; "isSignal": true; }; "showGrid": { "alias": "showGrid"; "required": false; "isSignal": true; }; "showRulers": { "alias": "showRulers"; "required": false; "isSignal": true; }; "showGuides": { "alias": "showGuides"; "required": false; "isSignal": true; }; "snapToGrid": { "alias": "snapToGrid"; "required": false; "isSignal": true; }; "snapToShape": { "alias": "snapToShape"; "required": false; "isSignal": true; }; "eyedropperActive": { "alias": "eyedropperActive"; "required": false; "isSignal": true; }; "themeGalleryOpen": { "alias": "themeGalleryOpen"; "required": false; "isSignal": true; }; "sidebarCollapsed": { "alias": "sidebarCollapsed"; "required": false; "isSignal": true; }; "inspectorOpen": { "alias": "inspectorOpen"; "required": false; "isSignal": true; }; "commentsOpen": { "alias": "commentsOpen"; "required": false; "isSignal": true; }; "commentCount": { "alias": "commentCount"; "required": false; "isSignal": true; }; "findOpen": { "alias": "findOpen"; "required": false; "isSignal": true; }; "collabConnected": { "alias": "collabConnected"; "required": false; "isSignal": true; }; "connectedCount": { "alias": "connectedCount"; "required": false; "isSignal": true; }; "spellCheckEnabled": { "alias": "spellCheckEnabled"; "required": false; "isSignal": true; }; "showSubtitles": { "alias": "showSubtitles"; "required": false; "isSignal": true; }; "hiddenActions": { "alias": "hiddenActions"; "required": false; "isSignal": true; }; "aiEnabled": { "alias": "aiEnabled"; "required": false; "isSignal": true; }; "aiPanelOpen": { "alias": "aiPanelOpen"; "required": false; "isSignal": true; }; "accountAuth": { "alias": "accountAuth"; "required": false; "isSignal": true; }; }, { "prev": "prev"; "next": "next"; "zoomIn": "zoomIn"; "zoomOut": "zoomOut"; "zoomReset": "zoomReset"; "find": "find"; "present": "present"; "presenter": "presenter"; "record": "record"; "presentFromBeginning": "presentFromBeginning"; "rehearseTimings": "rehearseTimings"; "toggleSubtitles": "toggleSubtitles"; "openSubtitleSettings": "openSubtitleSettings"; "recordFromBeginning": "recordFromBeginning"; "recordFromCurrent": "recordFromCurrent"; "spellCheckChange": "spellCheckChange"; "share": "share"; "broadcast": "broadcast"; "openFile": "openFile"; "openRecentFile": "openRecentFile"; "createPresentation": "createPresentation"; "save": "save"; "savePpsx": "savePpsx"; "savePptm": "savePptm"; "packageForSharing": "packageForSharing"; "toggleSidebar": "toggleSidebar"; "toggleAiPanel": "toggleAiPanel"; "signatures": "signatures"; "info": "info"; "print": "print"; "comments": "comments"; "a11y": "a11y"; "link": "link"; "openSorter": "openSorter"; "openReadingView": "openReadingView"; "openOutlineView": "openOutlineView"; "openMasterView": "openMasterView"; "toggleNotes": "toggleNotes"; "toggleFormatPainter": "toggleFormatPainter"; "exportPng": "exportPng"; "exportPdf": "exportPdf"; "exportGif": "exportGif"; "exportVideo": "exportVideo"; "copySlideAsImage": "copySlideAsImage"; "replace": "replace"; "toggleInspector": "toggleInspector"; "drawToolChange": "drawToolChange"; "toggleThemeGallery": "toggleThemeGallery"; "toggleGrid": "toggleGrid"; "toggleRulers": "toggleRulers"; "toggleGuides": "toggleGuides"; "toggleSelectionPane": "toggleSelectionPane"; "openCustomShows": "openCustomShows"; "toggleSnapToGrid": "toggleSnapToGrid"; "toggleSnapToShape": "toggleSnapToShape"; "addGuide": "addGuide"; "zoomToFit": "zoomToFit"; "toggleEyedropper": "toggleEyedropper"; "openSmartArtDialog": "openSmartArtDialog"; "openEquationDialog": "openEquationDialog"; "openSetUpSlideShow": "openSetUpSlideShow"; "openCompare": "openCompare"; "openPassword": "openPassword"; "openFontEmbedding": "openFontEmbedding"; "openVersionHistory": "openVersionHistory"; "openShortcuts": "openShortcuts"; "openSettings": "openSettings"; }, never, never, true, never>;
9702
10009
  }
9703
10010
 
9704
10011
  /** The eight resize-handle positions around a selection box. */
@@ -9972,7 +10279,7 @@ declare class SlideCanvasComponent implements SlideContext {
9972
10279
  */
9973
10280
  readonly aiPickMode: _angular_core.InputSignal<boolean>;
9974
10281
  /** Active draw tool. When not 'select', pointer gestures draw ink strokes. */
9975
- readonly drawTool: _angular_core.InputSignal<"pen" | "highlighter" | "eraser" | "select" | "freeform">;
10282
+ readonly drawTool: _angular_core.InputSignal<"select" | "pen" | "highlighter" | "eraser" | "freeform">;
9976
10283
  /** Active ink stroke colour (CSS colour string). */
9977
10284
  readonly drawColor: _angular_core.InputSignal<string>;
9978
10285
  /** Active ink stroke width in stage pixels. */
@@ -12086,6 +12393,59 @@ declare class SlideSorterOverlayComponent {
12086
12393
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<SlideSorterOverlayComponent, "pptx-slide-sorter-overlay", never, { "slides": { "alias": "slides"; "required": true; "isSignal": true; }; "canvasSize": { "alias": "canvasSize"; "required": true; "isSignal": true; }; "mediaDataUrls": { "alias": "mediaDataUrls"; "required": false; "isSignal": true; }; "activeIndex": { "alias": "activeIndex"; "required": false; "isSignal": true; }; }, { "select": "select"; "closed": "closed"; }, never, never, true, never>;
12087
12394
  }
12088
12395
 
12396
+ declare class ReadingViewOverlayComponent implements OnInit, AfterViewInit, OnDestroy {
12397
+ /**
12398
+ * The deck to read, template (master/layout) elements already merged in. The
12399
+ * host passes its merged display deck rather than a separate template layer:
12400
+ * the reader navigates inside this overlay, so a single "active slide's
12401
+ * template elements" array would paint slide 1's master over slide 2.
12402
+ */
12403
+ readonly slides: _angular_core.InputSignal<readonly PptxSlide[]>;
12404
+ readonly canvasSize: _angular_core.InputSignal<CanvasSize>;
12405
+ readonly mediaDataUrls: _angular_core.InputSignal<Map<string, string>>;
12406
+ /** Slide the editor was on when Reading View was entered. */
12407
+ readonly activeSlideIndex: _angular_core.InputSignal<number>;
12408
+ /** Emits the slide the reader ended on, so the editor lands there. */
12409
+ readonly exit: _angular_core.OutputEmitterRef<number>;
12410
+ /** Whether the view is on screen and which slide it shows (shared state). */
12411
+ protected readonly state: _angular_core.WritableSignal<ReadingViewState>;
12412
+ private readonly viewportRef;
12413
+ /** Measured size of the area the slide is fitted into, in CSS pixels. */
12414
+ private readonly viewport;
12415
+ /**
12416
+ * PowerPoint's "type a slide number, then Enter" jump. One buffer per open
12417
+ * session, and every key mapped through it EXACTLY once: mapping mutates the
12418
+ * buffer, so a second call would swallow the digit it just accumulated.
12419
+ */
12420
+ private readonly keyBuffer;
12421
+ /** Bound once so the capture-phase listener can be removed again. */
12422
+ private readonly keyListener;
12423
+ private resizeObserver;
12424
+ ngOnInit(): void;
12425
+ ngAfterViewInit(): void;
12426
+ ngOnDestroy(): void;
12427
+ /** The slide on screen, or undefined when closed or the deck is empty. */
12428
+ protected readonly visibleSlide: _angular_core.Signal<PptxSlide | undefined>;
12429
+ /** Fit scale for the slide; 0 before the first layout pass. */
12430
+ protected readonly scale: _angular_core.Signal<number>;
12431
+ protected readonly stageWidth: _angular_core.Signal<number>;
12432
+ protected readonly stageHeight: _angular_core.Signal<number>;
12433
+ protected readonly counter: _angular_core.Signal<string>;
12434
+ protected readonly canPrevious: _angular_core.Signal<boolean>;
12435
+ protected readonly canNext: _angular_core.Signal<boolean>;
12436
+ /** Apply a navigation intent, handing the reader back to the editor on close. */
12437
+ protected run(command: ReadingViewCommand): void;
12438
+ /**
12439
+ * Window-level so no element has to hold focus, matching the slide show.
12440
+ * Writing {@link state} marks this `OnPush` view dirty and notifies Angular's
12441
+ * change-detection scheduler, so no manual `markForCheck` is needed even
12442
+ * though the listener is not a host binding.
12443
+ */
12444
+ protected onKeyDown(event: KeyboardEvent): void;
12445
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<ReadingViewOverlayComponent, never>;
12446
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ReadingViewOverlayComponent, "pptx-reading-view-overlay", never, { "slides": { "alias": "slides"; "required": false; "isSignal": true; }; "canvasSize": { "alias": "canvasSize"; "required": true; "isSignal": true; }; "mediaDataUrls": { "alias": "mediaDataUrls"; "required": false; "isSignal": true; }; "activeSlideIndex": { "alias": "activeSlideIndex"; "required": false; "isSignal": true; }; }, { "exit": "exit"; }, never, never, true, never>;
12447
+ }
12448
+
12089
12449
  declare class FindBarComponent {
12090
12450
  /** All slides in the current presentation. */
12091
12451
  readonly slides: _angular_core.InputSignal<PptxSlide[]>;
@@ -12669,10 +13029,19 @@ declare class TableDataEditorComponent {
12669
13029
  readonly elementChange: _angular_core.OutputEmitterRef<TablePptxElement>;
12670
13030
  /** Shared cell selection (drives the cell-formatting panel + context menu). */
12671
13031
  private readonly selection;
12672
- protected readonly rows: _angular_core.Signal<pptx_viewer_core.PptxTableRow[]>;
13032
+ /**
13033
+ * Normalised render model from `pptx-viewer-shared`. Using it (rather than
13034
+ * iterating `tableData.rows` directly) is what keeps ragged rows, which real
13035
+ * decks do contain, from rendering a lopsided grid with cells missing off the
13036
+ * right-hand edge.
13037
+ */
13038
+ protected readonly grid: _angular_core.Signal<TableDataGridModel>;
13039
+ protected readonly rows: _angular_core.Signal<TableDataGridRow[]>;
12673
13040
  protected readonly rowCount: _angular_core.Signal<number>;
12674
13041
  protected readonly colCount: _angular_core.Signal<number>;
12675
13042
  protected readonly colIndices: _angular_core.Signal<number[]>;
13043
+ protected readonly canRemoveRow: _angular_core.Signal<boolean>;
13044
+ protected readonly canRemoveColumn: _angular_core.Signal<boolean>;
12676
13045
  protected onCellChange(event: Event, rowIndex: number, colIndex: number): void;
12677
13046
  /** Focusing a cell selects it so the cell-formatting panel targets it. */
12678
13047
  protected onCellFocus(rowIndex: number, colIndex: number): void;
@@ -13071,6 +13440,28 @@ declare class ChartComboTypeOptionsComponent {
13071
13440
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<ChartComboTypeOptionsComponent, "pptx-chart-combo-type-options", never, { "element": { "alias": "element"; "required": true; "isSignal": true; }; "canEdit": { "alias": "canEdit"; "required": false; "isSignal": true; }; }, { "elementChange": "elementChange"; }, never, never, true, never>;
13072
13441
  }
13073
13442
 
13443
+ declare class ChartDatapointMarkerOptionsComponent {
13444
+ readonly element: _angular_core.InputSignal<ChartPptxElement>;
13445
+ readonly canEdit: _angular_core.InputSignal<boolean>;
13446
+ readonly elementChange: _angular_core.OutputEmitterRef<ChartPptxElement>;
13447
+ protected readonly symbolOptions: ChartOption<ChartMarkerSymbolValue>[];
13448
+ private readonly seriesIndex;
13449
+ protected readonly series: _angular_core.Signal<PptxChartSeries[]>;
13450
+ protected readonly categories: _angular_core.Signal<string[]>;
13451
+ /** Clamp the picker: removing a series must not strand the index past the end. */
13452
+ protected readonly activeIndex: _angular_core.Signal<number>;
13453
+ protected readonly supported: _angular_core.Signal<boolean>;
13454
+ protected markerAt(pointIndex: number): PptxChartMarker | undefined;
13455
+ protected onSeries(event: Event): void;
13456
+ protected onToggle(pointIndex: number, event: Event): void;
13457
+ protected onSymbol(pointIndex: number, event: Event): void;
13458
+ protected onSize(pointIndex: number, event: Event): void;
13459
+ protected onFill(pointIndex: number, event: Event): void;
13460
+ private emit;
13461
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<ChartDatapointMarkerOptionsComponent, never>;
13462
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ChartDatapointMarkerOptionsComponent, "pptx-chart-datapoint-marker-options", never, { "element": { "alias": "element"; "required": true; "isSignal": true; }; "canEdit": { "alias": "canEdit"; "required": false; "isSignal": true; }; }, { "elementChange": "elementChange"; }, never, never, true, never>;
13463
+ }
13464
+
13074
13465
  declare class ChartDatapointOptionsComponent {
13075
13466
  readonly element: _angular_core.InputSignal<ChartPptxElement>;
13076
13467
  readonly canEdit: _angular_core.InputSignal<boolean>;
@@ -13223,6 +13614,15 @@ declare class AnimationAuthorPanelComponent {
13223
13614
  protected onEntranceChange(event: Event): void;
13224
13615
  protected onExitChange(event: Event): void;
13225
13616
  protected onEmphasisChange(event: Event): void;
13617
+ /**
13618
+ * Apply or clear the element's motion path.
13619
+ *
13620
+ * The path lives on the SAME animation entry as the preset buckets, so this
13621
+ * deliberately does not go through the preset setters: applying a path must
13622
+ * leave an existing entrance alone, and clearing one must drop the entry only
13623
+ * when nothing else is left on it. Both rules live in the shared helpers.
13624
+ */
13625
+ protected onMotionPathChange(presetId: string): void;
13226
13626
  protected onTriggerChange(event: Event): void;
13227
13627
  protected onTriggerShapeChange(event: Event): void;
13228
13628
  protected onDurationChange(event: Event): void;
@@ -13753,6 +14153,11 @@ declare class EquationRendererComponent {
13753
14153
  * Converts the OMML input to MathML and wraps it in a `SafeHtml` value so
13754
14154
  * Angular's `[innerHTML]` binding renders the `<math>` markup instead of
13755
14155
  * stripping it.
14156
+ *
14157
+ * `bypassSecurityTrustHtml` switches Angular's own sanitiser off, and the
14158
+ * OMML comes from an arbitrary deck, so the markup is run through the shared
14159
+ * `sanitizeMathMl` (DOMPurify, MathML + SVG profiles) first. That is the same
14160
+ * guarantee the other four bindings apply at their raw-HTML sinks.
13756
14161
  */
13757
14162
  readonly safeMathml: _angular_core.Signal<SafeHtml>;
13758
14163
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<EquationRendererComponent, never>;
@@ -14545,7 +14950,15 @@ declare class EquationEditorDialogComponent {
14545
14950
  * (the shared catalogue every binding's equation dialog renders).
14546
14951
  */
14547
14952
  declare const TEMPLATES: readonly pptx_angular_viewer.EquationTemplate[];
14548
- /** Convert a LaTeX string to a MathML markup string, empty on any failure. */
14953
+ /**
14954
+ * Convert a LaTeX string to a MathML markup string, empty on any failure.
14955
+ *
14956
+ * The result is DOMPurify-sanitised (MathML + SVG profiles) by shared before it
14957
+ * is returned. That matters here specifically: the Angular dialog and gallery
14958
+ * hand this string to `DomSanitizer.bypassSecurityTrustHtml`, which disables
14959
+ * Angular's own sanitiser, so this was previously the one binding injecting
14960
+ * unsanitised equation markup.
14961
+ */
14549
14962
  declare function latexToMathml(latex: string): string;
14550
14963
 
14551
14964
  declare class EquationTemplateGalleryComponent {
@@ -14966,7 +15379,7 @@ declare class AccountPageComponent {
14966
15379
  readonly accountAuth: _angular_core.InputSignal<AccountAuthConfig | undefined>;
14967
15380
  private readonly translate;
14968
15381
  protected readonly swatches: readonly string[];
14969
- protected readonly version = "2.8.0";
15382
+ protected readonly version = "2.10.0";
14970
15383
  protected readonly profile: _angular_core.WritableSignal<ViewerProfile>;
14971
15384
  protected readonly initial: _angular_core.Signal<string>;
14972
15385
  protected readonly usage: _angular_core.WritableSignal<LocalStorageUsageSummary | null>;
@@ -15847,6 +16260,15 @@ declare function setSeriesMarker(element: ChartPptxElement, seriesIndex: number,
15847
16260
  declare function setSeriesChartType(element: ChartPptxElement, seriesIndex: number, seriesType: PptxChartType | null): ChartPptxElement;
15848
16261
  /** Set or clear a per-data-point fill colour. */
15849
16262
  declare function setDataPointFill(element: ChartPptxElement, seriesIndex: number, pointIndex: number, color: string | null): ChartPptxElement;
16263
+ /**
16264
+ * Set or clear a per-data-point marker override (`c:dPt/c:marker`), which
16265
+ * replaces the series marker for that one point.
16266
+ */
16267
+ declare function setDataPointMarker(element: ChartPptxElement, seriesIndex: number, pointIndex: number, marker: {
16268
+ symbol?: PptxChartMarkerSymbol;
16269
+ size?: number;
16270
+ fillColor?: string;
16271
+ } | null): ChartPptxElement;
15850
16272
  /** Set or clear a per-data-point pie/doughnut slice explosion. */
15851
16273
  declare function setDataPointExplosion(element: ChartPptxElement, seriesIndex: number, pointIndex: number, explosion: number | null): ChartPptxElement;
15852
16274
  /**
@@ -16368,26 +16790,6 @@ declare function parseNodeTextarea(value: string, fallback: readonly string[]):
16368
16790
  * @module angular-viewer/table-data-helpers
16369
16791
  */
16370
16792
 
16371
- /**
16372
- * Insert a blank row above or below `rowIdx`, growing any vertical merge spans
16373
- * that straddle the insertion point (delegates to the shared `insertTableRow`).
16374
- */
16375
- declare function insertRow(element: TablePptxElement, rowIdx: number, position: 'above' | 'below'): TablePptxElement;
16376
- /**
16377
- * Delete the row at `rowIdx`, adjusting vertical merge spans. No-op (element
16378
- * returned unchanged) when the table has a single row.
16379
- */
16380
- declare function removeRow(element: TablePptxElement, rowIdx: number): TablePptxElement;
16381
- /**
16382
- * Insert a blank column left or right of `colIdx`, splitting the source column's
16383
- * width and growing horizontal merge spans (delegates to `insertTableColumn`).
16384
- */
16385
- declare function insertColumn(element: TablePptxElement, colIdx: number, position: 'left' | 'right'): TablePptxElement;
16386
- /**
16387
- * Delete the column at `colIdx`, adjusting horizontal merge spans and
16388
- * renormalising widths. No-op when the table has a single column.
16389
- */
16390
- declare function removeColumn(element: TablePptxElement, colIdx: number): TablePptxElement;
16391
16793
  /** Merge a rectangular selection of cells into their top-left anchor. */
16392
16794
  declare function mergeSelection(element: TablePptxElement, cells: CellCoord[]): TablePptxElement;
16393
16795
  /** Split the merged cell anchored at `(row, col)` back into individual cells. */
@@ -16449,8 +16851,20 @@ declare class RibbonAnimationsSectionComponent {
16449
16851
  readonly toggleInspector: _angular_core.OutputEmitterRef<void>;
16450
16852
  protected hasSel(): boolean;
16451
16853
  protected canAuthor(): boolean;
16854
+ /** The path the one-click "Path Animation" command applies. */
16855
+ protected readonly defaultMotionPathPresetId = "lineRight";
16452
16856
  /** Apply the preset a gallery button asked for. */
16453
16857
  protected onGalleryPick(pick: AnimationPresetPick): void;
16858
+ /**
16859
+ * Apply a catalogue motion path to the selected element.
16860
+ *
16861
+ * Separate from {@link addAnimation} because a path is written to the
16862
+ * `motionPath` field of the SAME animation entry the preset buckets use, not
16863
+ * to one of those buckets: applying a path must not wipe an entrance the
16864
+ * element already carries, and clearing that entrance later must not wipe
16865
+ * the path. The shared helper owns both rules.
16866
+ */
16867
+ protected applyMotionPath(presetId: string): void;
16454
16868
  /**
16455
16869
  * Add an animation preset to the selected element on the active slide.
16456
16870
  * Delegates to the immutable helpers in animation-author-helpers.ts and
@@ -16729,6 +17143,34 @@ declare function imageDimensions(dataUrl: string): Promise<{
16729
17143
  /** Open the native file picker for a single file of the given accept type. */
16730
17144
  declare function pickFile(accept: string, onFile: (file: File) => void): void;
16731
17145
 
17146
+ /** One gallery button: the catalogue path it applies plus the key naming it. */
17147
+ interface MotionPathEntry {
17148
+ id: string;
17149
+ labelKey: string;
17150
+ }
17151
+ /** One gallery column: a family caption plus the paths filed under it. */
17152
+ interface MotionPathColumn {
17153
+ family: MotionPathFamily;
17154
+ labelKey: string;
17155
+ presets: readonly MotionPathEntry[];
17156
+ }
17157
+ /**
17158
+ * The gallery's columns, in the shared catalogue's own (ribbon) order.
17159
+ *
17160
+ * Built once at module load: the catalogue is static, so recomputing it per
17161
+ * change-detection pass would allocate thirty view models for nothing.
17162
+ */
17163
+ declare const MOTION_PATH_COLUMNS: readonly MotionPathColumn[];
17164
+ declare class RibbonMotionPathGalleryComponent {
17165
+ /** True when the deck is not editable or nothing is selected. */
17166
+ readonly disabled: _angular_core.InputSignal<boolean>;
17167
+ /** Emits the catalogue preset id of the pressed path. */
17168
+ readonly applyMotionPath: _angular_core.OutputEmitterRef<string>;
17169
+ protected readonly columns: readonly MotionPathColumn[];
17170
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<RibbonMotionPathGalleryComponent, never>;
17171
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<RibbonMotionPathGalleryComponent, "pptx-ribbon-motion-path-gallery", never, { "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "applyMotionPath": "applyMotionPath"; }, never, never, true, never>;
17172
+ }
17173
+
16732
17174
  declare class RibbonInsertFieldsComponent {
16733
17175
  private readonly editor;
16734
17176
  private readonly translate;
@@ -16987,6 +17429,10 @@ declare class RibbonViewSectionComponent {
16987
17429
  readonly snapToShape: _angular_core.InputSignal<boolean>;
16988
17430
  readonly eyedropperActive: _angular_core.InputSignal<boolean>;
16989
17431
  readonly openSorter: _angular_core.OutputEmitterRef<void>;
17432
+ /** Enter Reading View: the deck full-window, NOT the fullscreen slide show. */
17433
+ readonly openReadingView: _angular_core.OutputEmitterRef<void>;
17434
+ /** Enter Outline view: the deck as editable indented text. */
17435
+ readonly openOutlineView: _angular_core.OutputEmitterRef<void>;
16990
17436
  readonly openMasterView: _angular_core.OutputEmitterRef<void>;
16991
17437
  readonly toggleGrid: _angular_core.OutputEmitterRef<void>;
16992
17438
  readonly toggleRulers: _angular_core.OutputEmitterRef<void>;
@@ -16998,7 +17444,7 @@ declare class RibbonViewSectionComponent {
16998
17444
  readonly zoomToFit: _angular_core.OutputEmitterRef<void>;
16999
17445
  readonly toggleEyedropper: _angular_core.OutputEmitterRef<void>;
17000
17446
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<RibbonViewSectionComponent, never>;
17001
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<RibbonViewSectionComponent, "pptx-ribbon-view-section", never, { "canEdit": { "alias": "canEdit"; "required": false; "isSignal": true; }; "showGrid": { "alias": "showGrid"; "required": false; "isSignal": true; }; "showRulers": { "alias": "showRulers"; "required": false; "isSignal": true; }; "showGuides": { "alias": "showGuides"; "required": false; "isSignal": true; }; "snapToGrid": { "alias": "snapToGrid"; "required": false; "isSignal": true; }; "snapToShape": { "alias": "snapToShape"; "required": false; "isSignal": true; }; "eyedropperActive": { "alias": "eyedropperActive"; "required": false; "isSignal": true; }; }, { "openSorter": "openSorter"; "openMasterView": "openMasterView"; "toggleGrid": "toggleGrid"; "toggleRulers": "toggleRulers"; "toggleGuides": "toggleGuides"; "toggleSelectionPane": "toggleSelectionPane"; "toggleSnapToGrid": "toggleSnapToGrid"; "toggleSnapToShape": "toggleSnapToShape"; "addGuide": "addGuide"; "zoomToFit": "zoomToFit"; "toggleEyedropper": "toggleEyedropper"; }, never, never, true, never>;
17447
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<RibbonViewSectionComponent, "pptx-ribbon-view-section", never, { "canEdit": { "alias": "canEdit"; "required": false; "isSignal": true; }; "showGrid": { "alias": "showGrid"; "required": false; "isSignal": true; }; "showRulers": { "alias": "showRulers"; "required": false; "isSignal": true; }; "showGuides": { "alias": "showGuides"; "required": false; "isSignal": true; }; "snapToGrid": { "alias": "snapToGrid"; "required": false; "isSignal": true; }; "snapToShape": { "alias": "snapToShape"; "required": false; "isSignal": true; }; "eyedropperActive": { "alias": "eyedropperActive"; "required": false; "isSignal": true; }; }, { "openSorter": "openSorter"; "openReadingView": "openReadingView"; "openOutlineView": "openOutlineView"; "openMasterView": "openMasterView"; "toggleGrid": "toggleGrid"; "toggleRulers": "toggleRulers"; "toggleGuides": "toggleGuides"; "toggleSelectionPane": "toggleSelectionPane"; "toggleSnapToGrid": "toggleSnapToGrid"; "toggleSnapToShape": "toggleSnapToShape"; "addGuide": "addGuide"; "zoomToFit": "zoomToFit"; "toggleEyedropper": "toggleEyedropper"; }, never, never, true, never>;
17002
17448
  }
17003
17449
 
17004
17450
  /**
@@ -17775,5 +18221,5 @@ declare const SEQUENCE_OPTIONS: ReadonlyArray<{
17775
18221
  labelKey: string;
17776
18222
  }>;
17777
18223
 
17778
- export { ALIGN_OPTIONS, ANIMATION_PRESET_CATEGORIES, AUDIENCE_HASH, AUDIENCE_NONCE_KEY, AVATAR_COLOR_SWATCHES, AccessibilityPanelComponent, AccessibilityService, AccountPageComponent, ActionSettingsPanelComponent, AdvancedChartEditorComponent, AiChangeOverlayComponent, AiChatPanelComponent, AiChatService, AiComposerComponent, AiFocusBarComponent, AiFocusHighlightOverlayComponent, AiMessageListComponent, AiPanelStore, AiProposalCardComponent, AiSettingsSectionComponent, AiToolCallCardComponent, AnimationAuthorPanelComponent, AnimationPanelComponent, AnimationPlaybackService, AutosaveService, BroadcastDialogComponent, CHART_EDITOR_STYLES, CURSOR_PALETTE, CanvasFitService, ChartAxisOptionsComponent, ChartAxisStyleOptionsComponent, ChartComboTypeOptionsComponent, ChartDataEditorComponent, ChartDataLabelOptionsComponent, ChartDatapointOptionsComponent, ChartDisplayOptionsComponent, ChartElementViewComponent, ChartErrorBarOptionsComponent, ChartMarkerOptionsComponent, ChartPartSelectionService, ChartPrimitivesComponent, ChartRendererComponent, ChartTrendlineOptionsComponent, CollaborationCursorsComponent, CollaborationService, ColorChangedImageComponent, CommentsPanelComponent, CommentsService, ComparePanelComponent, ConnectorRendererComponent, ConnectorTextOverlayComponent, CustomShowsComponent, DATA_TABLE_HEADER_H, DATA_TABLE_KEY_W, DATA_TABLE_PADDING, DATA_TABLE_ROW_H, DEFAULT_BOUNDS, DEFAULT_BROADCAST_SERVER_URL, DEFAULT_CANVAS_HEIGHT, DEFAULT_CANVAS_WIDTH, DEFAULT_COLOR_SCHEME, DEFAULT_FILL_COLOR, DEFAULT_LAYOUT, DEFAULT_PALETTE$1 as DEFAULT_PALETTE, DEFAULT_PRINT_SETTINGS, DEFAULT_SLIDE_BACKGROUND, DEFAULT_STROKE_COLOR, DEFAULT_STYLE, DEFAULT_TABLE_ROW_HEIGHT, DEFAULT_TEXT_COLOR, DEFAULT_VIEWER_PROFILE, DIRECTIONAL_PRESETS, DIRECTION_OPTIONS, DocumentPropertiesCardComponent, EMBEDDED_FONTS_STYLE_ID, EMPHASIS_PRESETS, ENTRANCE_PRESETS, TEMPLATES as EQUATION_TEMPLATES, EXIT_PRESETS, EditorContextMenuComponent, EditorHistory, EditorStateService, EditorToolbarComponent, EffectsPanelComponent, ElementRendererComponent, EmbeddedFontsService, EncryptedFileDialogComponent, EquationEditorDialogComponent, EquationRendererComponent, EquationTemplateGalleryComponent, ExportProgressModalComponent, ExportService, FieldContextService, FindBarComponent, FindReplaceBarComponent, FollowModeBarComponent, FontEmbeddingListComponent, FontEmbeddingPanelComponent, GALLERY_THEME_PRESETS, GradientPickerComponent, HANDOUT_OPTIONS, HeaderFooterDialogComponent, HyperlinkDialogComponent, ImagePropertiesPanelComponent, InkDrawingService, InkRendererComponent, InsertSmartArtDialogComponent, InspectorPaneHeaderComponent, InspectorPanelComponent, IsMobileService, KeepAnnotationsDialogComponent, LOCALE_CATALOG, LONG_PRESS_DURATION_MS, LONG_PRESS_MOVE_TOLERANCE_PX, LoadContentService, LocalPresencePublisher, MAX_ZOOM_SCALE, MIN_ZOOM_SCALE, MediaPreviewComponent, MediaPropertiesPanelComponent, MediaRendererComponent, MediaTrimTimelineComponent, MobileBottomBarComponent, MobileMenuSheetComponent, MobilePresenterViewComponent, MobileSheetComponent, MobileSlidesSheetComponent, MobileToolbarComponent, ModalDialogComponent, Model3DRendererComponent, NotesHandoutCardComponent, NotesPanelComponent, NotesToolbarComponent, OleRendererComponent, POWER_POINT_VIEWER_PROVIDERS, PRESENTER_CHANNEL_NAME, PRESENTER_MSG_ORIGIN, PX_PER_CM, PX_PER_INCH, PasswordProtectionDialogComponent, PasswordStrengthMeterComponent, PowerPointViewerComponent, PresentationAnnotationOverlayComponent, PresentationAnnotationsService, PresentationOverlayComponent, PresentationPropertiesPanelComponent, PresentationSettingsCardComponent, PresentationSubtitleBarComponent, PresentationTransitionOverlayComponent, PresenterViewComponent, PresenterWindowService, PrintDialogComponent, PrintService, PrintSettingsPanelComponent, PropertiesDialogComponent, REPEAT_MODE_OPTIONS, RESIZE_HANDLES, RULER_FONT_SIZE, RULER_THICKNESS, RemoteSelectionOverlayComponent, RibbonAnimationGalleryComponent, RibbonAnimationsSectionComponent, RibbonArrangeSectionComponent, RibbonColorPopoverComponent, RibbonComponent, RibbonDesignSectionComponent, RibbonDrawSectionComponent, RibbonDrawingGroupComponent, RibbonEditingSectionComponent, RibbonFileSectionComponent, RibbonFontControlsComponent, RibbonHomeSectionComponent, RibbonHyperlinkButtonComponent, RibbonInsertFieldsComponent, RibbonInsertSectionComponent, RibbonParagraphControlsComponent, RibbonPrimaryRowComponent, RibbonReviewSectionComponent, RibbonShapeExtrasComponent, RibbonSlideshowSectionComponent, RibbonTransitionsSectionComponent, RibbonViewSectionComponent, RulerGuidesService, SEQUENCE_OPTIONS, SEVERITY_GROUPS, SEVERITY_LABELS, SHORTCUT_REFERENCE_ITEMS, SLIDE_TRANSITION_KEYFRAMES, DEFAULT_PALETTE as SMARTART_DEFAULT_PALETTE, PALETTES as SMARTART_PALETTES, SMART_ART_COLOR_SCHEMES, SMART_ART_STYLE_OPTIONS, SUB_ITEM_LABEL, SVG_WARP_PRESETS, SWIPE_MAX_VERTICAL_PX, SWIPE_THRESHOLD_PX, SelectionPaneComponent, SetUpSlideShowDialogComponent, SettingsAppearanceTabComponent, SettingsDialogComponent, SettingsLanguageTabComponent, ShareDialogComponent, ShortcutPanelComponent, ShowOptionsFieldsetComponent, ShowSlidesFieldsetComponent, SignatureStrippedDialogComponent, SignaturesPanelComponent, SignaturesService, SlideBackgroundCardComponent, SlideCanvasComponent, SlideDefaultInspectorComponent, SlideDiffChangesComponent, SlideDiffRowComponent, SlideDiffThumbnailsComponent, SlideSizeCardComponent, SlideSorterOverlayComponent, SlideThemeOverridePanelComponent, SlideTransitionCardComponent, SlidesPanelComponent, SmartArt3DRendererComponent, SmartArt3DService, SmartArtPreviewComponent, SmartArtPropertiesComponent, SmartArtRendererComponent, StatusBarComponent, TABLE_STRUCTURE_TOGGLES, TEXT_3D_BOTTOM_BEVEL_KEYS, TEXT_3D_TOP_BEVEL_KEYS, TEXT_DIRECTION_OPTIONS, THEME_CATALOG, TIMING_CURVE_OPTIONS, TRIGGER_OPTIONS, TYPE_LABELS, TableCellAdvancedFillComponent, TableCellFormattingComponent, TableDataEditorComponent, TablePropertiesComponent, TableRendererComponent, TableResizeOverlayComponent, TableSelectionService, TagsCardComponent, Text3DBevelSectionComponent, Text3DPanelComponent, TextAdvancedPanelComponent, ThemeEditorFieldsComponent, ThemeGalleryComponent, ThemeSelectorCardComponent, TitleBarComponent, TransitionDirectionPickerComponent, TransitionPreviewComponent, VALIGN_OPTIONS, VIEWER_THEME, VersionHistoryPanelComponent, ViewerCanvasEditingService, ViewerCollabCursorService, ViewerCollaborationSessionService, ViewerCompareService, ViewerCustomShowsService, ViewerDialogsService, ViewerDocumentPropertiesService, ViewerExportService, ViewerExtraDialogsComponent, ViewerFileIOService, ViewerFindReplaceService, ViewerFormatPainterService, ViewerInspectorPanelService, ViewerKeyboardService, ViewerMobileSheetService, ViewerPresentationModeService, ViewerThemeGalleryService, ViewerTouchGesturesService, ViewerZoomService, WEBM_MIME_CANDIDATES, WriteBackScheduler, ZoomNavigationService, ZoomRendererComponent, ZoomTargetService, addCategory, addCommentToList, addGradientStopPatch, addItem, addSeries, addSubItem, advanceStep, aiToggleVisible, alignPatch, animationFor, animationPresetLabelKey, annotationMapToInkInserts, applyAcceptedDiff, applyAnimationPreset, applyFindReplacements, applyFormatToElement, applyMove, applyResize, applyTableStylePreset, asMediaElement, assignUserColor, attachTouchGestures, beginNodeEdit, bevelSizePatch, boolFromEvent, bringForward, bringToFront, buildBarActions, buildBroadcastConfig, buildBroadcastViewerUrl, buildCategoryLabels, buildCellParagraphs, buildChartViewModel, buildChatLogExport, buildChatLogMarkdown, buildChromeStyle, buildClearHyperlinkPatch, buildClickGroups, buildColStyles, buildCollaborationConfig, buildComboViewModel, buildCssGradientFromShapeStyle, buildDuotoneFilter, buildDuotoneFilterId, buildEmbeddedFontStyles, buildEquationElement, buildEquationSegment, buildFallbackViewModel, buildFontFaceRule, buildGradientFillCss, buildGridlinesAndLabels, buildHyperlinkPatch, buildInkContainerStyle, buildInkStrokes, buildLegend, buildModel3DContainerStyle, buildModel3DViewModel, buildOleActionModel, buildOleInfoRows, buildPatternFillCss, buildPrintHtmlDocument as buildPrintDocument, buildPropertiesPatch, buildRegionMapViewModel, buildSaveSlides, buildShareUrl, buildSmartArtInsertElement, buildSmartArtNodes, buildStockViewModel, buildSurfaceViewModel, buildTableViewModel, buildTreemapViewModel, buildTrimFragment, buildWaterfallViewModel, buildZeroLine, buildZoomContainerStyle, buildZoomViewModel, bulletIndentPx, canAddTopLevelNode, canGroupSelection, canRemoveTopLevelNode, canSetStrokeWidth, canStartBroadcast, canStartShare, canUngroupSelection, canUseClipboard, captionDisplayText, cellRunStyle, cellStyleToStyleMap, cellTdStyle, changeCountLabel, changeIcon, characterSpacingPatch, checkFontAvailable, clampCursorPosition, clampGifDimensions, clampIndex, clampNotesFontSize, clampScale, clampStep, clearAllLocalViewerData, clearAudienceContent, cn, collectAccessibilityIssues, collectElementText, collectSlideText, collectStoredChats, collectUsedFontFamilies, columnWidthStyle, commitNodeText, computeAlign, computeAxisTitlePrimitives, computeBarRects, computeBubbleRadius, computeCornerHandle, computeDataTablePrimitives, computeDistribute, computeDrawingViewBox, computeErrorBarPrimitives, computeFocusTargets, computeHandleBoxes, computeHandoutLayout, computeIsMobile, computeIsTablet, computeLinePoints, computeLinearRegression, computePageCount, computePieLayout, computePieSlicePath, computePieSlices, computePlotLayout, computeRSquared, computeRadarPoints, computeScatterDots, computeSelectionBoxes, computeSingleSelected, computeSlideIndices, computeSnap, computeStackedBarRects, computeStackedValueRange, computeTextLines, computeTimerProgress, computeTrendlinePrimitives, computeValueRange, convertOmmlToMathMl, copyFormatFromElement, countAccessibilityIssues, countAnnotationStrokes, createAngularAiBridge, createCustomShow, createSwipeDismissDrag, createWebrtcBundle, createWebsocketBundle, cssObjectToStyleMap, currentColorScheme, currentLayout, currentStyle, defaultCssVars, defaultRadius, defaultThemeColors, deleteElementsByIds, deleteVersion as deleteRecoveryVersion, demoteNode, deriveModel3DBlobUrl, derivePresenceList, describeSmartArtBounds, disableGlowPatch, disableInnerShadowPatch, disableOuterShadowPatch, disableReflectionPatch, disableSoftEdgePatch, duplicateElementById, durationOf, effectsStateOf, enableGlowPatch, enableInnerShadowPatch, enableOuterShadowPatch, enableReflectionPatch, enableSoftEdgePatch, encodeGif, estimatePageCount, evenColumnWidths, evenRowHeights, exitPresentationFullscreen, exportAiChatLogs, extractPathPoints, eyedropperAvailable, fillColorOf, findInSlides, findOwningSlideIndex, findSlideIndexByElementId, fitPolynomial, fitZoom, focusTargetChips, fontMimeForFormat, fontSizeOf, formatAutoNumber, formatAxisValue, formatBytes, formatCursorLabel, formatElapsed, formatFileSize, formatPropertyDate, formatTime, fpsToFrameIntervalMs, generateBroadcastRoomId, generateCommentId, generateCustomShowId, generatePressureCircles, generateTicks, getClrChangeParams, getContainerStyle, getDuotoneFilterDef, getImageSrc, getLocalStorageUsageSummary, getOleAriaLabel, getOleBadgeLabel, getOleDisplayName, getOleDownloadFileName, getOleTypeColor, getOleTypeLabel, getPasswordStrength, getPatternSvg, getPlaceholderStyle, getVersions as getRecoveryVersions, getResolvedShapeClipPath, getResolvedShapeClipPathFor, getShapeFillStrokeStyle, getSlideBackgroundStyle, getSlideTransitionAnimations, getSmartArtNodeBounds, getSpeechRecognitionCtor, getTextBlockStyle, getTextWarp, getTouchDistance, getWarpCategory, getWarpPath, gradientStateFromStyle, gradientStateOf, gradientStatePatch, gridColumns, groupElements, groupIssuesBySeverity, hasAnimation, hasCopyableFormat, hasExistingLink, hasExitedFullscreen, hasGradientFill, hasPressureVariation, hasVisibleSlideAfter, headerLabel, imageDimensions, inkViewBox, insertColumn, insertRow, interpolateWidth, isAudienceTab, isBold, isBrowserOpenableMime, isChildNode, isElementInteractive, isInjectableUrl, isItalic, isPpactionUrl, isPresenterMessage, isSigned, isTextElement, isTwoTableFocus, isUnderline, isUrlSafe, isValidRoomId, isViewportBackgroundPressTarget, isZoomActivationKey, issueTrackKey, issueTypeLabel, keyToLabel, latexToMathml, linePointsToSvgString, lineSpacingPatch, loadAudienceContent, mergeCaptionResults, mergeDown, mergeRight, mergeSelection, moveElementBy, moveNodeDown, moveNodeUp, msToFrameDelayCs, narrowToCircle, narrowToPolygon, narrowToRect, newChartElement, newEquationElement, newPresetShapeElement, newShapeElement, newSmartArtElement, newTableElement, newTextElement, nextVisibleIndex, nodeBold, nodeEditBox, nodeFillColor, nodeFontColor, nodeIdFromKey, nodeItalic, nodeStyle, normalizeFontFormat, normalizeSlidesPerPage, normalizeValue, numFromEvent, ommlToMathml, ooxmlDashToCssBorderStyle, openNativeEyeDropper, overallStatus, paletteColor, parseAudienceNonce, parseNodeTextarea, partitionSlides, patchChartData, patchChartStyle, patchTableData, patchTextStyle, pendingElementStyles, pickColorByClickFallback, pickFile, pickSupportedMimeType, planGifFrames, planVideoSegments, pointsToSvgPathD, presenceToCursors, presetByLayout, presetsForCategory, pressuresToWidths, prevVisibleIndex, projectDrawingShapes, promoteNode, provideViewerTheme, radarAngle, radarRingPoints, readAsDataUrl, recordWebm, redistributeColumnWidth, removeAnimation, removeCategory, removeColumn, removeCommentFromList, removeElementAnimation, removeGradientStopPatch, removeNode, removeRow, removeSeries, renderToCanvas, reorderAnimationDown, reorderAnimationUp, replaceInSlides, replaceMatch, requestPresentationFullscreen, resizeElement, resolveCaptionTracks, resolveChartKind, resolveFontVariant, resolveHyperlinkHref, resolveInteractiveElementId, resolveMediaSrc, resolveOleType, resolveParagraphBullet, resolvePresenterNotes, resolveProfileInitial, resolveRegionCode, resolveSlideAutoAdvanceMs, resolvePalette as resolveSmartArtPalette, resolveThemeCatalogEntry, resolveTransitionDuration, revealedElementStyles, routeOrthogonalConnector, rowStyle, rulerDragToGuidePosition, rulerHighlight, rulerStripTicks, sampleColorFromSlide, sanitizeColor, sanitizeSlideIndex, sanitizeUserName, saveViewerProfile, scanAvailableFonts, searchSlides, seedBroadcastFields, seedHyperlinkDraft, seedPropertiesDraft, seedShareFields, segmentFrameCount, selectValue, sendBackward, sendToBack, sequentialColorScale, serializeWriteBack, seriesColor, setAnimationEmphasis, setAnimationEntrance, setAnimationExit, setAxis, setAxisLogScale, setAxisTitleStyle, setCategoryLabel, setCellText, setColorScheme, setDataLabels, setDataPointExplosion, setDataPointFill, setDataPointLabel, setDelay, setDirection, setDuration, setElementPosition, setGridlineStyle, setLayout, setLegend, setNodeStyle, setNodeText, setRepeatCount, setRepeatMode, setSequence, setSeriesChartType, setSeriesColor, setSeriesErrorBars, setSeriesMarker, setSeriesName, setSeriesTrendline, setSeriesValue, setStyle, setTimingCurve, setTitle, setTrigger, setTriggerShapeId, shapeStylePatch, sheetAfterNavigate, shouldBlockClickAdvance, shouldUseSvgWarp, showDirectionPicker, showsTemplateAffordance, signatureCountLabel, signatureKey, signatureTimestamp, signerName, statusLabel as slideDiffStatusLabel, slideNumberOf, smartArtNodes, paletteColour as smartArtPaletteColour, snapToGridStep, splitCursorCell, splitMergedCell, statusKind, statusLabel$1 as statusLabel, storeAudienceContent, stringFromEvent, strokeColorOf, strokeToInkElement, strokeWidthOf, styleShadowFilter, textAdvancedPatch, textAdvancedStateFromStyle, textAdvancedStateOf, textColorOf, textDirectionPatch, textStyleOf, textStylePatch, themeStyle, themeToCssVars, thumbnailHeight, thumbnailZoom, toggleCommentResolvedInList, toggleNodeBold, toggleNodeItalic, toggleSheet, topLevelNodeCount, transformSelectedTextCase, translationsEn, ungroupElements, updateElementById, updateGlowPatch, updateGradientStopPatch, updateInnerShadowPatch, updateOuterShadowPatch, updateReflectionPatch, vAlignPatch, validatePassword, validatePrintSettings, validateRoomId, valueToY, vermilionDarkColors, vermilionDarkTheme, vermilionLightColors, vermilionLightTheme, vermilionRadius, waypointsToPathD, worstStatus, zoomTargetSlideIndex };
17779
- export type { AccessibilityIssueGroup, AccountAuthConfig, ActionDescriptor, AiCanvasHighlight, AiChatInitState, AiLogChat, AiLogExport, AiLogFormat, AiLogMessage, AiPanelSelectionAccessors, AlignBox, AlignMode, AnimationClickGroup, AnimationGroup, AnimationPresetCategory, AnimationPresetEntry, AnimationPresetPick, AnnotationInkInsert, AnnotationStroke, AttachTouchGesturesConfig, AwarenessLike, BarRect, Box, BridgeDeps, BroadcastConfig, BroadcastDefaults, CSSProperties, CanvasSize, CellCoord, CellParagraph, CellTextRun, ChartPartRef, ChartPartSelection, ChartValueDrag, ChartViewModel, ClassValue, ClrChangeParams, CollaborationConfig, CollaborationRole, RouterRect as ConnectorObstacle, RouterPoint as ConnectorPoint, ConnectorRouting, CopiedFormat, CornerHandleBox, CustomShow, CustomThemeEdit, DestroyableYDoc, DiagonalBorderInfo, DistributeMode, DocumentProperties, DrawingViewBox, DuotoneFilterDef, EffectsState, EmbeddedFontStyles, EquationTemplate, EyedropperResult, FindOptions, FindResult, FocusChip, FocusSelectionInput, GifFrame, GifFramePlan, GifPlanOptions, GlowState, GradientState, GradientStop$1 as GradientStop, GroupResult, HandleBox, HandoutSlidesPerPage, HyperlinkDraft, InkPoint, InkStroke, InlineEditState, InnerShadowState, LegendEntry, LinePoint, LinearFit, LocalIdentity, LocalStorageUsageSummary, LocaleCatalogEntry, MobileSheetKey, Model3DViewModel, NodeEditBox, NotesSegmentViewModel, ObjectUrlFactory, OleActionModel, OleInfoRow, OuterShadowState, OverallSignatureStatus, PartitionedSlides, PathPoint, PieSliceGeometry, PieSliceOptions, PlotLayout, PlotLayoutOptions, PositionUpdate, PowerPointViewerAPI, PptxAiBridge, PptxAiConfig, PptxAiConnection, PptxAiContextStrategy, PptxAiElementUpdate, PptxAiToolName, PptxAiUIMessage, PptxAiWritePolicy, PresentationTool, PresenterExitMessage, PresenterMessage, PresenterNotes, PresenterSlideChangeMessage, PressureCircle, PrintColorMode, PrintHtmlDocumentOptions as PrintDocumentOptions, PrintOrientation, PrintSettings, PrintSlideRange, PrintWhat, PropertiesDraft, ProposalView, ProviderBundle, ProviderLike, RadarPoint, RecordWebmOptions, RecoveryVersion, ReflectionState, RemoteCursor, SanitizedPresence as RemotePresence, RenderedShape, ReplaceResult, ResizeHandle, ResolvedCaptionTrack, ResolvedFontVariant, ResolvedOleType, RulerUnit, ScatterDot, SelectionBox, ShapeStyleChanges, ShareDefaults$1 as ShareDefaults, ShareFormFields, ShortcutReferenceItem, SignatureStatusKind, SlideInspectorTab, SlideTransitionAnimations, SmartArtInsertEvent, SmartArtNodeBounds, SnapBox, SnapGuide, SnapResult, SoftEdgeState, SpeechAlternative, SpeechRecognitionCtor, SpeechRecognitionEventLite, SpeechRecognitionLite, SpeechResult, SpeechResultList, SpeechSupportState, StagedProposal, StrokeToInkElementOpts, StyleMap, SupportedChartKind, SvgAreaGradient, SvgCircle, SvgLine, SvgPath, SvgPolygon, SvgPolyline, SvgPrimitive, SvgRect, SvgText, SwipeDismissDrag, TableBooleanFlag, TableCellSelection, TableCellViewModel, TableRowViewModel, TemplateElementsBySlideId, Text3DBevelKeys, TextAdvancedChanges, TextAdvancedState, TextStyleChanges, TextWarpCssDef, TextWarpDef, TextWarpPathDef, ThemeCatalogEntry, Tick, TimerProgress, ToolbarActionId, TouchGestureCallbacks, TranslationKey, UngroupResult, ValueRange, VideoPlanOptions, VideoSegmentPlan, ViewerMode, ViewerProfile, ViewerSettings, ViewerTheme, ViewerThemeColors, ZoomViewModel };
18224
+ export { ALIGN_OPTIONS, ANIMATION_PRESET_CATEGORIES, AUDIENCE_HASH, AUDIENCE_NONCE_KEY, AVATAR_COLOR_SWATCHES, AccessibilityPanelComponent, AccessibilityService, AccountPageComponent, ActionSettingsPanelComponent, AdvancedChartEditorComponent, AiChangeOverlayComponent, AiChatPanelComponent, AiChatService, AiComposerComponent, AiFocusBarComponent, AiFocusHighlightOverlayComponent, AiMessageListComponent, AiPanelStore, AiProposalCardComponent, AiSettingsSectionComponent, AiToolCallCardComponent, AnimationAuthorPanelComponent, AnimationPanelComponent, AnimationPlaybackService, AutosaveService, BroadcastDialogComponent, CHART_EDITOR_STYLES, CURSOR_PALETTE, CanvasFitService, ChartAxisOptionsComponent, ChartAxisStyleOptionsComponent, ChartComboTypeOptionsComponent, ChartDataEditorComponent, ChartDataLabelOptionsComponent, ChartDatapointMarkerOptionsComponent, ChartDatapointOptionsComponent, ChartDisplayOptionsComponent, ChartElementViewComponent, ChartErrorBarOptionsComponent, ChartMarkerOptionsComponent, ChartPartSelectionService, ChartPrimitivesComponent, ChartRendererComponent, ChartTrendlineOptionsComponent, CollaborationCursorsComponent, CollaborationService, ColorChangedImageComponent, CommentsPanelComponent, CommentsService, ComparePanelComponent, ConnectorRendererComponent, ConnectorTextOverlayComponent, CustomShowsComponent, DATA_TABLE_HEADER_H, DATA_TABLE_KEY_W, DATA_TABLE_PADDING, DATA_TABLE_ROW_H, DEFAULT_BOUNDS, DEFAULT_BROADCAST_SERVER_URL, DEFAULT_CANVAS_HEIGHT, DEFAULT_CANVAS_WIDTH, DEFAULT_COLOR_SCHEME, DEFAULT_FILL_COLOR, DEFAULT_LAYOUT, DEFAULT_PALETTE$1 as DEFAULT_PALETTE, DEFAULT_PRINT_SETTINGS, DEFAULT_SLIDE_BACKGROUND, DEFAULT_STROKE_COLOR, DEFAULT_STYLE, DEFAULT_TABLE_ROW_HEIGHT, DEFAULT_TEXT_COLOR, DEFAULT_VIEWER_PROFILE, DIRECTIONAL_PRESETS, DIRECTION_OPTIONS, DocumentPropertiesCardComponent, EMBEDDED_FONTS_STYLE_ID, EMPHASIS_PRESETS, ENTRANCE_PRESETS, TEMPLATES as EQUATION_TEMPLATES, EXIT_PRESETS, EditorContextMenuComponent, EditorHistory, EditorStateService, EditorToolbarComponent, EffectsPanelComponent, ElementRendererComponent, EmbeddedFontsService, EncryptedFileDialogComponent, EquationEditorDialogComponent, EquationRendererComponent, EquationTemplateGalleryComponent, ExportProgressModalComponent, ExportService, FieldContextService, FindBarComponent, FindReplaceBarComponent, FollowModeBarComponent, FontEmbeddingListComponent, FontEmbeddingPanelComponent, GALLERY_THEME_PRESETS, GradientPickerComponent, HANDOUT_OPTIONS, HeaderFooterDialogComponent, HyperlinkDialogComponent, ImagePropertiesPanelComponent, InkDrawingService, InkRendererComponent, InsertSmartArtDialogComponent, InspectorPaneHeaderComponent, InspectorPanelComponent, IsMobileService, KeepAnnotationsDialogComponent, LOCALE_CATALOG, LONG_PRESS_DURATION_MS, LONG_PRESS_MOVE_TOLERANCE_PX, LoadContentService, LocalPresencePublisher, MAX_ZOOM_SCALE, MIN_ZOOM_SCALE, MOTION_PATH_COLUMNS, MediaPreviewComponent, MediaPropertiesPanelComponent, MediaRendererComponent, MediaTrimTimelineComponent, MobileBottomBarComponent, MobileMenuSheetComponent, MobilePresenterViewComponent, MobileSheetComponent, MobileSlidesSheetComponent, MobileToolbarComponent, ModalDialogComponent, Model3DRendererComponent, NotesHandoutCardComponent, NotesPanelComponent, NotesToolbarComponent, OleRendererComponent, OutlineViewOverlayComponent, POWER_POINT_VIEWER_PROVIDERS, PRESENTER_CHANNEL_NAME, PRESENTER_MSG_ORIGIN, PX_PER_CM, PX_PER_INCH, PasswordProtectionDialogComponent, PasswordStrengthMeterComponent, PowerPointViewerComponent, PresentationAnnotationOverlayComponent, PresentationAnnotationsService, PresentationOverlayComponent, PresentationPropertiesPanelComponent, PresentationSettingsCardComponent, PresentationSubtitleBarComponent, PresentationTransitionOverlayComponent, PresenterViewComponent, PresenterWindowService, PrintDialogComponent, PrintService, PrintSettingsPanelComponent, PropertiesDialogComponent, REPEAT_MODE_OPTIONS, RESIZE_HANDLES, RULER_FONT_SIZE, RULER_THICKNESS, ReadingViewOverlayComponent, RemoteSelectionOverlayComponent, RibbonAnimationGalleryComponent, RibbonAnimationsSectionComponent, RibbonArrangeSectionComponent, RibbonColorPopoverComponent, RibbonComponent, RibbonDesignSectionComponent, RibbonDrawSectionComponent, RibbonDrawingGroupComponent, RibbonEditingSectionComponent, RibbonFileSectionComponent, RibbonFontControlsComponent, RibbonHomeSectionComponent, RibbonHyperlinkButtonComponent, RibbonInsertFieldsComponent, RibbonInsertSectionComponent, RibbonMotionPathGalleryComponent, RibbonParagraphControlsComponent, RibbonPrimaryRowComponent, RibbonReviewSectionComponent, RibbonShapeExtrasComponent, RibbonSlideshowSectionComponent, RibbonTransitionsSectionComponent, RibbonViewSectionComponent, RulerGuidesService, SEQUENCE_OPTIONS, SEVERITY_GROUPS, SEVERITY_LABELS, SHORTCUT_REFERENCE_ITEMS, SLIDE_TRANSITION_KEYFRAMES, DEFAULT_PALETTE as SMARTART_DEFAULT_PALETTE, PALETTES as SMARTART_PALETTES, SMART_ART_COLOR_SCHEMES, SMART_ART_STYLE_OPTIONS, SUB_ITEM_LABEL, SVG_WARP_PRESETS, SWIPE_MAX_VERTICAL_PX, SWIPE_THRESHOLD_PX, SelectionPaneComponent, SetUpSlideShowDialogComponent, SettingsAppearanceTabComponent, SettingsDialogComponent, SettingsLanguageTabComponent, ShareDialogComponent, ShortcutPanelComponent, ShowOptionsFieldsetComponent, ShowSlidesFieldsetComponent, SignatureStrippedDialogComponent, SignaturesPanelComponent, SignaturesService, SlideBackgroundCardComponent, SlideCanvasComponent, SlideDefaultInspectorComponent, SlideDiffChangesComponent, SlideDiffRowComponent, SlideDiffThumbnailsComponent, SlideSizeCardComponent, SlideSorterOverlayComponent, SlideThemeOverridePanelComponent, SlideTransitionCardComponent, SlidesPanelComponent, SmartArt3DRendererComponent, SmartArt3DService, SmartArtPreviewComponent, SmartArtPropertiesComponent, SmartArtRendererComponent, StatusBarComponent, TABLE_STRUCTURE_TOGGLES, TEXT_3D_BOTTOM_BEVEL_KEYS, TEXT_3D_TOP_BEVEL_KEYS, TEXT_DIRECTION_OPTIONS, THEME_CATALOG, TIMING_CURVE_OPTIONS, TRIGGER_OPTIONS, TYPE_LABELS, TableCellAdvancedFillComponent, TableCellFormattingComponent, TableDataEditorComponent, TablePropertiesComponent, TableRendererComponent, TableResizeOverlayComponent, TableSelectionService, TagsCardComponent, Text3DBevelSectionComponent, Text3DPanelComponent, TextAdvancedPanelComponent, ThemeEditorFieldsComponent, ThemeGalleryComponent, ThemeSelectorCardComponent, TitleBarComponent, TransitionDirectionPickerComponent, TransitionPreviewComponent, VALIGN_OPTIONS, VIEWER_THEME, VersionHistoryPanelComponent, ViewerCanvasEditingService, ViewerCollabCursorService, ViewerCollaborationSessionService, ViewerCompareService, ViewerCustomShowsService, ViewerDialogsService, ViewerDocumentPropertiesService, ViewerExportService, ViewerExtraDialogsComponent, ViewerFileIOService, ViewerFindReplaceService, ViewerFormatPainterService, ViewerInspectorPanelService, ViewerKeyboardService, ViewerMobileSheetService, ViewerPresentationModeService, ViewerThemeGalleryService, ViewerTouchGesturesService, ViewerZoomService, WEBM_MIME_CANDIDATES, WriteBackScheduler, ZoomNavigationService, ZoomRendererComponent, ZoomTargetService, addCategory, addCommentToList, addGradientStopPatch, addItem, addSeries, addSubItem, advanceStep, aiToggleVisible, alignPatch, animationFor, animationPresetLabelKey, annotationMapToInkInserts, applyAcceptedDiff, applyAnimationPreset, applyFindReplacements, applyFormatToElement, applyMove, applyResize, applyTableStylePreset, asMediaElement, assignUserColor, attachTouchGestures, beginNodeEdit, bevelSizePatch, boolFromEvent, bringForward, bringToFront, buildBarActions, buildBroadcastConfig, buildBroadcastViewerUrl, buildCategoryLabels, buildCellParagraphs, buildChartViewModel, buildChatLogExport, buildChatLogMarkdown, buildChromeStyle, buildClearHyperlinkPatch, buildClickGroups, buildColStyles, buildCollaborationConfig, buildComboViewModel, buildCssGradientFromShapeStyle, buildDuotoneFilter, buildDuotoneFilterId, buildEmbeddedFontStyles, buildEquationElement, buildEquationSegment, buildFallbackViewModel, buildFontFaceRule, buildGradientFillCss, buildGridlinesAndLabels, buildHyperlinkPatch, buildInkContainerStyle, buildInkStrokes, buildLegend, buildModel3DContainerStyle, buildModel3DViewModel, buildOleActionModel, buildOleInfoRows, buildPatternFillCss, buildPrintHtmlDocument as buildPrintDocument, buildPropertiesPatch, buildRegionMapViewModel, buildSaveSlides, buildShareUrl, buildSmartArtInsertElement, buildSmartArtNodes, buildStockViewModel, buildSurfaceViewModel, buildTableViewModel, buildTreemapViewModel, buildTrimFragment, buildWaterfallViewModel, buildZeroLine, buildZoomContainerStyle, buildZoomViewModel, bulletIndentPx, canAddTopLevelNode, canGroupSelection, canRemoveTopLevelNode, canSetStrokeWidth, canStartBroadcast, canStartShare, canUngroupSelection, canUseClipboard, captionDisplayText, cellRunStyle, cellStyleToStyleMap, cellTdStyle, changeCountLabel, changeIcon, characterSpacingPatch, checkFontAvailable, clampCursorPosition, clampGifDimensions, clampIndex, clampNotesFontSize, clampScale, clampStep, clearAllLocalViewerData, clearAudienceContent, cn, collectAccessibilityIssues, collectElementText, collectSlideText, collectStoredChats, collectUsedFontFamilies, columnWidthStyle, commitNodeText, computeAlign, computeAxisTitlePrimitives, computeBarRects, computeBubbleRadius, computeCornerHandle, computeDataTablePrimitives, computeDistribute, computeDrawingViewBox, computeErrorBarPrimitives, computeFocusTargets, computeHandleBoxes, computeHandoutLayout, computeIsMobile, computeIsTablet, computeLinePoints, computeLinearRegression, computePageCount, computePieLayout, computePieSlicePath, computePieSlices, computePlotLayout, computeRSquared, computeRadarPoints, computeScatterDots, computeSelectionBoxes, computeSingleSelected, computeSlideIndices, computeSnap, computeStackedBarRects, computeStackedValueRange, computeTextLines, computeTimerProgress, computeTrendlinePrimitives, computeValueRange, convertOmmlToMathMl, copyFormatFromElement, countAccessibilityIssues, countAnnotationStrokes, createAngularAiBridge, createCustomShow, createSwipeDismissDrag, createWebrtcBundle, createWebsocketBundle, cssObjectToStyleMap, currentColorScheme, currentLayout, currentStyle, defaultCssVars, defaultRadius, defaultThemeColors, deleteElementsByIds, deleteVersion as deleteRecoveryVersion, demoteNode, deriveModel3DBlobUrl, derivePresenceList, describeSmartArtBounds, disableGlowPatch, disableInnerShadowPatch, disableOuterShadowPatch, disableReflectionPatch, disableSoftEdgePatch, duplicateElementById, durationOf, effectsStateOf, enableGlowPatch, enableInnerShadowPatch, enableOuterShadowPatch, enableReflectionPatch, enableSoftEdgePatch, encodeGif, estimatePageCount, evenColumnWidths, evenRowHeights, exitPresentationFullscreen, exportAiChatLogs, extractPathPoints, eyedropperAvailable, fillColorOf, findInSlides, findOwningSlideIndex, findSlideIndexByElementId, fitPolynomial, fitZoom, focusTargetChips, fontMimeForFormat, fontSizeOf, formatAutoNumber, formatAxisValue, formatBytes, formatCursorLabel, formatElapsed, formatFileSize, formatPropertyDate, formatTime, fpsToFrameIntervalMs, generateBroadcastRoomId, generateCommentId, generateCustomShowId, generatePressureCircles, generateTicks, getClrChangeParams, getContainerStyle, getDuotoneFilterDef, getImageSrc, getLocalStorageUsageSummary, getOleAriaLabel, getOleBadgeLabel, getOleDisplayName, getOleDownloadFileName, getOleTypeColor, getOleTypeLabel, getPasswordStrength, getPatternSvg, getPlaceholderStyle, getVersions as getRecoveryVersions, getResolvedShapeClipPath, getResolvedShapeClipPathFor, getShapeFillStrokeStyle, getSlideBackgroundStyle, getSlideTransitionAnimations, getSmartArtNodeBounds, getSpeechRecognitionCtor, getTextBlockStyle, getTextWarp, getTouchDistance, getWarpCategory, getWarpPath, gradientStateFromStyle, gradientStateOf, gradientStatePatch, gridColumns, groupElements, groupIssuesBySeverity, hasAnimation, hasCopyableFormat, hasExistingLink, hasExitedFullscreen, hasGradientFill, hasPressureVariation, hasVisibleSlideAfter, headerLabel, imageDimensions, inkViewBox, insertTableElementColumn as insertColumn, insertTableElementRow as insertRow, interpolateWidth, isAudienceTab, isBold, isBrowserOpenableMime, isChildNode, isElementInteractive, isInjectableUrl, isItalic, isPpactionUrl, isPresenterMessage, isSigned, isTextElement, isTwoTableFocus, isUnderline, isUrlSafe, isValidRoomId, isViewportBackgroundPressTarget, isZoomActivationKey, issueTrackKey, issueTypeLabel, keyToLabel, latexToMathml, linePointsToSvgString, lineSpacingPatch, loadAudienceContent, mergeCaptionResults, mergeDown, mergeRight, mergeSelection, moveElementBy, moveNodeDown, moveNodeUp, msToFrameDelayCs, narrowToCircle, narrowToPolygon, narrowToRect, newChartElement, newEquationElement, newPresetShapeElement, newShapeElement, newSmartArtElement, newTableElement, newTextElement, nextVisibleIndex, nodeBold, nodeEditBox, nodeFillColor, nodeFontColor, nodeIdFromKey, nodeItalic, nodeStyle, normalizeFontFormat, normalizeSlidesPerPage, normalizeValue, numFromEvent, ommlToMathml, ooxmlDashToCssBorderStyle, openNativeEyeDropper, overallStatus, paletteColor, parseAudienceNonce, parseNodeTextarea, partitionSlides, patchChartData, patchChartStyle, patchTableData, patchTextStyle, pendingElementStyles, pickColorByClickFallback, pickFile, pickSupportedMimeType, planGifFrames, planVideoSegments, pointsToSvgPathD, presenceToCursors, presetByLayout, presetsForCategory, pressuresToWidths, prevVisibleIndex, projectDrawingShapes, promoteNode, provideViewerTheme, radarAngle, radarRingPoints, readAsDataUrl, recordWebm, redistributeColumnWidth, removeAnimation, removeCategory, removeTableElementColumn as removeColumn, removeCommentFromList, removeElementAnimation, removeGradientStopPatch, removeNode, removeTableElementRow as removeRow, removeSeries, renderToCanvas, reorderAnimationDown, reorderAnimationUp, replaceInSlides, replaceMatch, requestPresentationFullscreen, resizeElement, resolveCaptionTracks, resolveChartKind, resolveFontVariant, resolveHyperlinkHref, resolveInteractiveElementId, resolveMediaSrc, resolveOleType, resolveParagraphBullet, resolvePresenterNotes, resolveProfileInitial, resolveRegionCode, resolveSlideAutoAdvanceMs, resolvePalette as resolveSmartArtPalette, resolveThemeCatalogEntry, resolveTransitionDuration, revealedElementStyles, routeOrthogonalConnector, rowStyle, rulerDragToGuidePosition, rulerHighlight, rulerStripTicks, sampleColorFromSlide, sanitizeColor, sanitizeSlideIndex, sanitizeUserName, saveViewerProfile, scanAvailableFonts, searchSlides, seedBroadcastFields, seedHyperlinkDraft, seedPropertiesDraft, seedShareFields, segmentFrameCount, selectValue, sendBackward, sendToBack, sequentialColorScale, serializeWriteBack, seriesColor, setAnimationEmphasis, setAnimationEntrance, setAnimationExit, setAxis, setAxisLogScale, setAxisTitleStyle, setCategoryLabel, setCellText, setColorScheme, setDataLabels, setDataPointExplosion, setDataPointFill, setDataPointLabel, setDataPointMarker, setDelay, setDirection, setDuration, setElementPosition, setGridlineStyle, setLayout, setLegend, setNodeStyle, setNodeText, setRepeatCount, setRepeatMode, setSequence, setSeriesChartType, setSeriesColor, setSeriesErrorBars, setSeriesMarker, setSeriesName, setSeriesTrendline, setSeriesValue, setStyle, setTimingCurve, setTitle, setTrigger, setTriggerShapeId, shapeStylePatch, sheetAfterNavigate, shouldBlockClickAdvance, shouldUseSvgWarp, showDirectionPicker, showsTemplateAffordance, signatureCountLabel, signatureKey, signatureTimestamp, signerName, statusLabel as slideDiffStatusLabel, slideNumberOf, smartArtNodes, paletteColour as smartArtPaletteColour, snapToGridStep, splitCursorCell, splitMergedCell, statusKind, statusLabel$1 as statusLabel, storeAudienceContent, stringFromEvent, strokeColorOf, strokeToInkElement, strokeWidthOf, styleShadowFilter, textAdvancedPatch, textAdvancedStateFromStyle, textAdvancedStateOf, textColorOf, textDirectionPatch, textStyleOf, textStylePatch, themeStyle, themeToCssVars, thumbnailHeight, thumbnailZoom, toggleCommentResolvedInList, toggleNodeBold, toggleNodeItalic, toggleSheet, topLevelNodeCount, transformSelectedTextCase, translationsEn, ungroupElements, updateElementById, updateGlowPatch, updateGradientStopPatch, updateInnerShadowPatch, updateOuterShadowPatch, updateReflectionPatch, vAlignPatch, validatePassword, validatePrintSettings, validateRoomId, valueToY, vermilionDarkColors, vermilionDarkTheme, vermilionLightColors, vermilionLightTheme, vermilionRadius, waypointsToPathD, worstStatus, zoomTargetSlideIndex };
18225
+ export type { AccessibilityIssueGroup, AccountAuthConfig, ActionDescriptor, AiCanvasHighlight, AiChatInitState, AiLogChat, AiLogExport, AiLogFormat, AiLogMessage, AiPanelSelectionAccessors, AlignBox, AlignMode, AnimationClickGroup, AnimationGroup, AnimationPresetCategory, AnimationPresetEntry, AnimationPresetPick, AnnotationInkInsert, AnnotationStroke, AttachTouchGesturesConfig, AwarenessLike, BarRect, Box, BridgeDeps, BroadcastConfig, BroadcastDefaults, CSSProperties, CanvasSize, CellCoord, CellParagraph, CellTextRun, ChartPartRef, ChartPartSelection, ChartValueDrag, ChartViewModel, ClassValue, ClrChangeParams, CollaborationConfig, CollaborationRole, RouterRect as ConnectorObstacle, RouterPoint as ConnectorPoint, ConnectorRouting, CopiedFormat, CornerHandleBox, CustomShow, CustomThemeEdit, DestroyableYDoc, DiagonalBorderInfo, DistributeMode, DocumentProperties, DrawingViewBox, DuotoneFilterDef, EffectsState, EmbeddedFontStyles, EquationTemplate, EyedropperResult, FindOptions, FindResult, FocusChip, FocusSelectionInput, GifFrame, GifFramePlan, GifPlanOptions, GlowState, GradientState, GradientStop$1 as GradientStop, GroupResult, HandleBox, HandoutSlidesPerPage, HyperlinkDraft, InkPoint, InkStroke, InlineEditState, InnerShadowState, LegendEntry, LinePoint, LinearFit, LocalIdentity, LocalStorageUsageSummary, LocaleCatalogEntry, MobileSheetKey, Model3DViewModel, MotionPathColumn, MotionPathEntry, NodeEditBox, NotesSegmentViewModel, ObjectUrlFactory, OleActionModel, OleInfoRow, OuterShadowState, OutlineCommit, OverallSignatureStatus, PartitionedSlides, PathPoint, PieSliceGeometry, PieSliceOptions, PlotLayout, PlotLayoutOptions, PositionUpdate, PowerPointViewerAPI, PptxAiBridge, PptxAiConfig, PptxAiConnection, PptxAiContextStrategy, PptxAiElementUpdate, PptxAiToolName, PptxAiUIMessage, PptxAiWritePolicy, PresentationTool, PresenterExitMessage, PresenterMessage, PresenterNotes, PresenterSlideChangeMessage, PressureCircle, PrintColorMode, PrintHtmlDocumentOptions as PrintDocumentOptions, PrintOrientation, PrintSettings, PrintSlideRange, PrintWhat, PropertiesDraft, ProposalView, ProviderBundle, ProviderLike, RadarPoint, RecordWebmOptions, RecoveryVersion, ReflectionState, RemoteCursor, SanitizedPresence as RemotePresence, RenderedShape, ReplaceResult, ResizeHandle, ResolvedCaptionTrack, ResolvedFontVariant, ResolvedOleType, RulerUnit, ScatterDot, SelectionBox, ShapeStyleChanges, ShareDefaults$1 as ShareDefaults, ShareFormFields, ShortcutReferenceItem, SignatureStatusKind, SlideInspectorTab, SlideTransitionAnimations, SmartArtInsertEvent, SmartArtNodeBounds, SnapBox, SnapGuide, SnapResult, SoftEdgeState, SpeechAlternative, SpeechRecognitionCtor, SpeechRecognitionEventLite, SpeechRecognitionLite, SpeechResult, SpeechResultList, SpeechSupportState, StagedProposal, StrokeToInkElementOpts, StyleMap, SupportedChartKind, SvgAreaGradient, SvgCircle, SvgLine, SvgPath, SvgPolygon, SvgPolyline, SvgPrimitive, SvgRect, SvgText, SwipeDismissDrag, TableBooleanFlag, TableCellSelection, TableCellViewModel, TableRowViewModel, TemplateElementsBySlideId, Text3DBevelKeys, TextAdvancedChanges, TextAdvancedState, TextStyleChanges, TextWarpCssDef, TextWarpDef, TextWarpPathDef, ThemeCatalogEntry, Tick, TimerProgress, ToolbarActionId, TouchGestureCallbacks, TranslationKey, UngroupResult, ValueRange, VideoPlanOptions, VideoSegmentPlan, ViewerMode, ViewerProfile, ViewerSettings, ViewerTheme, ViewerThemeColors, ZoomViewModel };