pptx-angular-viewer 3.10.0 → 3.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1995,16 +1995,19 @@ declare function removeElementAnimation(animations: PptxElementAnimation[], elem
1995
1995
  * a way to choose "no sound" or a new audio file, with the choice actually
1996
1996
  * landing in the saved OOXML.
1997
1997
  *
1998
- * Bundling stock sound assets (PowerPoint's own "Applause" / "Camera" /
1999
- * "Chime" WAVs) was out of scope here: no such assets exist anywhere in this
2000
- * repo (only a throwaway test fixture, `e2e/fixtures/media/tiny-audio.mp3`,
2001
- * unsuitable to ship as a real feature). The picker this module supports is
2002
- * therefore two states: **no sound**, or a **custom sound** the user chooses
2003
- * from their own files. A `dataUrl` staged this way is a *pending* embed
2004
- * (mirrors `imageData` / `mediaData`): `PptxHandlerRuntimeSaveSlideWriter`'s
2005
- * `embedPendingAnimationSounds` converts it to real archive bytes and mints
2006
- * an `audio` relationship on save, at which point `soundRId` / `soundPath`
2007
- * become the resolved reference and `soundData` is cleared.
1998
+ * Two kinds of pick exist. A **stock** pick names one of PowerPoint's 19
1999
+ * built-in gallery sounds (see `effect-sound-catalogue.ts`); Microsoft's own
2000
+ * WAV assets cannot be redistributed, so `effect-sound-synth.ts` synthesises
2001
+ * a DOM-free placeholder and this module stages it with the catalogue's
2002
+ * canonical `@_name` so the SAVED deck is byte-for-byte what PowerPoint
2003
+ * itself recognises as that stock sound (COM-verified, see the catalogue
2004
+ * module's doc comment). A **custom** pick is a sound the user chooses from
2005
+ * their own files, with no catalogue match. Either way the result is a
2006
+ * `dataUrl` staged as a *pending* embed (mirrors `imageData` / `mediaData`):
2007
+ * `PptxHandlerRuntimeSaveSlideWriter`'s `embedPendingAnimationSounds`
2008
+ * converts it to real archive bytes and mints an `audio` relationship on
2009
+ * save, at which point `soundRId` / `soundPath` become the resolved
2010
+ * reference and `soundData` is cleared.
2008
2011
  *
2009
2012
  * @module render/animation-sound-authoring
2010
2013
  */
@@ -2015,6 +2018,12 @@ interface EffectSoundPick$1 {
2015
2018
  dataUrl: string;
2016
2019
  /** Display name (e.g. the file's original name), shown by the picker. */
2017
2020
  fileName?: string;
2021
+ /**
2022
+ * The `@_name` PowerPoint should write for this sound. Set for a stock
2023
+ * gallery pick to the catalogue's canonical file name (e.g.
2024
+ * `"CHIMES.WAV"`); absent for a custom file pick with no meaningful name.
2025
+ */
2026
+ soundName?: string;
2018
2027
  }
2019
2028
  /** Framework-neutral descriptor of an effect's current sound state. */
2020
2029
  interface EffectSoundState {
@@ -2026,6 +2035,13 @@ interface EffectSoundState {
2026
2035
  * already on the deck when it was opened.
2027
2036
  */
2028
2037
  fileName?: string;
2038
+ /**
2039
+ * The matching stock-gallery id (`effect-sound-catalogue.ts`) when the
2040
+ * current sound's `soundName` names one of PowerPoint's 19 built-in
2041
+ * sounds, so the picker can show that entry selected instead of falling
2042
+ * back to a raw file name. Absent for a custom sound or "no sound".
2043
+ */
2044
+ catalogueId?: string;
2029
2045
  }
2030
2046
  /**
2031
2047
  * Derive the sound picker's current state for one element's animation entry.
@@ -2033,6 +2049,12 @@ interface EffectSoundState {
2033
2049
  * panel only shows the sound row once an effect exists).
2034
2050
  */
2035
2051
  declare function getEffectSoundState(slideAnimations: readonly PptxElementAnimation[], elementId: string): EffectSoundState;
2052
+ /**
2053
+ * Stage one of PowerPoint's 19 built-in stock sounds (`catalogueId`, e.g.
2054
+ * `"chime"`) as the effect's pending sound. Returns the input array unchanged
2055
+ * when `catalogueId` does not match a catalogue entry.
2056
+ */
2057
+ declare function setEffectStockSound(anims: readonly PptxElementAnimation[], elementId: string, catalogueId: string): PptxElementAnimation[];
2036
2058
  /**
2037
2059
  * Stage a newly-picked sound file on the element's animation entry, or clear
2038
2060
  * it entirely when `pick` is `undefined` ("No sound"). Either way, any
@@ -2077,6 +2099,63 @@ declare function setAfterAnimation(anims: readonly PptxElementAnimation[], eleme
2077
2099
  */
2078
2100
  declare function setAfterAnimationColor(anims: readonly PptxElementAnimation[], elementId: string, color: string): PptxElementAnimation[];
2079
2101
 
2102
+ /**
2103
+ * `effect-sound-catalogue`: PowerPoint's built-in stock sound gallery (the 19
2104
+ * entries under Animation "Effect Options... > Sound" and under
2105
+ * "Transitions > Sound"), as pure framework-neutral data.
2106
+ *
2107
+ * Microsoft's own WAV assets (`C:\Program Files\Microsoft Office\root\
2108
+ * Office16\Media\*.WAV`) cannot be redistributed, so `effect-sound-synth.ts`
2109
+ * synthesises a distinct, recognisable placeholder for each entry instead.
2110
+ * What DOES matter for interop is {@link EffectSoundCatalogueEntry.canonicalName}:
2111
+ * COM-verified against real PowerPoint 2016 (2026-09-06,
2112
+ * `Effect.EffectInformation.SoundEffect.ImportFromFile` and
2113
+ * `Slide.SlideShowTransition.SoundEffect.ImportFromFile`), importing one of
2114
+ * PowerPoint's own stock WAVs writes ONLY a relationship plus this exact
2115
+ * upper-case file name into the `@_name` attribute (`p:snd`/`p:sndTgt`).
2116
+ * There is no separate "this is a built-in sound" flag anywhere in the
2117
+ * schema, nor anything PowerPoint itself writes: reopening the ground-truth
2118
+ * file and reading `EffectInformation.SoundEffect.Name`/`.Type` back
2119
+ * confirmed name-matching alone is what PowerPoint's own object model uses.
2120
+ * Writing the same canonical name against our own synthesised bytes is
2121
+ * therefore both necessary and sufficient for PowerPoint to recognise a deck
2122
+ * we saved as carrying that stock sound.
2123
+ *
2124
+ * The 19 names were read directly off a real Office install's MEDIA folder
2125
+ * (`APPLAUSE.WAV` .. `WIND.WAV`) and match PowerPoint's own gallery order
2126
+ * (alphabetical by display name).
2127
+ *
2128
+ * @module render/effect-sound-catalogue
2129
+ */
2130
+ /** One entry of PowerPoint's built-in stock sound gallery. */
2131
+ interface EffectSoundCatalogueEntry {
2132
+ /** Stable id used by the picker UI and `effect-sound-synth.ts`'s generator map. */
2133
+ id: string;
2134
+ /** i18n key for the display label, e.g. `pptx.animation.sound.chime`. */
2135
+ i18nKey: string;
2136
+ /** The exact `@_name` PowerPoint writes for this stock sound (COM-verified). */
2137
+ canonicalName: string;
2138
+ }
2139
+ /** PowerPoint's own stock sound gallery, in its own (alphabetical) order. */
2140
+ declare const EFFECT_SOUND_CATALOGUE: readonly EffectSoundCatalogueEntry[];
2141
+
2142
+ /** A synthesised stock sound, ready to embed or play. */
2143
+ interface EffectSoundAsset {
2144
+ /** Catalogue id, e.g. `"chime"`. */
2145
+ id: string;
2146
+ /** The canonical PowerPoint file name (also the OOXML `@_name` to write). */
2147
+ fileName: string;
2148
+ /** Raw 16-bit mono WAV bytes. */
2149
+ bytes: Uint8Array;
2150
+ /** `data:audio/wav;base64,...` form of {@link bytes}, ready for playback or staging as a pending embed. */
2151
+ dataUrl: string;
2152
+ }
2153
+ /**
2154
+ * Synthesise (or return the cached synthesis of) the stock sound named by
2155
+ * `id`. Returns `undefined` for an id absent from the catalogue.
2156
+ */
2157
+ declare function getEffectSoundAsset(id: string): EffectSoundAsset | undefined;
2158
+
2080
2159
  /**
2081
2160
  * `animation-preset-labels`: the naming layer over the two animation preset
2082
2161
  * vocabularies, so no binding ever prints a wire token where an effect name
@@ -3220,7 +3299,7 @@ declare function isBrowserOpenableMime(mime?: string): boolean;
3220
3299
  * `package` and `unknown` from the core type both collapse to `'unknown'` here
3221
3300
  * so that every branch is guaranteed to have a colour and label.
3222
3301
  */
3223
- type ResolvedOleType = 'excel' | 'word' | 'pdf' | 'visio' | 'mathtype' | 'unknown';
3302
+ type ResolvedOleType = 'excel' | 'word' | 'powerpoint' | 'pdf' | 'visio' | 'mathtype' | 'unknown';
3224
3303
  /**
3225
3304
  * Resolve the OLE application type from `oleObjectType`, falling back to a
3226
3305
  * case-insensitive substring match on `oleProgId`.
@@ -4617,6 +4696,16 @@ interface SlideTransitionValueOption<T extends string> {
4617
4696
  * slide save writer). Once that happens `soundRId`/`soundPath` are populated
4618
4697
  * and `soundData` is cleared, exactly like `imagePath` for a picture.
4619
4698
  *
4699
+ * WHY the stock gallery needed no core changes: `PptxSlideTransition.soundName`
4700
+ * and its write side (`slide-transition-xml.ts`'s `buildTransitionSound`)
4701
+ * already round-trip an OOXML `@_name`, which is exactly what COM-verified
4702
+ * ground truth (PowerPoint 2016, `SlideShowTransition.SoundEffect.
4703
+ * ImportFromFile`, 2026-09-06) showed PowerPoint itself writes for a stock
4704
+ * sound: `<p:snd r:embed="rIdN" name="APPLAUSE.WAV"/>`, no separate
4705
+ * "built-in" flag anywhere. {@link applyTransitionStockSound} only needed to
4706
+ * add an AUTHORING path that stages one of `effect-sound-catalogue.ts`'s 19
4707
+ * synthesised sounds with its canonical name.
4708
+ *
4620
4709
  * @module render/slide-transition-sound
4621
4710
  */
4622
4711
 
@@ -5389,16 +5478,17 @@ interface SlideSizeSelectionDescriptor {
5389
5478
  * working loader unreachable in practice. Whenever the loader learns a format,
5390
5479
  * exactly one list has to change.
5391
5480
  *
5392
- * ## Read many, write one
5481
+ * ## Read many, write several
5393
5482
  *
5394
5483
  * Input is a superset of output. We READ `.pptx`, `.ppsx`, `.pptm`, `.potx`,
5395
- * legacy binary `.ppt` and portable `pptx-viewer-json`; we WRITE only the
5396
- * OpenXML family. That asymmetry is deliberate (PowerPoint itself does the
5397
- * same: open a 97-2003 deck and Save As offers `.pptx`), and it is why
5398
- * {@link savedPresentationFileName} always REPLACES the source extension
5399
- * rather than keeping it. A deck opened as `report.ppt` and saved as
5400
- * `report.ppt` would be a file whose bytes and whose name disagree, which is
5401
- * the kind of thing PowerPoint refuses to open.
5484
+ * legacy binary `.ppt` and portable `pptx-viewer-json`; we WRITE the OpenXML
5485
+ * family plus legacy binary `.ppt` (via `packages/core/src/core/ppt/writer/`,
5486
+ * a real MS-PPT/OLE2 encoder, not a stub). `savedPresentationFileName`
5487
+ * REPLACES the source extension with the extension of the format actually
5488
+ * being written rather than keeping the source's: a deck opened as
5489
+ * `report.pptx` and saved back as `.ppt` (or vice versa) must have its name
5490
+ * agree with its bytes, which is the kind of mismatch PowerPoint itself
5491
+ * refuses to open.
5402
5492
  *
5403
5493
  * This module deliberately imports nothing, so any layer (render, export, a
5404
5494
  * binding, a host app) can depend on it without risking an import cycle.
@@ -5427,10 +5517,14 @@ declare const PPTX_OPEN_ACCEPT: string;
5427
5517
  * before it hands bytes to the loader.
5428
5518
  */
5429
5519
  declare function isSupportedPresentationFile(name: string | null | undefined): boolean;
5430
- /** True for the binary PowerPoint 97-2003 family, which we read but never write. */
5520
+ /**
5521
+ * True for the binary PowerPoint 97-2003 family. `.ppt` itself is now also a
5522
+ * SAVE target (see {@link SavedPresentationFormat}); `.pps`/`.pot` (97-2003
5523
+ * show/template) remain read-only siblings sharing the same record format.
5524
+ */
5431
5525
  declare function isLegacyBinaryPresentation(name: string | null | undefined): boolean;
5432
- /** The formats the save path can produce. Binary `.ppt` is deliberately absent. */
5433
- type SavedPresentationFormat = 'pptx' | 'ppsx' | 'pptm';
5526
+ /** The formats the save path can produce. */
5527
+ type SavedPresentationFormat = 'pptx' | 'ppsx' | 'pptm' | 'ppt';
5434
5528
  /**
5435
5529
  * The stem of a presentation file name: directories and any loadable extension
5436
5530
  * removed. `C:\decks\report.ppt` becomes `report`; a name with no recognised
@@ -5442,9 +5536,10 @@ declare function presentationBaseName(sourceName: string | null | undefined, fal
5442
5536
  * The name a saved copy should be offered under: the source stem plus the
5443
5537
  * extension of the format actually being written.
5444
5538
  *
5445
- * This is what turns `report.ppt` into `report.pptx` on Save As. Output is
5446
- * always an OpenXML package, so keeping the source extension would mislabel
5447
- * the bytes.
5539
+ * This is what turns `report.ppt` into `report.pptx` on a regular Save As,
5540
+ * and `report.pptx` into `report.ppt` when the user explicitly picks the
5541
+ * PowerPoint 97-2003 format. Keeping the source extension would mislabel the
5542
+ * bytes either way.
5448
5543
  */
5449
5544
  declare function savedPresentationFileName(sourceName: string | null | undefined, format?: SavedPresentationFormat): string;
5450
5545
 
@@ -7946,11 +8041,13 @@ interface ReadOnlyRecommendation {
7946
8041
  /**
7947
8042
  * Whether lifting this recommendation requires a correct password, rather
7948
8043
  * than a plain "Edit anyway". True only for a `modifyVerifier` that carries
7949
- * a hash this viewer can actually check (`hashData` + `saltData` +
7950
- * `algorithmName`, see `checkModifyPassword`). "Mark as Final" is purely
7951
- * advisory and never requires one, and a `modifyVerifier` missing pieces of
7952
- * its hash cannot be verified either way, so both fall back to the plain
7953
- * "Edit anyway" a binding already had.
8044
+ * a hash this viewer can actually check (`hashData` plus a resolvable
8045
+ * algorithm, see `checkModifyPassword`; `saltData` is optional and NOT
8046
+ * required, a missing salt is still checkable). "Mark as Final" is purely
8047
+ * advisory and never requires one, and a `modifyVerifier` with no hash at
8048
+ * all, or naming an algorithm this viewer does not implement, cannot be
8049
+ * verified either way, so both fall back to the plain "Edit anyway" a
8050
+ * binding already had.
7954
8051
  */
7955
8052
  readonly requiresPassword: boolean;
7956
8053
  }
@@ -8812,7 +8909,7 @@ declare class AccessibilityService {
8812
8909
  /** Replace the check options. */
8813
8910
  setOptions(options: AccessibilityCheckOptions): void;
8814
8911
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AccessibilityService, never>;
8815
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<AccessibilityService>;
8912
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
8816
8913
  }
8817
8914
 
8818
8915
  /** Live selection accessors the store reads to derive the follow-selection focus. */
@@ -8913,7 +9010,7 @@ declare class AiPanelStore {
8913
9010
  /** Apply the host's change-animation config (duration / colour / toggles). */
8914
9011
  configureChangeAnimation(config?: AiChangeAnimationConfig): void;
8915
9012
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AiPanelStore, never>;
8916
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<AiPanelStore>;
9013
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
8917
9014
  }
8918
9015
 
8919
9016
  /** Live host accessors the recovery probe reads (all reactive). */
@@ -8950,7 +9047,7 @@ declare class AutosaveRecoveryService {
8950
9047
  /** The user declined: drop the snapshot. */
8951
9048
  discard(): void;
8952
9049
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AutosaveRecoveryService, never>;
8953
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<AutosaveRecoveryService>;
9050
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
8954
9051
  }
8955
9052
 
8956
9053
  /** Lifecycle status of the autosave engine (mirrors React's `AutosaveStatus`). */
@@ -9031,7 +9128,7 @@ declare class AutosaveService {
9031
9128
  private doAutosave;
9032
9129
  private clearTimer;
9033
9130
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AutosaveService, never>;
9034
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<AutosaveService>;
9131
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
9035
9132
  }
9036
9133
 
9037
9134
  /**
@@ -9322,7 +9419,7 @@ declare class CollaborationService {
9322
9419
  followUser(clientId: number | null): void;
9323
9420
  private scheduleWriteBack;
9324
9421
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<CollaborationService, never>;
9325
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<CollaborationService>;
9422
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
9326
9423
  }
9327
9424
 
9328
9425
  /** The trimmed text plus the mention spans an add/reply submit carries. */
@@ -9608,7 +9705,7 @@ declare class EditorStateService {
9608
9705
  private newId;
9609
9706
  private idCounter;
9610
9707
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<EditorStateService, never>;
9611
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<EditorStateService>;
9708
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
9612
9709
  }
9613
9710
 
9614
9711
  /** Payload emitted when the user confirms an insert. */
@@ -9717,7 +9814,7 @@ declare class IsMobileService {
9717
9814
  /** Scroll the focused editable into the area above the keyboard, if needed. */
9718
9815
  private _scrollFocusedIntoView;
9719
9816
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<IsMobileService, never>;
9720
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<IsMobileService>;
9817
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
9721
9818
  }
9722
9819
 
9723
9820
  /**
@@ -9925,7 +10022,7 @@ declare class LoadContentService {
9925
10022
  private disposeHandler;
9926
10023
  private revokeBlobUrls;
9927
10024
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<LoadContentService, never>;
9928
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<LoadContentService>;
10025
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
9929
10026
  }
9930
10027
 
9931
10028
  declare class LoadNoticesService {
@@ -9975,7 +10072,7 @@ declare class LoadNoticesService {
9975
10072
  /** Reset both notices' dismissed/lifted state for a newly loaded deck. */
9976
10073
  resetForLoad(): void;
9977
10074
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<LoadNoticesService, never>;
9978
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<LoadNoticesService>;
10075
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
9979
10076
  }
9980
10077
 
9981
10078
  /** Which mobile sheet/panel is currently active (highlights its button). */
@@ -10098,7 +10195,7 @@ declare class PresenterWindowService {
10098
10195
  connectAudience(onSlide: (index: number) => void, onExit: () => void): () => void;
10099
10196
  private disposeWindow;
10100
10197
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<PresenterWindowService, never>;
10101
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<PresenterWindowService>;
10198
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
10102
10199
  }
10103
10200
 
10104
10201
  /**
@@ -10156,7 +10253,7 @@ declare class PrintService {
10156
10253
  */
10157
10254
  private _open;
10158
10255
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<PrintService, never>;
10159
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<PrintService>;
10256
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
10160
10257
  }
10161
10258
 
10162
10259
  declare class RecentColorsService {
@@ -10175,7 +10272,7 @@ declare class RecentColorsService {
10175
10272
  */
10176
10273
  push(hex: string): void;
10177
10274
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<RecentColorsService, never>;
10178
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<RecentColorsService>;
10275
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
10179
10276
  }
10180
10277
 
10181
10278
  /**
@@ -10768,7 +10865,7 @@ declare class ViewerCanvasEditingService {
10768
10865
  tableData: PptxTableData;
10769
10866
  }): void;
10770
10867
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ViewerCanvasEditingService, never>;
10771
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<ViewerCanvasEditingService>;
10868
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
10772
10869
  }
10773
10870
 
10774
10871
  /** Live host accessors the cursor broadcast needs. */
@@ -10803,7 +10900,7 @@ declare class ViewerCollabCursorService {
10803
10900
  */
10804
10901
  onPointerMove(event: PointerEvent): void;
10805
10902
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ViewerCollabCursorService, never>;
10806
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<ViewerCollabCursorService>;
10903
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
10807
10904
  }
10808
10905
 
10809
10906
  /** Seed values for the Share dialog's start form. */
@@ -10903,7 +11000,7 @@ declare class ViewerCollaborationSessionService {
10903
11000
  onBroadcastStart(config: BroadcastConfig): void;
10904
11001
  onBroadcastStop(): void;
10905
11002
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ViewerCollaborationSessionService, never>;
10906
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<ViewerCollaborationSessionService>;
11003
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
10907
11004
  }
10908
11005
 
10909
11006
  declare class ViewerCustomShowsService {
@@ -11025,7 +11122,7 @@ declare class ViewerCustomShowsService {
11025
11122
  /** Write an edited list back into the deck's key space (relationship ids). */
11026
11123
  private commit;
11027
11124
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ViewerCustomShowsService, never>;
11028
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<ViewerCustomShowsService>;
11125
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
11029
11126
  }
11030
11127
 
11031
11128
  declare class ViewerDialogsService {
@@ -11097,7 +11194,7 @@ declare class ViewerDialogsService {
11097
11194
  /** Open the equation editor to edit an existing element's equation. */
11098
11195
  openEquationEdit(elementId: string, omml: Record<string, unknown>): void;
11099
11196
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ViewerDialogsService, never>;
11100
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<ViewerDialogsService>;
11197
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
11101
11198
  }
11102
11199
 
11103
11200
  /** Live host accessors the document-properties controller needs. */
@@ -11130,7 +11227,7 @@ declare class ViewerDocumentPropertiesService {
11130
11227
  /** Apply a hyperlink edit to the selected element (one history entry). */
11131
11228
  onHyperlinkSave(patch: Partial<PptxElement>): void;
11132
11229
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ViewerDocumentPropertiesService, never>;
11133
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<ViewerDocumentPropertiesService>;
11230
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
11134
11231
  }
11135
11232
 
11136
11233
  /** Live accessors the export loop needs from the host component. */
@@ -11211,7 +11308,7 @@ declare class ViewerExportService {
11211
11308
  */
11212
11309
  private captureSlideDataUrl;
11213
11310
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ViewerExportService, never>;
11214
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<ViewerExportService>;
11311
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
11215
11312
  }
11216
11313
 
11217
11314
  /** Live host accessors the file-IO controller needs. */
@@ -11267,6 +11364,8 @@ declare class ViewerFileIOService {
11267
11364
  saveAsPptx(): Promise<void>;
11268
11365
  saveAsPpsx(): Promise<void>;
11269
11366
  saveAsPptm(): Promise<void>;
11367
+ /** Legacy binary PowerPoint 97-2003 `.ppt`; `saveAs` picks the OLE2 MIME type. */
11368
+ saveAsPpt(): Promise<void>;
11270
11369
  /**
11271
11370
  * File > Export > Export as JSON: serialise the live deck (templates merged
11272
11371
  * back in when editing) to `pptx-viewer-json` and trigger the download.
@@ -11279,7 +11378,7 @@ declare class ViewerFileIOService {
11279
11378
  */
11280
11379
  openFile(): void;
11281
11380
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ViewerFileIOService, never>;
11282
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<ViewerFileIOService>;
11381
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
11283
11382
  }
11284
11383
 
11285
11384
  /** Emitted when the user changes the find query or the case-sensitive toggle. */
@@ -11372,7 +11471,7 @@ declare class ViewerFindReplaceService {
11372
11471
  /** Re-run the search over the editable deck and refresh the match list. */
11373
11472
  private refreshResults;
11374
11473
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ViewerFindReplaceService, never>;
11375
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<ViewerFindReplaceService>;
11474
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
11376
11475
  }
11377
11476
 
11378
11477
  /** Live selection/slide accessors the painter needs from the host component. */
@@ -11413,7 +11512,7 @@ declare class ViewerFormatPainterService {
11413
11512
  /** Apply a picked colour to the selected shape's fill, else copy to clipboard. */
11414
11513
  private applyEyedropperColor;
11415
11514
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ViewerFormatPainterService, never>;
11416
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<ViewerFormatPainterService>;
11515
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
11417
11516
  }
11418
11517
 
11419
11518
  /** The explicit right-docked tool panels a ribbon/bottom-bar button can toggle. */
@@ -11499,9 +11598,21 @@ declare class ViewerInspectorPanelService {
11499
11598
  * open/closed state, matching React's and Vue's independent open/close
11500
11599
  * toggle (closing/opening is not tied to selection changes).
11501
11600
  */
11601
+ /**
11602
+ * Monotonic counter bumped by {@link openAnimationPanel}; the inspector
11603
+ * panel reacts to every change by expanding its Animation section, so a
11604
+ * user who collapsed it by hand gets it back on the next ribbon click.
11605
+ */
11606
+ readonly animationPanelRequest: _angular_core.WritableSignal<number>;
11607
+ /**
11608
+ * Ribbon "Animation Panel": surface the format view like
11609
+ * {@link openFormatPanel} AND expand the inspector's Animation section
11610
+ * (React's `onOpenAnimationPanel` lands on those controls directly).
11611
+ */
11612
+ openAnimationPanel(): void;
11502
11613
  toggleFormatPanel(): void;
11503
11614
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ViewerInspectorPanelService, never>;
11504
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<ViewerInspectorPanelService>;
11615
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
11505
11616
  }
11506
11617
 
11507
11618
  /** Live host accessors the mobile-insert action needs. */
@@ -11535,7 +11646,7 @@ declare class ViewerMobileSheetService {
11535
11646
  */
11536
11647
  onMobileInsert(): void;
11537
11648
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ViewerMobileSheetService, never>;
11538
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<ViewerMobileSheetService>;
11649
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
11539
11650
  }
11540
11651
 
11541
11652
  declare class ViewerOptionsService {
@@ -11605,7 +11716,7 @@ declare class ViewerOptionsService {
11605
11716
  /** Options > Save > "cache retention": prune snapshots older than N days. */
11606
11717
  pruneExpiredCache(): Promise<void>;
11607
11718
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ViewerOptionsService, never>;
11608
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<ViewerOptionsService>;
11719
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
11609
11720
  }
11610
11721
 
11611
11722
  /** A single {x, y} coordinate in slide-space pixels. */
@@ -11735,7 +11846,7 @@ declare class ViewerPresentationModeService {
11735
11846
  /** Presentation exited with ink on it: offer the keep/discard prompt. */
11736
11847
  onPresentationAnnotationsExit(map: SlideAnnotationMap): void;
11737
11848
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ViewerPresentationModeService, never>;
11738
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<ViewerPresentationModeService>;
11849
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
11739
11850
  }
11740
11851
 
11741
11852
  declare class ViewerThemeGalleryService {
@@ -11758,7 +11869,7 @@ declare class ViewerThemeGalleryService {
11758
11869
  applyThemePreset(preset: PptxThemePreset): void;
11759
11870
  applyCustomTheme(colorScheme: PptxThemeColorScheme, fontScheme: PptxThemeFontScheme, name: string): void;
11760
11871
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ViewerThemeGalleryService, never>;
11761
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<ViewerThemeGalleryService>;
11872
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
11762
11873
  }
11763
11874
 
11764
11875
  declare class ViewerZoomService {
@@ -11774,7 +11885,7 @@ declare class ViewerZoomService {
11774
11885
  zoomOut(): void;
11775
11886
  zoomReset(): void;
11776
11887
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ViewerZoomService, never>;
11777
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<ViewerZoomService>;
11888
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
11778
11889
  }
11779
11890
 
11780
11891
  /**
@@ -12568,7 +12679,7 @@ declare class AreaChart3DService {
12568
12679
  /** `true` when an area3D chart should render via the Three.js scene. */
12569
12680
  readonly enabled: _angular_core.WritableSignal<boolean>;
12570
12681
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AreaChart3DService, never>;
12571
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<AreaChart3DService>;
12682
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
12572
12683
  }
12573
12684
 
12574
12685
  /**
@@ -12584,7 +12695,7 @@ declare class BarChart3DService {
12584
12695
  /** `true` when a bar3D chart should render via the Three.js scene. */
12585
12696
  readonly enabled: _angular_core.WritableSignal<boolean>;
12586
12697
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<BarChart3DService, never>;
12587
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<BarChart3DService>;
12698
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
12588
12699
  }
12589
12700
 
12590
12701
  /** A selected chart sub-part, scoped to the chart element that owns it. */
@@ -12602,7 +12713,7 @@ declare class ChartPartSelectionService {
12602
12713
  /** Clear the selection when it belongs to the given chart element. */
12603
12714
  clearForElement(elementId: string): void;
12604
12715
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ChartPartSelectionService, never>;
12605
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<ChartPartSelectionService>;
12716
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
12606
12717
  }
12607
12718
 
12608
12719
  /**
@@ -12624,7 +12735,7 @@ declare class CustomFontsService {
12624
12735
  /** Record a newly registered family, ignoring one already present. */
12625
12736
  register(family: string): void;
12626
12737
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<CustomFontsService, never>;
12627
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<CustomFontsService>;
12738
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
12628
12739
  }
12629
12740
 
12630
12741
  declare class EmbeddedFontsService {
@@ -12663,7 +12774,7 @@ declare class EmbeddedFontsService {
12663
12774
  private removeStyleElement;
12664
12775
  private revokeObjectUrls;
12665
12776
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<EmbeddedFontsService, never>;
12666
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<EmbeddedFontsService>;
12777
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
12667
12778
  }
12668
12779
 
12669
12780
  declare class ExportService {
@@ -12734,7 +12845,7 @@ declare class ExportService {
12734
12845
  */
12735
12846
  exportCanvasesToWebm(canvases: HTMLCanvasElement[], slideDurationMs: number, fileName: string, signal?: AbortSignal, onProgress?: (current: number, total: number) => void): Promise<void>;
12736
12847
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ExportService, never>;
12737
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<ExportService>;
12848
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
12738
12849
  }
12739
12850
 
12740
12851
  /**
@@ -12768,7 +12879,7 @@ declare class FieldContextService {
12768
12879
  */
12769
12880
  forSlide(slide: PptxSlide | undefined): FieldSubstitutionContext;
12770
12881
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<FieldContextService, never>;
12771
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<FieldContextService>;
12882
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
12772
12883
  }
12773
12884
 
12774
12885
  /** DOM id of the managed `<link>` element (binding-specific, like the style ids). */
@@ -12791,7 +12902,7 @@ declare class GoogleWebfontsService {
12791
12902
  dispose(): void;
12792
12903
  private removeLinkElement;
12793
12904
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<GoogleWebfontsService, never>;
12794
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<GoogleWebfontsService>;
12905
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
12795
12906
  }
12796
12907
 
12797
12908
  /**
@@ -12807,7 +12918,7 @@ declare class LineChart3DService {
12807
12918
  /** `true` when a line3D chart should render via the Three.js scene. */
12808
12919
  readonly enabled: _angular_core.WritableSignal<boolean>;
12809
12920
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<LineChart3DService, never>;
12810
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<LineChart3DService>;
12921
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
12811
12922
  }
12812
12923
 
12813
12924
  /**
@@ -12823,7 +12934,7 @@ declare class PieChart3DService {
12823
12934
  /** `true` when a pie3D chart should render via the Three.js scene. */
12824
12935
  readonly enabled: _angular_core.WritableSignal<boolean>;
12825
12936
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<PieChart3DService, never>;
12826
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<PieChart3DService>;
12937
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
12827
12938
  }
12828
12939
 
12829
12940
  /**
@@ -12839,7 +12950,7 @@ declare class SmartArt3DService {
12839
12950
  /** `true` when SmartArt should render via the Three.js scene. */
12840
12951
  readonly enabled: _angular_core.WritableSignal<boolean>;
12841
12952
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SmartArt3DService, never>;
12842
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<SmartArt3DService>;
12953
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
12843
12954
  }
12844
12955
 
12845
12956
  /**
@@ -12855,7 +12966,7 @@ declare class SurfaceChart3DService {
12855
12966
  /** `true` when a surface chart should render via the Three.js scene. */
12856
12967
  readonly enabled: _angular_core.WritableSignal<boolean>;
12857
12968
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SurfaceChart3DService, never>;
12858
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<SurfaceChart3DService>;
12969
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
12859
12970
  }
12860
12971
 
12861
12972
  /** A selected table cell (and optional Shift+Click range) on one table element. */
@@ -12897,7 +13008,7 @@ declare class TableSelectionService {
12897
13008
  /** Clear the selection when it belongs to `elementId` (e.g. element deleted). */
12898
13009
  clearFor(elementId: string): void;
12899
13010
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TableSelectionService, never>;
12900
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<TableSelectionService>;
13011
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
12901
13012
  }
12902
13013
 
12903
13014
  declare class ViewerCompareService {
@@ -12920,7 +13031,7 @@ declare class ViewerCompareService {
12920
13031
  acceptAll(): void;
12921
13032
  private diffAt;
12922
13033
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ViewerCompareService, never>;
12923
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<ViewerCompareService>;
13034
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
12924
13035
  }
12925
13036
 
12926
13037
  /** Live host accessors the shortcut handler consults. */
@@ -12968,7 +13079,7 @@ declare class ViewerKeyboardService {
12968
13079
  */
12969
13080
  private handleEscape;
12970
13081
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ViewerKeyboardService, never>;
12971
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<ViewerKeyboardService>;
13082
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
12972
13083
  }
12973
13084
 
12974
13085
  /** Live host accessors the gesture recogniser consults. */
@@ -12992,7 +13103,7 @@ declare class ViewerTouchGesturesService {
12992
13103
  */
12993
13104
  setup(mainEl: () => HTMLElement | undefined, host: TouchGesturesHost): void;
12994
13105
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ViewerTouchGesturesService, never>;
12995
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<ViewerTouchGesturesService>;
13106
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
12996
13107
  }
12997
13108
 
12998
13109
  /**
@@ -13034,7 +13145,7 @@ declare class ZoomTargetService {
13034
13145
  */
13035
13146
  lookup(targetSlideIndex: number): ZoomTargetInfo | undefined;
13036
13147
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ZoomTargetService, never>;
13037
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<ZoomTargetService>;
13148
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
13038
13149
  }
13039
13150
 
13040
13151
  /**
@@ -13134,7 +13245,7 @@ declare class AiChatService {
13134
13245
  private reportNewToolTargets;
13135
13246
  private refreshProposals;
13136
13247
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AiChatService, never>;
13137
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<AiChatService>;
13248
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
13138
13249
  }
13139
13250
 
13140
13251
  interface AiHistoryInitDeps {
@@ -13165,7 +13276,7 @@ declare class AiHistoryService implements OnDestroy {
13165
13276
  clearCurrent(): void;
13166
13277
  private syncActiveId;
13167
13278
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AiHistoryService, never>;
13168
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<AiHistoryService>;
13279
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
13169
13280
  }
13170
13281
 
13171
13282
  declare class AiChatPanelComponent {
@@ -13590,6 +13701,7 @@ declare class RibbonComponent {
13590
13701
  readonly save: _angular_core.OutputEmitterRef<void>;
13591
13702
  readonly savePpsx: _angular_core.OutputEmitterRef<void>;
13592
13703
  readonly savePptm: _angular_core.OutputEmitterRef<void>;
13704
+ readonly savePpt: _angular_core.OutputEmitterRef<void>;
13593
13705
  /** Emitted when the user toggles the slides panel from the top bar. */
13594
13706
  readonly toggleSidebar: _angular_core.OutputEmitterRef<void>;
13595
13707
  /** Emitted when the user clicks the AI assistant Sparkles toggle. */
@@ -13625,6 +13737,8 @@ declare class RibbonComponent {
13625
13737
  readonly replace: _angular_core.OutputEmitterRef<void>;
13626
13738
  /** Design/Transitions/Animations tabs want the right-docked Inspector panel opened. */
13627
13739
  readonly toggleInspector: _angular_core.OutputEmitterRef<void>;
13740
+ /** Animations tab "Animation Panel": open the Inspector with its Animation section expanded. */
13741
+ readonly openAnimationPanel: _angular_core.OutputEmitterRef<void>;
13628
13742
  /** Draw tab tool state changed (tool/colour/width); UI-only, no ink back-end yet. */
13629
13743
  readonly drawToolChange: _angular_core.OutputEmitterRef<DrawToolState>;
13630
13744
  /** Emitted when the user clicks "Browse Themes" in the Design tab. */
@@ -13688,7 +13802,7 @@ declare class RibbonComponent {
13688
13802
  /** Forward the Review proofing toggle to the viewer-owned live state. */
13689
13803
  protected setSpellCheck(enabled: boolean): void;
13690
13804
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<RibbonComponent, never>;
13691
- 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; }; "activeSlideHidden": { "alias": "activeSlideHidden"; "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"; "toggleSidebar": "toggleSidebar"; "toggleAiPanel": "toggleAiPanel"; "signatures": "signatures"; "info": "info"; "print": "print"; "comments": "comments"; "a11y": "a11y"; "shortcuts": "shortcuts"; "versionHistory": "versionHistory"; "passwordProtection": "passwordProtection"; "fontEmbedding": "fontEmbedding"; "link": "link"; "openSorter": "openSorter"; "openReadingView": "openReadingView"; "openOutlineView": "openOutlineView"; "openMasterView": "openMasterView"; "toggleNotes": "toggleNotes"; "toggleFormatPainter": "toggleFormatPainter"; "exportPng": "exportPng"; "exportPdf": "exportPdf"; "exportGif": "exportGif"; "exportVideo": "exportVideo"; "exportJson": "exportJson"; "copySlideAsImage": "copySlideAsImage"; "replace": "replace"; "toggleInspector": "toggleInspector"; "drawToolChange": "drawToolChange"; "toggleThemeGallery": "toggleThemeGallery"; "editTheme": "editTheme"; "openSlideSize": "openSlideSize"; "toggleGrid": "toggleGrid"; "toggleRulers": "toggleRulers"; "toggleGuides": "toggleGuides"; "toggleSelectionPane": "toggleSelectionPane"; "openCustomShows": "openCustomShows"; "toggleSnapToGrid": "toggleSnapToGrid"; "toggleSnapToShape": "toggleSnapToShape"; "addGuide": "addGuide"; "zoomToFit": "zoomToFit"; "toggleEyedropper": "toggleEyedropper"; "openSmartArtDialog": "openSmartArtDialog"; "openTemplateGallery": "openTemplateGallery"; "openEquationDialog": "openEquationDialog"; "openSetUpSlideShow": "openSetUpSlideShow"; "toggleHideSlide": "toggleHideSlide"; "openCompare": "openCompare"; "openPassword": "openPassword"; "openFontEmbedding": "openFontEmbedding"; "openVersionHistory": "openVersionHistory"; "openShortcuts": "openShortcuts"; "openSettings": "openSettings"; }, never, never, true, never>;
13805
+ 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; }; "activeSlideHidden": { "alias": "activeSlideHidden"; "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"; "savePpt": "savePpt"; "toggleSidebar": "toggleSidebar"; "toggleAiPanel": "toggleAiPanel"; "signatures": "signatures"; "info": "info"; "print": "print"; "comments": "comments"; "a11y": "a11y"; "shortcuts": "shortcuts"; "versionHistory": "versionHistory"; "passwordProtection": "passwordProtection"; "fontEmbedding": "fontEmbedding"; "link": "link"; "openSorter": "openSorter"; "openReadingView": "openReadingView"; "openOutlineView": "openOutlineView"; "openMasterView": "openMasterView"; "toggleNotes": "toggleNotes"; "toggleFormatPainter": "toggleFormatPainter"; "exportPng": "exportPng"; "exportPdf": "exportPdf"; "exportGif": "exportGif"; "exportVideo": "exportVideo"; "exportJson": "exportJson"; "copySlideAsImage": "copySlideAsImage"; "replace": "replace"; "toggleInspector": "toggleInspector"; "openAnimationPanel": "openAnimationPanel"; "drawToolChange": "drawToolChange"; "toggleThemeGallery": "toggleThemeGallery"; "editTheme": "editTheme"; "openSlideSize": "openSlideSize"; "toggleGrid": "toggleGrid"; "toggleRulers": "toggleRulers"; "toggleGuides": "toggleGuides"; "toggleSelectionPane": "toggleSelectionPane"; "openCustomShows": "openCustomShows"; "toggleSnapToGrid": "toggleSnapToGrid"; "toggleSnapToShape": "toggleSnapToShape"; "addGuide": "addGuide"; "zoomToFit": "zoomToFit"; "toggleEyedropper": "toggleEyedropper"; "openSmartArtDialog": "openSmartArtDialog"; "openTemplateGallery": "openTemplateGallery"; "openEquationDialog": "openEquationDialog"; "openSetUpSlideShow": "openSetUpSlideShow"; "toggleHideSlide": "toggleHideSlide"; "openCompare": "openCompare"; "openPassword": "openPassword"; "openFontEmbedding": "openFontEmbedding"; "openVersionHistory": "openVersionHistory"; "openShortcuts": "openShortcuts"; "openSettings": "openSettings"; }, never, never, true, never>;
13692
13806
  }
13693
13807
 
13694
13808
  /** The eight resize-handle positions around a selection box. */
@@ -13765,7 +13879,7 @@ declare class InkDrawingService {
13765
13879
  /** Finalise the in-progress stroke and emit it. Returns false when no stroke was active (caller should fall through). */
13766
13880
  handlePointerUp(): boolean;
13767
13881
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<InkDrawingService, never>;
13768
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<InkDrawingService>;
13882
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
13769
13883
  }
13770
13884
 
13771
13885
  /** A user-created guide line dragged from a ruler strip. */
@@ -13826,7 +13940,7 @@ declare class RulerGuidesService {
13826
13940
  /** End the guide drag. Returns false when no guide drag was in progress (caller should fall through). */
13827
13941
  handlePointerUp(): boolean;
13828
13942
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<RulerGuidesService, never>;
13829
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<RulerGuidesService>;
13943
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
13830
13944
  }
13831
13945
 
13832
13946
  /**
@@ -15830,7 +15944,7 @@ declare class AnimationPlaybackService {
15830
15944
  /** Reset a hover shape's sequence so the next hover replays it. */
15831
15945
  handleHoverEnd(shapeId: string): void;
15832
15946
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AnimationPlaybackService, never>;
15833
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<AnimationPlaybackService>;
15947
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
15834
15948
  }
15835
15949
 
15836
15950
  declare class PresentationAnnotationsService {
@@ -15963,7 +16077,7 @@ declare class PresentationAnnotationsService {
15963
16077
  private _flushCurrentSlide;
15964
16078
  private _clearToolbarTimer;
15965
16079
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<PresentationAnnotationsService, never>;
15966
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<PresentationAnnotationsService>;
16080
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
15967
16081
  }
15968
16082
 
15969
16083
  /**
@@ -16811,6 +16925,20 @@ declare class InspectorPanelComponent {
16811
16925
  /** Whether mutation controls in the inspector are enabled. */
16812
16926
  readonly canEdit: _angular_core.InputSignal<boolean>;
16813
16927
  protected readonly editor: EditorStateService;
16928
+ /**
16929
+ * Optional: absent when the panel is rendered outside a viewer. The ribbon's
16930
+ * "Animation Panel" bumps {@link ViewerInspectorPanelService.animationPanelRequest};
16931
+ * every bump expands the Animation section below, so the effect-sound and
16932
+ * after-animation rows are visible the way React's and Vue's inspectors
16933
+ * show them (their animation controls are never behind a collapsed group).
16934
+ */
16935
+ private readonly inspectorPane;
16936
+ /**
16937
+ * The ribbon request count at which the user last collapsed the Animation
16938
+ * section by hand (`null` = not collapsed). Resets whenever a different
16939
+ * element is selected, so each selection starts from the automatic rule.
16940
+ */
16941
+ private readonly animationManuallyClosedAt;
16814
16942
  /**
16815
16943
  * Optional: absent in a standalone-thumbnail/export render context.
16816
16944
  * Feeds the table properties panel's "Edit style..." (`tableStyleMap`),
@@ -16927,6 +17055,19 @@ declare class InspectorPanelComponent {
16927
17055
  protected onDeleteTableStyle(styleId: string): void;
16928
17056
  /** The active slide's element-animation list (animations live on the slide). */
16929
17057
  protected readonly slideAnimations: _angular_core.Signal<readonly PptxElementAnimation[]>;
17058
+ /**
17059
+ * The Animation section starts expanded for an element that already carries
17060
+ * an effect, so its authoring rows (effect sound, after-animation, timing)
17061
+ * are visible on selection the way React's and Vue's inspectors show them;
17062
+ * the ribbon's "Animation Panel" expands it on demand for any element. A
17063
+ * manual collapse sticks until the next ribbon request (the request counter
17064
+ * moves past the value recorded at collapse time), so the section really
17065
+ * re-opens on every click. Pure signals, no DOM effect: the panel stays
17066
+ * constructible in a plain injector (this package's TestBed-free tests).
17067
+ */
17068
+ protected readonly animationSectionOpen: _angular_core.Signal<boolean>;
17069
+ /** `<details>` toggle: remember a manual collapse against the current ribbon request count. */
17070
+ protected onAnimationSectionToggle(event: Event): void;
16930
17071
  /** Read-only anchors for the active slide's deck-native effect groups. */
16931
17072
  protected readonly slideAnimationTimelineAnchors: _angular_core.Signal<readonly PptxAnimationTimelineAnchor[]>;
16932
17073
  protected readonly slideElements: _angular_core.Signal<readonly PptxElement[]>;
@@ -18303,6 +18444,7 @@ declare class AnimationAuthorPanelComponent {
18303
18444
  protected onMotionPathChange(presetId: string): void;
18304
18445
  protected onDirectionChange(dir: PptxAnimationDirection): void;
18305
18446
  protected onEffectSoundPick(pick: EffectSoundPick | undefined): void;
18447
+ protected onEffectStockSoundPick(catalogueId: string): void;
18306
18448
  protected onAfterAnimationChange(action: PptxAfterAnimationAction): void;
18307
18449
  protected onAfterAnimationColorChange(color: string): void;
18308
18450
  /**
@@ -18935,7 +19077,7 @@ declare class CommentsService {
18935
19077
  */
18936
19078
  resolveComment(id: string): PptxComment[] | null;
18937
19079
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<CommentsService, never>;
18938
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<CommentsService>;
19080
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
18939
19081
  }
18940
19082
 
18941
19083
  declare class SignaturesPanelComponent {
@@ -19031,7 +19173,7 @@ declare class SignaturesService {
19031
19173
  /** Clear all inspected signatures (e.g. when a new file loads). */
19032
19174
  clear(): void;
19033
19175
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SignaturesService, never>;
19034
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<SignaturesService>;
19176
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
19035
19177
  }
19036
19178
 
19037
19179
  declare class AccessibilityPanelComponent {
@@ -20163,7 +20305,7 @@ declare class AccountPageComponent {
20163
20305
  readonly accountAuth: _angular_core.InputSignal<AccountAuthConfig | undefined>;
20164
20306
  private readonly translate;
20165
20307
  protected readonly swatches: readonly string[];
20166
- protected readonly version = "3.9.0";
20308
+ protected readonly version = "3.11.0";
20167
20309
  protected readonly profile: _angular_core.WritableSignal<ViewerProfile>;
20168
20310
  protected readonly initial: _angular_core.Signal<string>;
20169
20311
  protected readonly usage: _angular_core.WritableSignal<LocalStorageUsageSummary | null>;
@@ -21245,7 +21387,7 @@ declare class CanvasFitService {
21245
21387
  */
21246
21388
  recompute(): void;
21247
21389
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<CanvasFitService, never>;
21248
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<CanvasFitService>;
21390
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
21249
21391
  }
21250
21392
 
21251
21393
  /**
@@ -21281,7 +21423,7 @@ declare class ZoomNavigationService {
21281
21423
  */
21282
21424
  navigateToZoomTarget(targetSlideIndex: number): void;
21283
21425
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ZoomNavigationService, never>;
21284
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<ZoomNavigationService>;
21426
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<any>;
21285
21427
  }
21286
21428
 
21287
21429
  /**
@@ -22085,6 +22227,8 @@ declare class RibbonAnimationsSectionComponent {
22085
22227
  readonly canEdit: _angular_core.InputSignal<boolean>;
22086
22228
  readonly present: _angular_core.OutputEmitterRef<void>;
22087
22229
  readonly toggleInspector: _angular_core.OutputEmitterRef<void>;
22230
+ /** "Animation Panel": open the inspector and expand its Animation section. */
22231
+ readonly openAnimationPanel: _angular_core.OutputEmitterRef<void>;
22088
22232
  protected hasSel(): boolean;
22089
22233
  protected canAuthor(): boolean;
22090
22234
  /** The path the one-click "Path Animation" command applies. */
@@ -22110,7 +22254,7 @@ declare class RibbonAnimationsSectionComponent {
22110
22254
  /** Remove all animations from the selected element. */
22111
22255
  protected removeAnim(): void;
22112
22256
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<RibbonAnimationsSectionComponent, never>;
22113
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<RibbonAnimationsSectionComponent, "pptx-ribbon-animations-section", never, { "slideIndex": { "alias": "slideIndex"; "required": false; "isSignal": true; }; "selectedElement": { "alias": "selectedElement"; "required": false; "isSignal": true; }; "canEdit": { "alias": "canEdit"; "required": false; "isSignal": true; }; }, { "present": "present"; "toggleInspector": "toggleInspector"; }, never, never, true, never>;
22257
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<RibbonAnimationsSectionComponent, "pptx-ribbon-animations-section", never, { "slideIndex": { "alias": "slideIndex"; "required": false; "isSignal": true; }; "selectedElement": { "alias": "selectedElement"; "required": false; "isSignal": true; }; "canEdit": { "alias": "canEdit"; "required": false; "isSignal": true; }; }, { "present": "present"; "toggleInspector": "toggleInspector"; "openAnimationPanel": "openAnimationPanel"; }, never, never, true, never>;
22114
22258
  }
22115
22259
 
22116
22260
  declare class RibbonArrangeSectionComponent {
@@ -22242,6 +22386,7 @@ declare class RibbonFileSectionComponent {
22242
22386
  readonly save: _angular_core.OutputEmitterRef<void>;
22243
22387
  readonly savePpsx: _angular_core.OutputEmitterRef<void>;
22244
22388
  readonly savePptm: _angular_core.OutputEmitterRef<void>;
22389
+ readonly savePpt: _angular_core.OutputEmitterRef<void>;
22245
22390
  readonly exportPng: _angular_core.OutputEmitterRef<void>;
22246
22391
  readonly exportPdf: _angular_core.OutputEmitterRef<void>;
22247
22392
  readonly exportGif: _angular_core.OutputEmitterRef<void>;
@@ -22301,7 +22446,7 @@ declare class RibbonFileSectionComponent {
22301
22446
  */
22302
22447
  private pageActions;
22303
22448
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<RibbonFileSectionComponent, never>;
22304
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<RibbonFileSectionComponent, "pptx-ribbon-file-section", never, { "fileName": { "alias": "fileName"; "required": false; "isSignal": true; }; "slideCount": { "alias": "slideCount"; "required": false; "isSignal": true; }; "exporting": { "alias": "exporting"; "required": false; "isSignal": true; }; "hasMacros": { "alias": "hasMacros"; "required": false; "isSignal": true; }; "hiddenActions": { "alias": "hiddenActions"; "required": false; "isSignal": true; }; "recentPresentationsCount": { "alias": "recentPresentationsCount"; "required": false; "isSignal": true; }; "accountAuth": { "alias": "accountAuth"; "required": false; "isSignal": true; }; }, { "close": "close"; "createPresentation": "createPresentation"; "openFile": "openFile"; "openRecentFile": "openRecentFile"; "save": "save"; "savePpsx": "savePpsx"; "savePptm": "savePptm"; "exportPng": "exportPng"; "exportPdf": "exportPdf"; "exportGif": "exportGif"; "exportVideo": "exportVideo"; "exportJson": "exportJson"; "copySlideAsImage": "copySlideAsImage"; "print": "print"; "info": "info"; "signatures": "signatures"; "replace": "replace"; "openPassword": "openPassword"; "openFontEmbedding": "openFontEmbedding"; "openVersionHistory": "openVersionHistory"; "share": "share"; "options": "options"; }, never, never, true, never>;
22449
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<RibbonFileSectionComponent, "pptx-ribbon-file-section", never, { "fileName": { "alias": "fileName"; "required": false; "isSignal": true; }; "slideCount": { "alias": "slideCount"; "required": false; "isSignal": true; }; "exporting": { "alias": "exporting"; "required": false; "isSignal": true; }; "hasMacros": { "alias": "hasMacros"; "required": false; "isSignal": true; }; "hiddenActions": { "alias": "hiddenActions"; "required": false; "isSignal": true; }; "recentPresentationsCount": { "alias": "recentPresentationsCount"; "required": false; "isSignal": true; }; "accountAuth": { "alias": "accountAuth"; "required": false; "isSignal": true; }; }, { "close": "close"; "createPresentation": "createPresentation"; "openFile": "openFile"; "openRecentFile": "openRecentFile"; "save": "save"; "savePpsx": "savePpsx"; "savePptm": "savePptm"; "savePpt": "savePpt"; "exportPng": "exportPng"; "exportPdf": "exportPdf"; "exportGif": "exportGif"; "exportVideo": "exportVideo"; "exportJson": "exportJson"; "copySlideAsImage": "copySlideAsImage"; "print": "print"; "info": "info"; "signatures": "signatures"; "replace": "replace"; "openPassword": "openPassword"; "openFontEmbedding": "openFontEmbedding"; "openVersionHistory": "openVersionHistory"; "share": "share"; "options": "options"; }, never, never, true, never>;
22305
22450
  }
22306
22451
 
22307
22452
  declare class RibbonFontControlsComponent {
@@ -22632,6 +22777,7 @@ declare class RibbonPrimaryRowComponent {
22632
22777
  readonly save: _angular_core.OutputEmitterRef<void>;
22633
22778
  readonly savePpsx: _angular_core.OutputEmitterRef<void>;
22634
22779
  readonly savePptm: _angular_core.OutputEmitterRef<void>;
22780
+ readonly savePpt: _angular_core.OutputEmitterRef<void>;
22635
22781
  readonly copySlideAsImage: _angular_core.OutputEmitterRef<void>;
22636
22782
  readonly shortcuts: _angular_core.OutputEmitterRef<void>;
22637
22783
  readonly versionHistory: _angular_core.OutputEmitterRef<void>;
@@ -22654,7 +22800,7 @@ declare class RibbonPrimaryRowComponent {
22654
22800
  protected onDocumentPointerDown(event: PointerEvent): void;
22655
22801
  protected onOverflow(key: string): void;
22656
22802
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<RibbonPrimaryRowComponent, never>;
22657
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<RibbonPrimaryRowComponent, "pptx-ribbon-primary-row", never, { "slideCount": { "alias": "slideCount"; "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; }; "hiddenActions": { "alias": "hiddenActions"; "required": false; "isSignal": true; }; "aiEnabled": { "alias": "aiEnabled"; "required": false; "isSignal": true; }; "aiPanelOpen": { "alias": "aiPanelOpen"; "required": false; "isSignal": true; }; }, { "toggleSidebar": "toggleSidebar"; "toggleAiPanel": "toggleAiPanel"; "toggleComments": "toggleComments"; "present": "present"; "presenter": "presenter"; "broadcast": "broadcast"; "openCustomShows": "openCustomShows"; "toggleInspector": "toggleInspector"; "openSettings": "openSettings"; "exportPng": "exportPng"; "exportPdf": "exportPdf"; "exportGif": "exportGif"; "exportVideo": "exportVideo"; "print": "print"; "info": "info"; "a11y": "a11y"; "save": "save"; "savePpsx": "savePpsx"; "savePptm": "savePptm"; "copySlideAsImage": "copySlideAsImage"; "shortcuts": "shortcuts"; "versionHistory": "versionHistory"; "passwordProtection": "passwordProtection"; "fontEmbedding": "fontEmbedding"; "digitalSignatures": "digitalSignatures"; }, never, never, true, never>;
22803
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<RibbonPrimaryRowComponent, "pptx-ribbon-primary-row", never, { "slideCount": { "alias": "slideCount"; "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; }; "hiddenActions": { "alias": "hiddenActions"; "required": false; "isSignal": true; }; "aiEnabled": { "alias": "aiEnabled"; "required": false; "isSignal": true; }; "aiPanelOpen": { "alias": "aiPanelOpen"; "required": false; "isSignal": true; }; }, { "toggleSidebar": "toggleSidebar"; "toggleAiPanel": "toggleAiPanel"; "toggleComments": "toggleComments"; "present": "present"; "presenter": "presenter"; "broadcast": "broadcast"; "openCustomShows": "openCustomShows"; "toggleInspector": "toggleInspector"; "openSettings": "openSettings"; "exportPng": "exportPng"; "exportPdf": "exportPdf"; "exportGif": "exportGif"; "exportVideo": "exportVideo"; "print": "print"; "info": "info"; "a11y": "a11y"; "save": "save"; "savePpsx": "savePpsx"; "savePptm": "savePptm"; "savePpt": "savePpt"; "copySlideAsImage": "copySlideAsImage"; "shortcuts": "shortcuts"; "versionHistory": "versionHistory"; "passwordProtection": "passwordProtection"; "fontEmbedding": "fontEmbedding"; "digitalSignatures": "digitalSignatures"; }, never, never, true, never>;
22658
22804
  }
22659
22805
 
22660
22806
  declare class RibbonReviewSectionComponent {
@@ -22783,6 +22929,8 @@ declare class RibbonTransitionsSectionComponent {
22783
22929
  /** What the Sound `<select>` shows: the picked file's name, None, or the browse entry. */
22784
22930
  protected readonly soundOptions: _angular_core.Signal<TransitionSoundOption[]>;
22785
22931
  protected readonly soundSelectedValue: _angular_core.Signal<string>;
22932
+ protected readonly stockSoundId: _angular_core.Signal<string | undefined>;
22933
+ protected onSoundPreview(): void;
22786
22934
  /**
22787
22935
  * Sound writes a raw `Partial<PptxSlideTransition>` straight onto the
22788
22936
  * active slide rather than going through the ribbon draft: the picked
@@ -23667,6 +23815,6 @@ declare function thumbnailHeight(canvasW: number, canvasH: number, thumbW: numbe
23667
23815
  */
23668
23816
  declare function gridColumns(containerW: number, thumbW: number, gap: number, maxCols: number): number;
23669
23817
 
23670
- export { AFTER_ANIMATION_VALUES, ALIGN_OPTIONS, ANIMATION_PRESET_CATEGORIES, AUDIENCE_HASH, AUDIENCE_NONCE_KEY, AVATAR_COLOR_SWATCHES, AXIS_LABEL_COLOR, AccessibilityPanelComponent, AccessibilityService, AccessibilityTextPanelComponent, AccountPageComponent, ActionSettingsPanelComponent, AdvancedChartEditorComponent, AiChangeOverlayComponent, AiChatPanelComponent, AiChatService, AiComposerComponent, AiFocusBarComponent, AiFocusHighlightOverlayComponent, AiHistoryMenuComponent, AiHistoryService, AiMessageListComponent, AiPanelStore, AiProposalCardComponent, AiSettingsSectionComponent, AiToolCallCardComponent, AnimationAuthorPanelComponent, AnimationPanelComponent, AnimationPlaybackService, AutosaveRecoveryDialogComponent, AutosaveService, BroadcastDialogComponent, CHART_EDITOR_STYLES, CURSOR_PALETTE, CanvasFitService, ChartAxisOptionsComponent, ChartAxisStyleOptionsComponent, ChartComboTypeOptionsComponent, ChartDataEditorComponent, ChartDataLabelOptionsComponent, ChartDatapointMarkerOptionsComponent, ChartDatapointOptionsComponent, ChartDisplayOptionsComponent, ChartElementViewComponent, ChartErrorBarOptionsComponent, ChartMarkerOptionsComponent, ChartPartSelectionService, ChartPrimitivesComponent, ChartRendererComponent, ChartTrendlineOptionsComponent, ChartTypeSelectorComponent, CollaborationCursorsComponent, CollaborationService, ColorChangedImageComponent, CommentMarkersOverlayComponent, CommentsPanelComponent, CommentsService, ComparePanelComponent, ConnectorRendererComponent, ConnectorTextOverlayComponent, CustomShowsComponent, 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_PATTERN_FILL_PRESET, 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, GOOGLE_WEBFONTS_LINK_ID, GRIDLINE_COLOR, GoogleWebfontsService, 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, PPTX_OPEN_ACCEPT, PRESENTATION_OPEN_EXTENSIONS, PRESENTER_CHANNEL_NAME, PRESENTER_MSG_ORIGIN, PRESENTER_TIMER_SEGMENT_MS, PX_PER_CM, PX_PER_INCH, PasswordProtectionDialogComponent, PasswordStrengthMeterComponent, PowerPointViewerComponent, PresentToolbarAutoHide, PresentationAnnotationOverlayComponent, PresentationAnnotationsService, PresentationOverlayComponent, PresentationPropertiesPanelComponent, PresentationSettingsCardComponent, PresentationSubtitleBarComponent, PresentationToolbarComponent, 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, TitleBarSearchComponent, 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, ZERO_LINE_COLOR, ZoomNavigationService, ZoomRendererComponent, ZoomTargetService, addCategory, addCommentToList, addGradientStopPatch, addItem, addSeries, addSubItem, advanceStep, affordanceElements, aiToggleVisible, alignPatch, animationFor, animationPresetLabelKey, annotationMapToInkInserts, applyAcceptedDiff, applyAnimationPreset, applyFindReplacements, applyFormatToElement, applyMove, applyResize, asMediaElement, assignUserColor, attachShowVisibilityPause, attachTouchGestures, axisTickValues, 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, buildLiveInkStrokeView, buildMarkTooltip, buildModel3DContainerStyle, buildModel3DViewModel, buildOleActionModel, buildOleInfoRows, buildPatternFillCss, buildPieViewModel, buildPrintHtmlDocument as buildPrintDocument, buildPropertiesPatch, buildRadarViewModel, buildRegionMapViewModel, buildSaveSlides, buildShareUrl, buildSmartArtInsertElement, buildSmartArtNodes, buildStockViewModel, buildSurfaceViewModel, buildTableViewModel, buildTreemapViewModel, buildTrimFragment, buildWaterfallViewModel, buildZeroLine, buildZoomContainerStyle, buildZoomViewModel, bulletIndentPx, canAddTopLevelNode, canEditSmartArtNodes, canGroupSelection, canRemoveTopLevelNode, canSetStrokeWidth, canStartBroadcast, canStartShare, canUngroupSelection, canUseClipboard, captionDisplayText, cellRunStyle, cellStyleToStyleMap, cellTdStyle, changeCountLabel, changeIcon, characterSpacingPatch, chartPreserveAspectRatio, checkFontAvailable, clampCursorPosition, clampGifDimensions, clampIndex, clampNotesFontSize, clampScale, clampStep, clearAllLocalViewerData, clearAudienceContent, cn, collectAccessibilityIssues, collectElementText, collectSlideText, collectStoredChats, collectUsedFontFamilies, columnWidthStyle, commitNodeText, computeAlign, computeAxisTitlePrimitives, computeBarRects, computeBubbleRadius, computeCornerHandle, computeDistribute, computeDrawingViewBox, computeErrorBarPrimitives, computeFocusTargets, computeGridSpacingPx, computeHandleBoxes, computeHandoutLayout, computeIsMobile, computeIsTablet, computeLinePoints, computeLinearRegression, computePageCount, computePieLayout, computePieSlicePath, computePieSlices, computePlotLayout, computeRSquared, computeRadarPoints, computeResizeHandleBoxes, computeRotateHandleBox, computeScatterDots, computeScatterXDomain, computeSelectionBoxes, computeSingleSelected, computeSlideIndices, computeSnap, computeStackedBarRects, computeStackedValueRange, 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, endShowMediaCleanup, estimatePageCount, exitPresentationFullscreen, exportAiChatLogs, extractPathPoints, eyedropperAvailable, fillColorOf, findInSlides, findOwningSlideIndex, findSlideIndexByElementId, firstVisibleIndex, fitPolynomial, fitZoom, focusTargetChips, fontMimeForFormat, fontSizeOf, forgetSessionDeck, formatAxisValue, formatBytes, formatCursorLabel, formatElapsed, formatFileSize, formatPropertyDate, formatTime, fpsToFrameIntervalMs, generateBroadcastRoomId, generateCommentId, generateCustomShowId, generatePressureCircles, generateTicks, getClrChangeParams, getContainerStyle, getDuotoneFilterDef, getEffectSoundState, getImageSrc, getLocalStorageUsageSummary, getOleAriaLabel, getOleBadgeLabel, getOleDisplayName, getOleDownloadFileName, getOleTypeColor, getOleTypeLabel, getPasswordStrength, getPatternSvg, getPlaceholderStyle, getVersions as getRecoveryVersions, getResolvedShapeClipPath, getResolvedShapeClipPathFor, getSessionTabId, getShapeFillStrokeStyle, getSlideBackgroundStyle, getSlideTransitionAnimations, getSmartArtNodeBounds, getSpeechRecognitionCtor, getTextBlockStyle, getTextWarp, getTouchDistance, getWarpCategory, getWarpPath, gradientStateFromStyle, gradientStateOf, gradientStatePatch, gradientStopColorCommitPatch, gridColumns, 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, isLegacyBinaryPresentation, isPpactionUrl, isPresenterMessage, isSigned, isSupportedPresentationFile, isTextElement, isTwoTableFocus, isUnderline, isUrlSafe, isValidRoomId, isViewportBackgroundPressTarget, isZoomActivationKey, issueTrackKey, issueTypeLabel, keyToLabel, lastVisibleIndex, latexToMathml, layoutConnectorPaints, layoutNodeLabels, linePointsToSvgString, lineSpacingPatch, loadAudienceContent, loadSessionDeck, mediaFallbackFor, mediaSurfaceFor, mergeCaptionResults, mergeDown, mergeRight, mergeSelection, mergeTablesDirective, 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, patternPresetOptions, pendingElementStyles, pickColorByClickFallback, pickFile, pickSupportedMimeType, planGifFrames, planVideoSegments, pointFromPointerEvent, pointsToSvgPathD, presenceToCursors, presentationBaseName, presentationStageStyle, presenterTimerProgress, presetByLayout, presetsForCategory, pressuresToWidths, prevVisibleIndex, projectDrawingShapes, promoteNode, provideViewerTheme, radarAngle, radarRingPoints, readAsDataUrl, recordWebm, registerCrossSlideAudio, rememberSessionDeck, 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, resolveRibbonCanGroup, resolveSlideAutoAdvanceMs, resolvePalette as resolveSmartArtPalette, resolveThemeCatalogEntry, resolveTransitionDuration, restoreSessionDeck, revealedElementStyles, routeOrthogonalConnector, rowStyle, rulerDragToGuidePosition, rulerHighlight, rulerStripTicks, sampleColorFromSlide, sanitizeColor, sanitizeSlideIndex, sanitizeUserName, saveViewerProfile, savedPresentationFileName, scanAvailableFonts, searchSlides, seedBroadcastFields, seedHyperlinkDraft, seedPropertiesDraft, seedShareFields, segmentFrameCount, selectValue, sendBackward, sendToBack, sequentialColorScale, serializeWriteBack, seriesColor, setAfterAnimation, setAfterAnimationColor, setAnimationEmphasis, setAnimationEntrance, setAnimationExit, setAxis, setAxisLogScale, setAxisTitleStyle, setCategoryLabel, setCellText, setColorScheme, setDataLabels, setDataPointExplosion, setDataPointFill, setDataPointLabel, setDataPointMarker, setDelay, setDirection, setDuration, setEffectSound, 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, slidesWithReappliedLayout, smartArtNodes, paletteColour as smartArtPaletteColour, snapToGridStep, splitCursorCell, splitMergedCell, statusKind, statusLabel$1 as statusLabel, storeAudienceContent, stringFromEvent, strokeColorOf, strokeToInkElement, strokeWidthOf, styleShadowFilter, surfaceColor, textAdvancedPatch, textAdvancedStateFromStyle, textAdvancedStateOf, textColorOf, textDirectionPatch, textFontSizePatch, textStyleOf, textStylePatch, themeStyle, themeToCssVars, thumbnailHeight, thumbnailZoom, toggleCommentResolvedInList, toggleNodeBold, toggleNodeItalic, toggleSheet, topLevelNodeCount, transformSelectedTextCase, translationsEn, updateElementById, updateGlowPatch, updateGradientStopPatch, updateInnerShadowPatch, updateOuterShadowPatch, updateReflectionPatch, vAlignPatch, validatePassword, validatePrintSettings, validateRoomId, valueToY, vermilionDarkColors, vermilionDarkTheme, vermilionLightColors, vermilionLightTheme, vermilionRadius, waypointsToPathD, withManualLayouts, worstStatus, zoomTargetSlideIndex };
23818
+ export { AFTER_ANIMATION_VALUES, ALIGN_OPTIONS, ANIMATION_PRESET_CATEGORIES, AUDIENCE_HASH, AUDIENCE_NONCE_KEY, AVATAR_COLOR_SWATCHES, AXIS_LABEL_COLOR, AccessibilityPanelComponent, AccessibilityService, AccessibilityTextPanelComponent, AccountPageComponent, ActionSettingsPanelComponent, AdvancedChartEditorComponent, AiChangeOverlayComponent, AiChatPanelComponent, AiChatService, AiComposerComponent, AiFocusBarComponent, AiFocusHighlightOverlayComponent, AiHistoryMenuComponent, AiHistoryService, AiMessageListComponent, AiPanelStore, AiProposalCardComponent, AiSettingsSectionComponent, AiToolCallCardComponent, AnimationAuthorPanelComponent, AnimationPanelComponent, AnimationPlaybackService, AutosaveRecoveryDialogComponent, AutosaveService, BroadcastDialogComponent, CHART_EDITOR_STYLES, CURSOR_PALETTE, CanvasFitService, ChartAxisOptionsComponent, ChartAxisStyleOptionsComponent, ChartComboTypeOptionsComponent, ChartDataEditorComponent, ChartDataLabelOptionsComponent, ChartDatapointMarkerOptionsComponent, ChartDatapointOptionsComponent, ChartDisplayOptionsComponent, ChartElementViewComponent, ChartErrorBarOptionsComponent, ChartMarkerOptionsComponent, ChartPartSelectionService, ChartPrimitivesComponent, ChartRendererComponent, ChartTrendlineOptionsComponent, ChartTypeSelectorComponent, CollaborationCursorsComponent, CollaborationService, ColorChangedImageComponent, CommentMarkersOverlayComponent, CommentsPanelComponent, CommentsService, ComparePanelComponent, ConnectorRendererComponent, ConnectorTextOverlayComponent, CustomShowsComponent, 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_PATTERN_FILL_PRESET, 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, EFFECT_SOUND_CATALOGUE, 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, GOOGLE_WEBFONTS_LINK_ID, GRIDLINE_COLOR, GoogleWebfontsService, 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, PPTX_OPEN_ACCEPT, PRESENTATION_OPEN_EXTENSIONS, PRESENTER_CHANNEL_NAME, PRESENTER_MSG_ORIGIN, PRESENTER_TIMER_SEGMENT_MS, PX_PER_CM, PX_PER_INCH, PasswordProtectionDialogComponent, PasswordStrengthMeterComponent, PowerPointViewerComponent, PresentToolbarAutoHide, PresentationAnnotationOverlayComponent, PresentationAnnotationsService, PresentationOverlayComponent, PresentationPropertiesPanelComponent, PresentationSettingsCardComponent, PresentationSubtitleBarComponent, PresentationToolbarComponent, 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, TitleBarSearchComponent, 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, ZERO_LINE_COLOR, ZoomNavigationService, ZoomRendererComponent, ZoomTargetService, addCategory, addCommentToList, addGradientStopPatch, addItem, addSeries, addSubItem, advanceStep, affordanceElements, aiToggleVisible, alignPatch, animationFor, animationPresetLabelKey, annotationMapToInkInserts, applyAcceptedDiff, applyAnimationPreset, applyFindReplacements, applyFormatToElement, applyMove, applyResize, asMediaElement, assignUserColor, attachShowVisibilityPause, attachTouchGestures, axisTickValues, 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, buildLiveInkStrokeView, buildMarkTooltip, buildModel3DContainerStyle, buildModel3DViewModel, buildOleActionModel, buildOleInfoRows, buildPatternFillCss, buildPieViewModel, buildPrintHtmlDocument as buildPrintDocument, buildPropertiesPatch, buildRadarViewModel, buildRegionMapViewModel, buildSaveSlides, buildShareUrl, buildSmartArtInsertElement, buildSmartArtNodes, buildStockViewModel, buildSurfaceViewModel, buildTableViewModel, buildTreemapViewModel, buildTrimFragment, buildWaterfallViewModel, buildZeroLine, buildZoomContainerStyle, buildZoomViewModel, bulletIndentPx, canAddTopLevelNode, canEditSmartArtNodes, canGroupSelection, canRemoveTopLevelNode, canSetStrokeWidth, canStartBroadcast, canStartShare, canUngroupSelection, canUseClipboard, captionDisplayText, cellRunStyle, cellStyleToStyleMap, cellTdStyle, changeCountLabel, changeIcon, characterSpacingPatch, chartPreserveAspectRatio, checkFontAvailable, clampCursorPosition, clampGifDimensions, clampIndex, clampNotesFontSize, clampScale, clampStep, clearAllLocalViewerData, clearAudienceContent, cn, collectAccessibilityIssues, collectElementText, collectSlideText, collectStoredChats, collectUsedFontFamilies, columnWidthStyle, commitNodeText, computeAlign, computeAxisTitlePrimitives, computeBarRects, computeBubbleRadius, computeCornerHandle, computeDistribute, computeDrawingViewBox, computeErrorBarPrimitives, computeFocusTargets, computeGridSpacingPx, computeHandleBoxes, computeHandoutLayout, computeIsMobile, computeIsTablet, computeLinePoints, computeLinearRegression, computePageCount, computePieLayout, computePieSlicePath, computePieSlices, computePlotLayout, computeRSquared, computeRadarPoints, computeResizeHandleBoxes, computeRotateHandleBox, computeScatterDots, computeScatterXDomain, computeSelectionBoxes, computeSingleSelected, computeSlideIndices, computeSnap, computeStackedBarRects, computeStackedValueRange, 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, endShowMediaCleanup, estimatePageCount, exitPresentationFullscreen, exportAiChatLogs, extractPathPoints, eyedropperAvailable, fillColorOf, findInSlides, findOwningSlideIndex, findSlideIndexByElementId, firstVisibleIndex, fitPolynomial, fitZoom, focusTargetChips, fontMimeForFormat, fontSizeOf, forgetSessionDeck, formatAxisValue, formatBytes, formatCursorLabel, formatElapsed, formatFileSize, formatPropertyDate, formatTime, fpsToFrameIntervalMs, generateBroadcastRoomId, generateCommentId, generateCustomShowId, generatePressureCircles, generateTicks, getClrChangeParams, getContainerStyle, getDuotoneFilterDef, getEffectSoundAsset, getEffectSoundState, getImageSrc, getLocalStorageUsageSummary, getOleAriaLabel, getOleBadgeLabel, getOleDisplayName, getOleDownloadFileName, getOleTypeColor, getOleTypeLabel, getPasswordStrength, getPatternSvg, getPlaceholderStyle, getVersions as getRecoveryVersions, getResolvedShapeClipPath, getResolvedShapeClipPathFor, getSessionTabId, getShapeFillStrokeStyle, getSlideBackgroundStyle, getSlideTransitionAnimations, getSmartArtNodeBounds, getSpeechRecognitionCtor, getTextBlockStyle, getTextWarp, getTouchDistance, getWarpCategory, getWarpPath, gradientStateFromStyle, gradientStateOf, gradientStatePatch, gradientStopColorCommitPatch, gridColumns, 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, isLegacyBinaryPresentation, isPpactionUrl, isPresenterMessage, isSigned, isSupportedPresentationFile, isTextElement, isTwoTableFocus, isUnderline, isUrlSafe, isValidRoomId, isViewportBackgroundPressTarget, isZoomActivationKey, issueTrackKey, issueTypeLabel, keyToLabel, lastVisibleIndex, latexToMathml, layoutConnectorPaints, layoutNodeLabels, linePointsToSvgString, lineSpacingPatch, loadAudienceContent, loadSessionDeck, mediaFallbackFor, mediaSurfaceFor, mergeCaptionResults, mergeDown, mergeRight, mergeSelection, mergeTablesDirective, 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, patternPresetOptions, pendingElementStyles, pickColorByClickFallback, pickFile, pickSupportedMimeType, planGifFrames, planVideoSegments, pointFromPointerEvent, pointsToSvgPathD, presenceToCursors, presentationBaseName, presentationStageStyle, presenterTimerProgress, presetByLayout, presetsForCategory, pressuresToWidths, prevVisibleIndex, projectDrawingShapes, promoteNode, provideViewerTheme, radarAngle, radarRingPoints, readAsDataUrl, recordWebm, registerCrossSlideAudio, rememberSessionDeck, 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, resolveRibbonCanGroup, resolveSlideAutoAdvanceMs, resolvePalette as resolveSmartArtPalette, resolveThemeCatalogEntry, resolveTransitionDuration, restoreSessionDeck, revealedElementStyles, routeOrthogonalConnector, rowStyle, rulerDragToGuidePosition, rulerHighlight, rulerStripTicks, sampleColorFromSlide, sanitizeColor, sanitizeSlideIndex, sanitizeUserName, saveViewerProfile, savedPresentationFileName, scanAvailableFonts, searchSlides, seedBroadcastFields, seedHyperlinkDraft, seedPropertiesDraft, seedShareFields, segmentFrameCount, selectValue, sendBackward, sendToBack, sequentialColorScale, serializeWriteBack, seriesColor, setAfterAnimation, setAfterAnimationColor, setAnimationEmphasis, setAnimationEntrance, setAnimationExit, setAxis, setAxisLogScale, setAxisTitleStyle, setCategoryLabel, setCellText, setColorScheme, setDataLabels, setDataPointExplosion, setDataPointFill, setDataPointLabel, setDataPointMarker, setDelay, setDirection, setDuration, setEffectSound, setEffectStockSound, 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, slidesWithReappliedLayout, smartArtNodes, paletteColour as smartArtPaletteColour, snapToGridStep, splitCursorCell, splitMergedCell, statusKind, statusLabel$1 as statusLabel, storeAudienceContent, stringFromEvent, strokeColorOf, strokeToInkElement, strokeWidthOf, styleShadowFilter, surfaceColor, textAdvancedPatch, textAdvancedStateFromStyle, textAdvancedStateOf, textColorOf, textDirectionPatch, textFontSizePatch, textStyleOf, textStylePatch, themeStyle, themeToCssVars, thumbnailHeight, thumbnailZoom, toggleCommentResolvedInList, toggleNodeBold, toggleNodeItalic, toggleSheet, topLevelNodeCount, transformSelectedTextCase, translationsEn, updateElementById, updateGlowPatch, updateGradientStopPatch, updateInnerShadowPatch, updateOuterShadowPatch, updateReflectionPatch, vAlignPatch, validatePassword, validatePrintSettings, validateRoomId, valueToY, vermilionDarkColors, vermilionDarkTheme, vermilionLightColors, vermilionLightTheme, vermilionRadius, waypointsToPathD, withManualLayouts, worstStatus, zoomTargetSlideIndex };
23671
23819
  export type { AccessibilityIssueGroup, AccountAuthConfig, ActionDescriptor, ActiveShow, AiCanvasHighlight, AiChatInitState, AiHistoryInitDeps, AiLogChat, AiLogExport, AiLogFormat, AiLogMessage, AiPanelSelectionAccessors, AlignBox, AlignMode, AnimationClickGroup, AnimationGroup, AnimationPresetCategory, AnimationPresetEntry, AnimationPresetPick, AnnotationInkInsert, AnnotationStroke, AttachTouchGesturesConfig, AuthoredRange, AwarenessLike, BarRect, Box, BridgeDeps, BroadcastConfig, BroadcastDefaults, BubbleRadiusOptions, CSSProperties, CanvasSize, CellCoord, CellParagraph, CellTextRun, ChartPartRef, ChartPartSelection, ChartSvgDef, ChartSvgPatternDef, ChartValueDrag, ChartViewModel, ClassValue, ClrChangeParams, CollaborationConfig, CollaborationRole, RouterRect as ConnectorObstacle, RouterPoint as ConnectorPoint, ConnectorRouting, CopiedFormat, CornerHandleBox, CustomShow, CustomThemeEdit, DestroyableYDoc, DiagonalBorderInfo, DistributeMode, DocumentProperties, DrawingViewBox, DuotoneFilterDef, EffectSoundState, EffectsState, EmbeddedFontStyles, EquationTemplate, EyedropperResult, FindOptions, FindResult, FocusChip, FocusSelectionInput, GifFrame, GifFramePlan, GifPlanOptions, GlowState, GradientState, GradientStop$1 as GradientStop, HandleBox, HandoutSlidesPerPage, HyperlinkDraft, InkPoint, InkStroke, InkStrokeView, 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, PresentToolbarAction, PresentationTool, PresenterExitMessage, PresenterMessage, PresenterNotes, PresenterSlideChangeMessage, PresenterTimerProgress, 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, SavedPresentationFormat, ScatterDot, ScatterXDomain, SelectionBox, SessionDeck, 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, ToolbarActionId, TouchGestureCallbacks, TranslationKey, ValueRange, VideoPlanOptions, VideoSegmentPlan, ViewerMode, ViewerProfile, ViewerSettings, ViewerTheme, ViewerThemeColors, ZoomTranslate, ZoomViewModel };
23672
23820
  //# sourceMappingURL=pptx-angular-viewer.d.ts.map