pptx-angular-viewer 2.11.1 → 2.12.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/fesm2022/{pptx-angular-viewer-chat-history-idb-DOGPkU6F.mjs → pptx-angular-viewer-chat-history-idb-GPhhg6RN.mjs} +2 -2
- package/fesm2022/{pptx-angular-viewer-chat-history-idb-DOGPkU6F.mjs.map → pptx-angular-viewer-chat-history-idb-GPhhg6RN.mjs.map} +1 -1
- package/fesm2022/{pptx-angular-viewer-pptx-angular-viewer-BLXPLe5x.mjs → pptx-angular-viewer-pptx-angular-viewer-DYqQlNxt.mjs} +3779 -476
- package/fesm2022/{pptx-angular-viewer-pptx-angular-viewer-BLXPLe5x.mjs.map → pptx-angular-viewer-pptx-angular-viewer-DYqQlNxt.mjs.map} +1 -1
- package/fesm2022/pptx-angular-viewer.mjs +1 -1
- package/package.json +2 -2
- package/pptx-angular-viewer.css +1 -1
- package/types/pptx-angular-viewer.d.ts +431 -63
|
@@ -1554,6 +1554,48 @@ declare function applyAnimationPreset(animations: PptxElementAnimation[], elemen
|
|
|
1554
1554
|
/** Return `animations` without the entry for `elementId`. */
|
|
1555
1555
|
declare function removeElementAnimation(animations: PptxElementAnimation[], elementId: string): PptxElementAnimation[];
|
|
1556
1556
|
|
|
1557
|
+
/**
|
|
1558
|
+
* `animation-preset-labels`: the naming layer over the two animation preset
|
|
1559
|
+
* vocabularies, so no binding ever prints a wire token where an effect name
|
|
1560
|
+
* belongs.
|
|
1561
|
+
*
|
|
1562
|
+
* WHY this module exists: an animation's effect is identified by one of two
|
|
1563
|
+
* different vocabularies, and both of them were reaching the screen verbatim.
|
|
1564
|
+
*
|
|
1565
|
+
* - The **editor vocabulary** (`PptxAnimationPreset`: `fadeIn`, `growTurnIn`,
|
|
1566
|
+
* `boldFlash`, ...) is what `PptxElementAnimation.entrance / emphasis / exit`
|
|
1567
|
+
* actually holds. It is what the ribbon galleries apply and what the parser
|
|
1568
|
+
* normalises a loaded deck's OOXML presets down to. Every timeline in every
|
|
1569
|
+
* binding printed this token raw, so users saw `fadeIn` where "Fade In"
|
|
1570
|
+
* belongs.
|
|
1571
|
+
* - The **OOXML catalogue vocabulary** (`entr.1`, `emph.26`, `path.loop.pretzel`
|
|
1572
|
+
* from `pptx-viewer-core`'s `animation-preset-catalog`) is the full 266-entry
|
|
1573
|
+
* PowerPoint preset library. Its entries carry a hard-coded ENGLISH `label`,
|
|
1574
|
+
* which the Vue "Add animation > Effect" picker rendered directly, so that
|
|
1575
|
+
* control stayed English in every locale.
|
|
1576
|
+
*
|
|
1577
|
+
* Both vocabularies now resolve through i18n keys defined here, which means a
|
|
1578
|
+
* missing name is a dictionary gap that `packages/locales`' coverage tests
|
|
1579
|
+
* catch, not a plausible-looking wrong label produced by `keyToLabel`.
|
|
1580
|
+
*
|
|
1581
|
+
* WHY the catalogue key is a slug and not the preset id: the dictionaries are
|
|
1582
|
+
* flat maps whose keys are dotted paths, and a catalogue id already contains
|
|
1583
|
+
* dots (`path.line.up`). Folding them into one camelCase segment
|
|
1584
|
+
* (`pathLineUp`) keeps every animation key at the same depth as the rest of the
|
|
1585
|
+
* dictionary, so no translation framework has to be trusted to resolve a
|
|
1586
|
+
* five-segment key against a flat map.
|
|
1587
|
+
*
|
|
1588
|
+
* Pure data + pure functions: no framework, no DOM.
|
|
1589
|
+
*
|
|
1590
|
+
* @module render/animation-preset-labels
|
|
1591
|
+
*/
|
|
1592
|
+
|
|
1593
|
+
/**
|
|
1594
|
+
* The i18n key naming an editor preset token, shared by every binding's ribbon
|
|
1595
|
+
* gallery, inspector select and timeline row.
|
|
1596
|
+
*/
|
|
1597
|
+
declare function animationPresetLabelKey(preset: string): string;
|
|
1598
|
+
|
|
1557
1599
|
/**
|
|
1558
1600
|
* `animation-playback` — pure click-stepped playback math for the editor's
|
|
1559
1601
|
* element-animation preset model.
|
|
@@ -2974,6 +3016,34 @@ declare function routeOrthogonalConnector(start: RouterPoint, end: RouterPoint,
|
|
|
2974
3016
|
/** Convert an array of waypoints to an SVG path `d` string (comma-separated). */
|
|
2975
3017
|
declare function waypointsToPathD(waypoints: ReadonlyArray<RouterPoint>): string;
|
|
2976
3018
|
|
|
3019
|
+
/**
|
|
3020
|
+
* Arrow-head marker shapes for connectors.
|
|
3021
|
+
*
|
|
3022
|
+
* A connector's line geometry and its end decorations are independent concerns:
|
|
3023
|
+
* routing answers "where does the line go", this module answers "what is drawn
|
|
3024
|
+
* at each end and how big is it". Splitting them keeps `connector-path.ts`
|
|
3025
|
+
* within the file-size rule and gives the arrow-size mapping a home of its own,
|
|
3026
|
+
* since it is the part users actually configure (the inspector's six arrowhead
|
|
3027
|
+
* controls all resolve to values consumed here).
|
|
3028
|
+
*
|
|
3029
|
+
* Pure and framework-agnostic: the `<marker>` element itself is emitted by each
|
|
3030
|
+
* binding's view layer from the {@link MarkerShape} returned here.
|
|
3031
|
+
*/
|
|
3032
|
+
|
|
3033
|
+
/** Shape description for a SVG `<marker>` element (viewBox 0 0 10 10). */
|
|
3034
|
+
interface MarkerShape {
|
|
3035
|
+
shape: 'path' | 'circle';
|
|
3036
|
+
d?: string;
|
|
3037
|
+
/**
|
|
3038
|
+
* Suggested `markerWidth` (along the line: arrow *length*). Derived from the
|
|
3039
|
+
* connector's `@len` size token. Bindings should apply this instead of a
|
|
3040
|
+
* hard-coded value so `sm`/`lg` arrows scale. Defaults to the historical `4`.
|
|
3041
|
+
*/
|
|
3042
|
+
markerWidth: number;
|
|
3043
|
+
/** Suggested `markerHeight` (perpendicular: arrow *width*, from `@w`). */
|
|
3044
|
+
markerHeight: number;
|
|
3045
|
+
}
|
|
3046
|
+
|
|
2977
3047
|
/**
|
|
2978
3048
|
* Pure, framework-agnostic connector-geometry helpers shared across bindings.
|
|
2979
3049
|
*
|
|
@@ -2998,19 +3068,6 @@ interface ConnectorRouting {
|
|
|
2998
3068
|
canvasWidth: number;
|
|
2999
3069
|
canvasHeight: number;
|
|
3000
3070
|
}
|
|
3001
|
-
/** Shape description for a SVG `<marker>` element (viewBox 0 0 10 10). */
|
|
3002
|
-
interface MarkerShape {
|
|
3003
|
-
shape: 'path' | 'circle';
|
|
3004
|
-
d?: string;
|
|
3005
|
-
/**
|
|
3006
|
-
* Suggested `markerWidth` (along the line: arrow *length*). Derived from the
|
|
3007
|
-
* connector's `@len` size token. Bindings should apply this instead of a
|
|
3008
|
-
* hard-coded value so `sm`/`lg` arrows scale. Defaults to the historical `4`.
|
|
3009
|
-
*/
|
|
3010
|
-
markerWidth: number;
|
|
3011
|
-
/** Suggested `markerHeight` (perpendicular: arrow *width*, from `@w`). */
|
|
3012
|
-
markerHeight: number;
|
|
3013
|
-
}
|
|
3014
3071
|
/** All derived connector rendering values, computed from a `PptxElement`. */
|
|
3015
3072
|
interface ConnectorGeometry {
|
|
3016
3073
|
strokeWidth: number;
|
|
@@ -3047,6 +3104,15 @@ interface ConnectorGeometry {
|
|
|
3047
3104
|
endMarker: MarkerShape | null;
|
|
3048
3105
|
startMarkerRef: string | null;
|
|
3049
3106
|
endMarkerRef: string | null;
|
|
3107
|
+
/**
|
|
3108
|
+
* `path` data for the invisible pointer target that runs along the stroke.
|
|
3109
|
+
* Always set: it is {@link pathD} for a bent/curved connector, and the
|
|
3110
|
+
* straight `(x1,y1) -> (x2,y2)` segment otherwise, so a binding can emit one
|
|
3111
|
+
* `<path>` for the hit target regardless of which shape it paints.
|
|
3112
|
+
*/
|
|
3113
|
+
hitPathD: string;
|
|
3114
|
+
/** `stroke-width` for the hit target. See {@link connectorHitStrokeWidth}. */
|
|
3115
|
+
hitStrokeWidth: number;
|
|
3050
3116
|
/** Inline `style` string for the wrapper `<div>`. */
|
|
3051
3117
|
wrapperStyle: string;
|
|
3052
3118
|
}
|
|
@@ -4173,6 +4239,11 @@ interface PresentationInkStroke {
|
|
|
4173
4239
|
declare function clampNotesFontSize(size: number): number;
|
|
4174
4240
|
/** Format a Date as a locale time string (HH:MM:SS). */
|
|
4175
4241
|
declare function formatTime(date: Date): string;
|
|
4242
|
+
/**
|
|
4243
|
+
* Format a millisecond duration as `MM:SS`, or `HH:MM:SS` once the elapsed time
|
|
4244
|
+
* reaches one hour.
|
|
4245
|
+
*/
|
|
4246
|
+
declare function formatElapsed(elapsedMs: number): string;
|
|
4176
4247
|
|
|
4177
4248
|
/**
|
|
4178
4249
|
* `text-build-spans` - framework-agnostic spec for rendering a staged text
|
|
@@ -4301,6 +4372,29 @@ declare function sampleColorFromSlide(clientX: number, clientY: number): Eyedrop
|
|
|
4301
4372
|
*/
|
|
4302
4373
|
declare function pickColorByClickFallback(): Promise<string | null>;
|
|
4303
4374
|
|
|
4375
|
+
/**
|
|
4376
|
+
* How much elapsed time one fill of the console's progress bar represents.
|
|
4377
|
+
*
|
|
4378
|
+
* Five minutes, the interval PowerPoint's own console paces a talk in. It was
|
|
4379
|
+
* inlined in React, re-derived in Vue and given a helper of its own in Angular,
|
|
4380
|
+
* while Vanilla and Svelte had no bar at all.
|
|
4381
|
+
*/
|
|
4382
|
+
declare const PRESENTER_TIMER_SEGMENT_MS: number;
|
|
4383
|
+
/** A progress-bar reading: how full the current segment is, and which one. */
|
|
4384
|
+
interface PresenterTimerProgress {
|
|
4385
|
+
/** 0..100, for `aria-valuenow` and the fill width. */
|
|
4386
|
+
percent: number;
|
|
4387
|
+
/** Zero-based segment index; bindings render it one-based. */
|
|
4388
|
+
segment: number;
|
|
4389
|
+
}
|
|
4390
|
+
/**
|
|
4391
|
+
* Split an elapsed duration into the console's progress-bar reading.
|
|
4392
|
+
*
|
|
4393
|
+
* Negative input is clamped: a snapshot restored from a peer can arrive with a
|
|
4394
|
+
* start time in the future, and a negative `aria-valuenow` is invalid ARIA.
|
|
4395
|
+
*/
|
|
4396
|
+
declare function presenterTimerProgress(elapsedMs: number): PresenterTimerProgress;
|
|
4397
|
+
|
|
4304
4398
|
/** Whether the reading view is on screen, and which slide it is showing. */
|
|
4305
4399
|
interface ReadingViewState {
|
|
4306
4400
|
open: boolean;
|
|
@@ -5031,6 +5125,20 @@ interface ShortcutReferenceItem {
|
|
|
5031
5125
|
}
|
|
5032
5126
|
declare const SHORTCUT_REFERENCE_ITEMS: readonly ShortcutReferenceItem[];
|
|
5033
5127
|
|
|
5128
|
+
/** Everything a binding needs to mark one tile. Inert when the slide is visible. */
|
|
5129
|
+
interface HiddenSlideCue {
|
|
5130
|
+
/** Whether the slide is hidden, for `v-if` / `@if` / `{#if}` gating. */
|
|
5131
|
+
readonly hidden: boolean;
|
|
5132
|
+
/**
|
|
5133
|
+
* `id` for the "Hidden" text node, and the value the tile passes to
|
|
5134
|
+
* `aria-describedby`. `undefined` when the slide is visible, so a binding can
|
|
5135
|
+
* bind it straight through and have the attribute omitted.
|
|
5136
|
+
*/
|
|
5137
|
+
readonly labelId: string | undefined;
|
|
5138
|
+
/** Value for {@link HIDDEN_SLIDE_ATTRIBUTE}; `undefined` omits the attribute. */
|
|
5139
|
+
readonly marker: 'true' | undefined;
|
|
5140
|
+
}
|
|
5141
|
+
|
|
5034
5142
|
interface SpeechAlternative {
|
|
5035
5143
|
readonly transcript: string;
|
|
5036
5144
|
readonly confidence: number;
|
|
@@ -7123,6 +7231,13 @@ declare class PresenterWindowService {
|
|
|
7123
7231
|
private sessionId;
|
|
7124
7232
|
private getChannel;
|
|
7125
7233
|
isAudienceWindowOpen(): boolean;
|
|
7234
|
+
/**
|
|
7235
|
+
* PowerPoint's "Swap Displays": trade screens with the audience window.
|
|
7236
|
+
* Counterpart of React's `usePresenterWindow().swapDisplays`. False means no
|
|
7237
|
+
* audience window, or no Window Management API to move windows with; that is
|
|
7238
|
+
* a capability report, not a failure, and nothing moves.
|
|
7239
|
+
*/
|
|
7240
|
+
swapDisplays(): Promise<boolean>;
|
|
7126
7241
|
syncSlideToAudience(slideIndex: number): void;
|
|
7127
7242
|
updateSnapshot(patch: Partial<PresentationSnapshot>): void;
|
|
7128
7243
|
closeAudienceWindow(): void;
|
|
@@ -8494,6 +8609,18 @@ declare class ViewerPresentationModeService {
|
|
|
8494
8609
|
openAudienceWindow(): void;
|
|
8495
8610
|
/** Open the presenter (speaker) view: current+next slide, notes, timer. */
|
|
8496
8611
|
presentPresenter(): void;
|
|
8612
|
+
/**
|
|
8613
|
+
* Swap between the fullscreen show and the presenter (speaker) console, the
|
|
8614
|
+
* show toolbar's presenter-view toggle and PowerPoint's `N`. Mirrors React's
|
|
8615
|
+
* `togglePresenterView`.
|
|
8616
|
+
*
|
|
8617
|
+
* The two are mutually exclusive rather than stacked: the show overlay is
|
|
8618
|
+
* `position: fixed; z-index: 10000` while the console sits inside the viewer
|
|
8619
|
+
* at `z-index: 50`, so leaving both up would paint the show straight over the
|
|
8620
|
+
* console and the toggle would look inert. The full-deck `activeSlideIndex`
|
|
8621
|
+
* is what both read, so the swap keeps the presenter on the same slide.
|
|
8622
|
+
*/
|
|
8623
|
+
togglePresenterView(): void;
|
|
8497
8624
|
/** Close the presenter view (and any audience overlay/window it opened). */
|
|
8498
8625
|
exitPresenter(): void;
|
|
8499
8626
|
/** Presentation exited with ink on it: offer the keep/discard prompt. */
|
|
@@ -12179,9 +12306,13 @@ declare class PresentationShowNavigator {
|
|
|
12179
12306
|
clearAutoAdvance(): void;
|
|
12180
12307
|
navigate(direction: ShowDirection): void;
|
|
12181
12308
|
/**
|
|
12182
|
-
* Jump directly to `index` (clamped to the slide range). Used by
|
|
12183
|
-
*
|
|
12184
|
-
*
|
|
12309
|
+
* Jump directly to `index` (clamped to the slide range). Used by zoom tiles
|
|
12310
|
+
* and by on-slide Action Settings (`ppaction://hlinksldjump`).
|
|
12311
|
+
*
|
|
12312
|
+
* A jump ENTERS the target slide, so PowerPoint plays that slide's
|
|
12313
|
+
* transition exactly as a forward step does. Committing with `null` here is
|
|
12314
|
+
* why a deck navigated by clicking its own on-slide links showed no morph at
|
|
12315
|
+
* all while the same transition played fine on PageDown.
|
|
12185
12316
|
*/
|
|
12186
12317
|
goToSlide(index: number): void;
|
|
12187
12318
|
/**
|
|
@@ -12235,6 +12366,11 @@ declare class PresentationInputController {
|
|
|
12235
12366
|
handleKeyDown(event: KeyboardEvent): void;
|
|
12236
12367
|
/** Left-click on the slide area advances to the next visible slide. */
|
|
12237
12368
|
handleBodyClick(event: MouseEvent): void;
|
|
12369
|
+
/**
|
|
12370
|
+
* Run any on-slide action under the pointer, and report what the click left
|
|
12371
|
+
* for the show: only `'advance'` reaches {@link advanceFromClick}.
|
|
12372
|
+
*/
|
|
12373
|
+
private handleActionClick;
|
|
12238
12374
|
/**
|
|
12239
12375
|
* Click/tap/swipe advance. Like every forward step it first reveals the
|
|
12240
12376
|
* current slide's next animation build; only once the builds are exhausted
|
|
@@ -12296,9 +12432,17 @@ declare class PresentationOverlayComponent implements OnInit {
|
|
|
12296
12432
|
* once instead of sitting on the last slide swallowing every advance.
|
|
12297
12433
|
*/
|
|
12298
12434
|
readonly endWithBlackSlide: _angular_core.InputSignal<boolean>;
|
|
12435
|
+
/** Whether presenter view is up (tints the toolbar's presenter-view toggle). */
|
|
12436
|
+
readonly presenterMode: _angular_core.InputSignal<boolean>;
|
|
12299
12437
|
readonly indexChange: _angular_core.OutputEmitterRef<number>;
|
|
12300
12438
|
readonly closed: _angular_core.OutputEmitterRef<void>;
|
|
12439
|
+
/** Live-caption preference; driven by the host's ribbon, not by show chrome. */
|
|
12301
12440
|
readonly subtitlesChange: _angular_core.OutputEmitterRef<boolean>;
|
|
12441
|
+
/**
|
|
12442
|
+
* The toolbar's presenter-view toggle was pressed. The host owns the swap
|
|
12443
|
+
* (this overlay and the presenter console cannot both be on screen).
|
|
12444
|
+
*/
|
|
12445
|
+
readonly presenterViewToggle: _angular_core.OutputEmitterRef<void>;
|
|
12302
12446
|
/**
|
|
12303
12447
|
* Fired just before `closed` when the show carries ink annotations, so the
|
|
12304
12448
|
* host can offer the keep/discard prompt (mirrors React's exit flow).
|
|
@@ -12376,6 +12520,12 @@ declare class PresentationOverlayComponent implements OnInit {
|
|
|
12376
12520
|
protected readonly zoom: _angular_core.Signal<number>;
|
|
12377
12521
|
/** Centre the scaled slide in the viewport. */
|
|
12378
12522
|
protected readonly stageContainerStyle: _angular_core.Signal<Record<string, string>>;
|
|
12523
|
+
/**
|
|
12524
|
+
* Epoch ms the show opened, feeding the toolbar's elapsed readout. Captured
|
|
12525
|
+
* at construction because this overlay is created exactly when the show
|
|
12526
|
+
* starts, so the readout runs from 00:00 without the host tracking it.
|
|
12527
|
+
*/
|
|
12528
|
+
protected readonly showStartedAt: number;
|
|
12379
12529
|
/** "3 / 12" label. */
|
|
12380
12530
|
protected readonly counterLabel: _angular_core.Signal<string>;
|
|
12381
12531
|
protected readonly closeButtonStyle: OverlayStyle;
|
|
@@ -12403,10 +12553,8 @@ declare class PresentationOverlayComponent implements OnInit {
|
|
|
12403
12553
|
protected onBodyClick(event: MouseEvent): void;
|
|
12404
12554
|
/** Click on the end screen: exit the show, like PowerPoint's "click to exit". */
|
|
12405
12555
|
protected onEndScreenClick(event: MouseEvent): void;
|
|
12406
|
-
/**
|
|
12407
|
-
protected
|
|
12408
|
-
/** Toggle the live-caption (subtitle) bar. */
|
|
12409
|
-
protected toggleSubtitles(): void;
|
|
12556
|
+
/** The show toolbar's end button: same exit path as Escape / the close button. */
|
|
12557
|
+
protected onToolbarEnd(): void;
|
|
12410
12558
|
/**
|
|
12411
12559
|
* Overlay-chrome buttons (close / previous / next). Each is bound for both
|
|
12412
12560
|
* `click` and `touchend`: the touch path additionally prevents the browser's
|
|
@@ -12419,7 +12567,7 @@ declare class PresentationOverlayComponent implements OnInit {
|
|
|
12419
12567
|
private runChromeAction;
|
|
12420
12568
|
private emitClosed;
|
|
12421
12569
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PresentationOverlayComponent, never>;
|
|
12422
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PresentationOverlayComponent, "pptx-presentation-overlay", never, { "slides": { "alias": "slides"; "required": true; "isSignal": true; }; "canvasSize": { "alias": "canvasSize"; "required": true; "isSignal": true; }; "mediaDataUrls": { "alias": "mediaDataUrls"; "required": false; "isSignal": true; }; "startIndex": { "alias": "startIndex"; "required": false; "isSignal": true; }; "showWithAnimation": { "alias": "showWithAnimation"; "required": false; "isSignal": true; }; "useTimings": { "alias": "useTimings"; "required": false; "isSignal": true; }; "subtitlesVisible": { "alias": "subtitlesVisible"; "required": false; "isSignal": true; }; "sessionEnded": { "alias": "sessionEnded"; "required": false; "isSignal": true; }; "endWithBlackSlide": { "alias": "endWithBlackSlide"; "required": false; "isSignal": true; }; }, { "indexChange": "indexChange"; "closed": "closed"; "subtitlesChange": "subtitlesChange"; "annotationsExit": "annotationsExit"; }, never, never, true, never>;
|
|
12570
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PresentationOverlayComponent, "pptx-presentation-overlay", never, { "slides": { "alias": "slides"; "required": true; "isSignal": true; }; "canvasSize": { "alias": "canvasSize"; "required": true; "isSignal": true; }; "mediaDataUrls": { "alias": "mediaDataUrls"; "required": false; "isSignal": true; }; "startIndex": { "alias": "startIndex"; "required": false; "isSignal": true; }; "showWithAnimation": { "alias": "showWithAnimation"; "required": false; "isSignal": true; }; "useTimings": { "alias": "useTimings"; "required": false; "isSignal": true; }; "subtitlesVisible": { "alias": "subtitlesVisible"; "required": false; "isSignal": true; }; "sessionEnded": { "alias": "sessionEnded"; "required": false; "isSignal": true; }; "endWithBlackSlide": { "alias": "endWithBlackSlide"; "required": false; "isSignal": true; }; "presenterMode": { "alias": "presenterMode"; "required": false; "isSignal": true; }; }, { "indexChange": "indexChange"; "closed": "closed"; "subtitlesChange": "subtitlesChange"; "presenterViewToggle": "presenterViewToggle"; "annotationsExit": "annotationsExit"; }, never, never, true, never>;
|
|
12423
12571
|
}
|
|
12424
12572
|
|
|
12425
12573
|
/**
|
|
@@ -12472,6 +12620,16 @@ declare class SlideSorterOverlayComponent {
|
|
|
12472
12620
|
onThumbClick(index: number): void;
|
|
12473
12621
|
/** Returns true when a slide has been marked as hidden in the presentation. */
|
|
12474
12622
|
isHiddenSlide(slide: PptxSlide): boolean;
|
|
12623
|
+
/** Dictionary key for the word shown and announced on a hidden slide's cell. */
|
|
12624
|
+
readonly hiddenLabelKey = "pptx.slideSorter.hidden";
|
|
12625
|
+
/** Shared slash mark, bound inline so a stylesheet copy cannot drift. */
|
|
12626
|
+
readonly slashGradient = "linear-gradient(to top right, transparent 47%, color-mix(in srgb, currentColor 60%, transparent) 47%, color-mix(in srgb, currentColor 60%, transparent) 53%, transparent 53%)";
|
|
12627
|
+
/**
|
|
12628
|
+
* The shared cue for one cell. The dim already came off `.is-hidden`, but
|
|
12629
|
+
* opacity is a colour-only signal and said nothing to a screen reader, so
|
|
12630
|
+
* this adds the number slash, the word, and the neutral marker attribute.
|
|
12631
|
+
*/
|
|
12632
|
+
hiddenCue(slide: PptxSlide, index: number): HiddenSlideCue;
|
|
12475
12633
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SlideSorterOverlayComponent, never>;
|
|
12476
12634
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SlideSorterOverlayComponent, "pptx-slide-sorter-overlay", never, { "slides": { "alias": "slides"; "required": true; "isSignal": true; }; "canvasSize": { "alias": "canvasSize"; "required": true; "isSignal": true; }; "mediaDataUrls": { "alias": "mediaDataUrls"; "required": false; "isSignal": true; }; "activeIndex": { "alias": "activeIndex"; "required": false; "isSignal": true; }; }, { "select": "select"; "closed": "closed"; }, never, never, true, never>;
|
|
12477
12635
|
}
|
|
@@ -14129,6 +14287,24 @@ declare class SlidesPanelComponent {
|
|
|
14129
14287
|
onAddSlide(): void;
|
|
14130
14288
|
onRenameSection(sectionId: string, currentName: string): void;
|
|
14131
14289
|
sectionIndex(sectionId: string): number;
|
|
14290
|
+
/** Dictionary key for the word shown and announced on a hidden slide's card. */
|
|
14291
|
+
readonly hiddenLabelKey = "pptx.slideSorter.hidden";
|
|
14292
|
+
/**
|
|
14293
|
+
* The hidden-slide slash and dim, bound as inline styles rather than written
|
|
14294
|
+
* into `slides-panel.component.css`. A component stylesheet cannot read a TS
|
|
14295
|
+
* constant, so a literal copy there would be free to drift from the four
|
|
14296
|
+
* other bindings; binding the shared values makes drift impossible.
|
|
14297
|
+
*/
|
|
14298
|
+
readonly slashGradient = "linear-gradient(to top right, transparent 47%, color-mix(in srgb, currentColor 60%, transparent) 47%, color-mix(in srgb, currentColor 60%, transparent) 53%, transparent 53%)";
|
|
14299
|
+
readonly dimOpacity = 0.5;
|
|
14300
|
+
/**
|
|
14301
|
+
* The shared rail/sorter cue for one card. A hidden slide is still LISTED
|
|
14302
|
+
* here (hiding only removes it from the show), so without this the panel gave
|
|
14303
|
+
* a user no way to tell that a slide will be skipped.
|
|
14304
|
+
*/
|
|
14305
|
+
hiddenCue(slide: {
|
|
14306
|
+
hidden?: boolean;
|
|
14307
|
+
}, index: number): HiddenSlideCue;
|
|
14132
14308
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SlidesPanelComponent, never>;
|
|
14133
14309
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SlidesPanelComponent, "pptx-slides-panel", never, { "canvasSize": { "alias": "canvasSize"; "required": true; "isSignal": true; }; "mediaDataUrls": { "alias": "mediaDataUrls"; "required": false; "isSignal": true; }; "activeIndex": { "alias": "activeIndex"; "required": false; "isSignal": true; }; }, { "select": "select"; }, never, never, true, never>;
|
|
14134
14310
|
}
|
|
@@ -15597,7 +15773,7 @@ declare class AccountPageComponent {
|
|
|
15597
15773
|
readonly accountAuth: _angular_core.InputSignal<AccountAuthConfig | undefined>;
|
|
15598
15774
|
private readonly translate;
|
|
15599
15775
|
protected readonly swatches: readonly string[];
|
|
15600
|
-
protected readonly version = "2.
|
|
15776
|
+
protected readonly version = "2.12.0";
|
|
15601
15777
|
protected readonly profile: _angular_core.WritableSignal<ViewerProfile>;
|
|
15602
15778
|
protected readonly initial: _angular_core.Signal<string>;
|
|
15603
15779
|
protected readonly usage: _angular_core.WritableSignal<LocalStorageUsageSummary | null>;
|
|
@@ -15831,6 +16007,146 @@ declare class PresentationSubtitleBarComponent implements OnChanges {
|
|
|
15831
16007
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PresentationSubtitleBarComponent, "pptx-presentation-subtitle-bar", never, { "visible": { "alias": "visible"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
15832
16008
|
}
|
|
15833
16009
|
|
|
16010
|
+
/**
|
|
16011
|
+
* presentation-toolbar-view.ts: the literal class tokens and the auto-hide
|
|
16012
|
+
* state machine behind {@link PresentationToolbarComponent}.
|
|
16013
|
+
*
|
|
16014
|
+
* Neither lives in the component itself, for two reasons:
|
|
16015
|
+
*
|
|
16016
|
+
* - Tailwind is told to scan `src/viewer/**\/*.ts` and the vendored shared
|
|
16017
|
+
* source, and nothing else (see `src/styles/pptx-angular-viewer.css`). A
|
|
16018
|
+
* utility class written straight into a component's external `.html` is
|
|
16019
|
+
* therefore never emitted, and the control silently renders unstyled. Every
|
|
16020
|
+
* literal class the toolbar template needs is declared here so the scanner
|
|
16021
|
+
* sees it; the rest come from shared's `PRESENT_TOOLBAR_CLASSES`, which the
|
|
16022
|
+
* scanner also covers.
|
|
16023
|
+
* - This package has no TestBed (see `vitest.config.ts`), so any toolbar
|
|
16024
|
+
* behaviour worth asserting has to be reachable without rendering it.
|
|
16025
|
+
*/
|
|
16026
|
+
/** Annotation-tool toggle, tinted when the tool is armed. */
|
|
16027
|
+
declare function presentToolbarToggleClass(active: boolean): string;
|
|
16028
|
+
/**
|
|
16029
|
+
* "Clear annotations". The red hover tint is withheld while the button is
|
|
16030
|
+
* disabled so a strokeless slide does not advertise an action that cannot run.
|
|
16031
|
+
*/
|
|
16032
|
+
declare function presentToolbarClearClass(hasAnnotations: boolean): string;
|
|
16033
|
+
/** One colour swatch in a palette popover. */
|
|
16034
|
+
declare function presentToolbarSwatchClass(selected: boolean): string;
|
|
16035
|
+
/**
|
|
16036
|
+
* The show toolbar's auto-hide countdown, mirroring React's
|
|
16037
|
+
* `PresentationToolbarWrapper`: any pointer movement shows the bar, and it
|
|
16038
|
+
* fades out again after {@link AUTO_HIDE_DELAY_MS} of stillness unless the
|
|
16039
|
+
* pointer is resting on the bar itself.
|
|
16040
|
+
*
|
|
16041
|
+
* Split out of the component because a presenter losing the bar mid-show (or
|
|
16042
|
+
* never getting it back) is the failure this logic exists to prevent, and it
|
|
16043
|
+
* cannot be exercised through a component this package cannot mount.
|
|
16044
|
+
*/
|
|
16045
|
+
declare class PresentToolbarAutoHide {
|
|
16046
|
+
private readonly setVisible;
|
|
16047
|
+
private timer;
|
|
16048
|
+
private hovering;
|
|
16049
|
+
constructor(setVisible: (visible: boolean) => void);
|
|
16050
|
+
/** Pointer moved anywhere: show the bar and restart the countdown. */
|
|
16051
|
+
poke(): void;
|
|
16052
|
+
/** Pointer entered the bar: keep it up for as long as it rests there. */
|
|
16053
|
+
enter(): void;
|
|
16054
|
+
/** Pointer left the bar: resume the countdown. */
|
|
16055
|
+
leave(): void;
|
|
16056
|
+
/** Drop the pending timer (component teardown). */
|
|
16057
|
+
dispose(): void;
|
|
16058
|
+
private restart;
|
|
16059
|
+
private cancel;
|
|
16060
|
+
}
|
|
16061
|
+
|
|
16062
|
+
/** The control ids that run an action (dividers and readouts are inert). */
|
|
16063
|
+
type PresentToolbarAction = 'previous' | 'next' | 'laser' | 'pen' | 'pen-color' | 'highlighter' | 'highlighter-color' | 'eraser' | 'clear' | 'presenter-view' | 'end';
|
|
16064
|
+
/** Which colour palette popover is open, if any. */
|
|
16065
|
+
type OpenPalette = 'none' | 'pen' | 'highlighter';
|
|
16066
|
+
declare class PresentationToolbarComponent {
|
|
16067
|
+
/** Zero-based index of the slide on screen. */
|
|
16068
|
+
readonly currentSlideIndex: _angular_core.InputSignal<number>;
|
|
16069
|
+
readonly totalSlides: _angular_core.InputSignal<number>;
|
|
16070
|
+
/**
|
|
16071
|
+
* Epoch ms the show started. Defaults to this bar's own construction, which
|
|
16072
|
+
* IS the moment the show overlay appeared, so the readout ticks from zero
|
|
16073
|
+
* even for a host that tracks no start time of its own.
|
|
16074
|
+
*/
|
|
16075
|
+
readonly presentationStartTime: _angular_core.InputSignal<number | null>;
|
|
16076
|
+
/** Whether presenter view is currently up (tints the toggle). */
|
|
16077
|
+
readonly presenterMode: _angular_core.InputSignal<boolean>;
|
|
16078
|
+
/** Step the show by one slide (`-1` back, `1` forward). */
|
|
16079
|
+
readonly move: _angular_core.OutputEmitterRef<1 | -1>;
|
|
16080
|
+
/** Leave the show. */
|
|
16081
|
+
readonly endPresentation: _angular_core.OutputEmitterRef<void>;
|
|
16082
|
+
/** Swap between the fullscreen show and presenter view. */
|
|
16083
|
+
readonly presenterViewToggle: _angular_core.OutputEmitterRef<void>;
|
|
16084
|
+
protected readonly annotations: PresentationAnnotationsService;
|
|
16085
|
+
private readonly host;
|
|
16086
|
+
protected readonly ui: {
|
|
16087
|
+
readonly end: "flex items-center justify-center w-9 h-9 rounded-md transition-colors text-white/70 hover:text-white hover:bg-white/10 disabled:text-white/20 disabled:cursor-not-allowed hover:text-red-400";
|
|
16088
|
+
readonly icon: "h-[18px] w-[18px]";
|
|
16089
|
+
readonly caretIcon: "h-3 w-3";
|
|
16090
|
+
readonly timerIcon: "h-3.5 w-3.5";
|
|
16091
|
+
readonly group: "relative flex items-center";
|
|
16092
|
+
readonly penColors: string[];
|
|
16093
|
+
readonly highlighterColors: string[];
|
|
16094
|
+
readonly toggleClass: typeof presentToolbarToggleClass;
|
|
16095
|
+
readonly clearClass: typeof presentToolbarClearClass;
|
|
16096
|
+
readonly swatchClass: typeof presentToolbarSwatchClass;
|
|
16097
|
+
readonly container: "flex items-center gap-1 px-3 py-2 rounded-xl bg-neutral-900/90 backdrop-blur-md border border-white/15 shadow-2xl";
|
|
16098
|
+
readonly wrapper: "absolute bottom-6 left-1/2 -translate-x-1/2 z-[80] transition-opacity duration-300";
|
|
16099
|
+
readonly button: "flex items-center justify-center w-9 h-9 rounded-md transition-colors text-white/70 hover:text-white hover:bg-white/10 disabled:text-white/20 disabled:cursor-not-allowed";
|
|
16100
|
+
readonly toggle: "relative flex items-center justify-center w-9 h-9 rounded-md transition-colors text-white/70 hover:text-white hover:bg-white/10";
|
|
16101
|
+
readonly toggleActive: "relative flex items-center justify-center w-9 h-9 rounded-md transition-colors bg-white/25 text-white";
|
|
16102
|
+
readonly caret: "flex items-center justify-center w-7 h-9 -ml-1 rounded-r-md transition-colors text-white/50 hover:text-white hover:bg-white/10";
|
|
16103
|
+
readonly divider: "w-px h-6 bg-white/20 mx-1";
|
|
16104
|
+
readonly counter: "text-xs font-mono tabular-nums text-white/80 px-1.5 select-none min-w-[48px] text-center";
|
|
16105
|
+
readonly timer: "flex items-center gap-1.5 text-xs font-mono tabular-nums text-white/60 px-1 select-none";
|
|
16106
|
+
readonly palette: "absolute bottom-full left-1/2 -translate-x-1/2 mb-2 p-3 w-max bg-neutral-800 rounded-lg border border-white/20 shadow-xl grid grid-cols-4 gap-2";
|
|
16107
|
+
readonly swatch: "w-9 h-9 rounded-full border-2 transition-transform hover:scale-110";
|
|
16108
|
+
readonly swatchBar: "absolute bottom-0.5 left-1/2 -translate-x-1/2 w-3 h-0.5 rounded-full";
|
|
16109
|
+
};
|
|
16110
|
+
protected readonly openPalette: _angular_core.WritableSignal<OpenPalette>;
|
|
16111
|
+
protected readonly visible: _angular_core.WritableSignal<boolean>;
|
|
16112
|
+
private readonly mountedAt;
|
|
16113
|
+
private readonly now;
|
|
16114
|
+
protected readonly counterLabel: _angular_core.Signal<string>;
|
|
16115
|
+
protected readonly elapsedLabel: _angular_core.Signal<string>;
|
|
16116
|
+
protected readonly atFirstSlide: _angular_core.Signal<boolean>;
|
|
16117
|
+
protected readonly atLastSlide: _angular_core.Signal<boolean>;
|
|
16118
|
+
protected readonly hasAnnotations: _angular_core.Signal<boolean>;
|
|
16119
|
+
private readonly autoHide;
|
|
16120
|
+
constructor();
|
|
16121
|
+
/**
|
|
16122
|
+
* Mirrors React's `PresentationToolbarWrapper`: the shared bottom-trigger
|
|
16123
|
+
* zone is tested against the show surface first, then any other movement
|
|
16124
|
+
* shows the bar too. Both arms re-arm the countdown, so a presenter who
|
|
16125
|
+
* stops moving loses the chrome after three seconds and gets it straight
|
|
16126
|
+
* back on the next twitch.
|
|
16127
|
+
*/
|
|
16128
|
+
protected onDocumentMouseMove(event: MouseEvent): void;
|
|
16129
|
+
protected onMouseEnter(): void;
|
|
16130
|
+
protected onMouseLeave(): void;
|
|
16131
|
+
/** A press outside the bar dismisses whichever colour palette is open. */
|
|
16132
|
+
protected onDocumentMouseDown(event: MouseEvent): void;
|
|
16133
|
+
/**
|
|
16134
|
+
* Every control is bound for both `click` and `touchend`, and both stop
|
|
16135
|
+
* propagation: the show surface advances the deck on click, so a press on
|
|
16136
|
+
* the bar that bubbled would also skip a slide. The touch path additionally
|
|
16137
|
+
* suppresses the synthesized click so one tap does not fire twice.
|
|
16138
|
+
*/
|
|
16139
|
+
protected onControlClick(event: MouseEvent, action: PresentToolbarAction): void;
|
|
16140
|
+
protected onControlTouch(event: TouchEvent, action: PresentToolbarAction): void;
|
|
16141
|
+
/** Pick a swatch. Choosing a colour also arms the tool it belongs to. */
|
|
16142
|
+
protected pickColor(event: Event, kind: 'pen' | 'highlighter', color: string): void;
|
|
16143
|
+
private run;
|
|
16144
|
+
private selectTool;
|
|
16145
|
+
private togglePalette;
|
|
16146
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PresentationToolbarComponent, never>;
|
|
16147
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PresentationToolbarComponent, "pptx-presentation-toolbar", never, { "currentSlideIndex": { "alias": "currentSlideIndex"; "required": true; "isSignal": true; }; "totalSlides": { "alias": "totalSlides"; "required": true; "isSignal": true; }; "presentationStartTime": { "alias": "presentationStartTime"; "required": false; "isSignal": true; }; "presenterMode": { "alias": "presenterMode"; "required": false; "isSignal": true; }; }, { "move": "move"; "endPresentation": "endPresentation"; "presenterViewToggle": "presenterViewToggle"; }, never, never, true, never>;
|
|
16148
|
+
}
|
|
16149
|
+
|
|
15834
16150
|
/**
|
|
15835
16151
|
* transition-helpers.ts
|
|
15836
16152
|
*
|
|
@@ -16024,6 +16340,28 @@ declare class PresenterViewComponent {
|
|
|
16024
16340
|
protected readonly elapsedMs: _angular_core.Signal<number>;
|
|
16025
16341
|
protected readonly elapsedLabel: _angular_core.Signal<string>;
|
|
16026
16342
|
private readonly timerProgress;
|
|
16343
|
+
/**
|
|
16344
|
+
* Whether Previous / Next are unusable, straight from the shared rule.
|
|
16345
|
+
*
|
|
16346
|
+
* Next is NEVER disabled: PowerPoint's console advances from the last slide
|
|
16347
|
+
* to the end-of-show screen and then out of the show, so gating it on
|
|
16348
|
+
* `index >= slides.length - 1` (as this component used to) strands the
|
|
16349
|
+
* presenter on the final slide with no way to finish, and the audience
|
|
16350
|
+
* display never closes either.
|
|
16351
|
+
*/
|
|
16352
|
+
protected readonly prevDisabled: _angular_core.Signal<boolean>;
|
|
16353
|
+
protected readonly nextDisabled: _angular_core.Signal<boolean>;
|
|
16354
|
+
/**
|
|
16355
|
+
* The console zoom, applied to the current-slide pane.
|
|
16356
|
+
*
|
|
16357
|
+
* The pane used to hard-code `[zoom]="1"`, so the strip's zoom buttons
|
|
16358
|
+
* mutated the snapshot (and the audience display honoured it) while the
|
|
16359
|
+
* presenter's own pane never moved a pixel. Scaling the STAGE wrapper rather
|
|
16360
|
+
* than the canvas mirrors React's `PresenterSlideFrame`: the canvas keeps
|
|
16361
|
+
* auto-fitting its (layout-measured, transform-immune) viewport, and the
|
|
16362
|
+
* zoom rides on top of that fit about the snapshot's focal point.
|
|
16363
|
+
*/
|
|
16364
|
+
protected readonly previewStageStyle: _angular_core.Signal<StyleMap>;
|
|
16027
16365
|
protected readonly timerPercent: _angular_core.Signal<number>;
|
|
16028
16366
|
protected readonly progressValue: _angular_core.Signal<number>;
|
|
16029
16367
|
protected readonly slideBadge: _angular_core.Signal<string>;
|
|
@@ -16041,6 +16379,13 @@ declare class PresenterViewComponent {
|
|
|
16041
16379
|
protected increaseNotesFontSize(): void;
|
|
16042
16380
|
protected decreaseNotesFontSize(): void;
|
|
16043
16381
|
protected onToggleAudienceWindow(): void;
|
|
16382
|
+
/**
|
|
16383
|
+
* Move the console onto the audience's screen and vice versa (PowerPoint's
|
|
16384
|
+
* "Swap Displays"). Best-effort: the underlying Window Management API is not
|
|
16385
|
+
* universally available, so a `false` result is not an error, it is a browser
|
|
16386
|
+
* that will not move windows for us.
|
|
16387
|
+
*/
|
|
16388
|
+
protected onSwapDisplays(): void;
|
|
16044
16389
|
private withTemplate;
|
|
16045
16390
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PresenterViewComponent, never>;
|
|
16046
16391
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PresenterViewComponent, "pptx-presenter-view", never, { "slides": { "alias": "slides"; "required": true; "isSignal": true; }; "currentSlideIndex": { "alias": "currentSlideIndex"; "required": true; "isSignal": true; }; "canvasSize": { "alias": "canvasSize"; "required": true; "isSignal": true; }; "templateElements": { "alias": "templateElements"; "required": false; "isSignal": true; }; "mediaDataUrls": { "alias": "mediaDataUrls"; "required": false; "isSignal": true; }; "presentationStartTime": { "alias": "presentationStartTime"; "required": false; "isSignal": true; }; "isAudienceWindowOpen": { "alias": "isAudienceWindowOpen"; "required": false; "isSignal": true; }; }, { "movePresentationSlide": "movePresentationSlide"; "exit": "exit"; "openAudienceWindow": "openAudienceWindow"; "closeAudienceWindow": "closeAudienceWindow"; "navigateToSlide": "navigateToSlide"; }, never, never, true, never>;
|
|
@@ -16082,8 +16427,8 @@ declare class MobilePresenterViewComponent {
|
|
|
16082
16427
|
protected readonly notes: _angular_core.Signal<pptx_angular_viewer.PresenterNotes>;
|
|
16083
16428
|
protected readonly elapsedLabel: _angular_core.Signal<string>;
|
|
16084
16429
|
protected readonly counterLabel: _angular_core.Signal<string>;
|
|
16085
|
-
protected readonly
|
|
16086
|
-
protected readonly
|
|
16430
|
+
protected readonly prevDisabled: _angular_core.Signal<boolean>;
|
|
16431
|
+
protected readonly nextDisabled: _angular_core.Signal<boolean>;
|
|
16087
16432
|
/** Next-slide thumbnail box (CSS px); width drives the slide-canvas autoFit. */
|
|
16088
16433
|
protected readonly thumbStyle: _angular_core.Signal<{
|
|
16089
16434
|
width: string;
|
|
@@ -16097,47 +16442,37 @@ declare class MobilePresenterViewComponent {
|
|
|
16097
16442
|
/**
|
|
16098
16443
|
* presenter-view-helpers.ts
|
|
16099
16444
|
*
|
|
16100
|
-
* Helpers for `PresenterViewComponent`:
|
|
16101
|
-
*
|
|
16102
|
-
*
|
|
16103
|
-
*
|
|
16104
|
-
*
|
|
16105
|
-
*
|
|
16106
|
-
*
|
|
16107
|
-
*
|
|
16108
|
-
*
|
|
16109
|
-
*
|
|
16110
|
-
*
|
|
16111
|
-
*
|
|
16112
|
-
*
|
|
16113
|
-
*
|
|
16445
|
+
* Helpers for `PresenterViewComponent`: rich-notes segment -> view-model
|
|
16446
|
+
* derivation, elapsed-time derivation, and current/next-slide selection.
|
|
16447
|
+
*
|
|
16448
|
+
* Everything genuinely pure now lives in `pptx-viewer-shared` and is re-exported
|
|
16449
|
+
* here so existing Angular imports of `./presenter-view-helpers` keep resolving.
|
|
16450
|
+
* The three forks this file used to carry are gone, and each of them was a real
|
|
16451
|
+
* divergence rather than a stylistic one:
|
|
16452
|
+
*
|
|
16453
|
+
* - `formatElapsed` clamped negative input while shared's did not, so the two
|
|
16454
|
+
* disagreed on a snapshot restored from a peer with a future start time. The
|
|
16455
|
+
* clamp now happens where the elapsed value is COMPUTED (see
|
|
16456
|
+
* {@link elapsedSince} and the presentation toolbar), which is the only place
|
|
16457
|
+
* that can tell a negative duration from a legitimate one.
|
|
16458
|
+
* - `computeTimerProgress` / `TIMER_SEGMENT_MS` re-derived the console's
|
|
16459
|
+
* five-minute progress segment that shared now owns as
|
|
16460
|
+
* `presenterTimerProgress` / `PRESENTER_TIMER_SEGMENT_MS`.
|
|
16461
|
+
* - `buildNotesSegments` emitted `font-size` in **px** where shared's
|
|
16462
|
+
* `notesSegmentsToSpans` emits **pt**, so a 12pt notes run rendered at 12px
|
|
16463
|
+
* in Angular and 16px in every other binding. It now delegates and only
|
|
16464
|
+
* rewrites the camelCase keys into the kebab-case {@link StyleMap} the
|
|
16465
|
+
* Angular template binds through `ngStyle`; the UNIT is shared's.
|
|
16114
16466
|
*
|
|
16115
16467
|
* Kept TestBed-free (vitest + happy-dom). ng-packagr lib-target constraints:
|
|
16116
|
-
* no `String.prototype.replaceAll`, no
|
|
16468
|
+
* no `String.prototype.replaceAll`, no `Array.prototype.at`/`findLastIndex`,
|
|
16469
|
+
* no regex named-capture-groups.
|
|
16117
16470
|
*
|
|
16118
16471
|
* `slideLabel` accepts an optional `TranslateService` so callers with access
|
|
16119
16472
|
* to one get translated text; callers without one (e.g. plain unit tests)
|
|
16120
16473
|
* still get the English fallback.
|
|
16121
16474
|
*/
|
|
16122
16475
|
|
|
16123
|
-
/**
|
|
16124
|
-
* Format a millisecond duration as MM:SS, or HH:MM:SS when the elapsed
|
|
16125
|
-
* time is one hour or longer. Sub-second values are floored; negative inputs
|
|
16126
|
-
* are treated as zero.
|
|
16127
|
-
*/
|
|
16128
|
-
declare function formatElapsed(elapsedMs: number): string;
|
|
16129
|
-
interface TimerProgress {
|
|
16130
|
-
/** Fill percentage of the current segment, clamped to [0, 100]. */
|
|
16131
|
-
percent: number;
|
|
16132
|
-
/** Zero-based index of the current 5-minute segment. */
|
|
16133
|
-
segment: number;
|
|
16134
|
-
}
|
|
16135
|
-
/**
|
|
16136
|
-
* Derive the timer progress-bar fill (percent within the current 5-minute
|
|
16137
|
-
* segment) and the segment index from an elapsed duration. Mirrors the React
|
|
16138
|
-
* PresenterView `timerProgress` / `timerSegment` computation.
|
|
16139
|
-
*/
|
|
16140
|
-
declare function computeTimerProgress(elapsedMs: number): TimerProgress;
|
|
16141
16476
|
/** A single rendered notes token for the presenter notes pane. */
|
|
16142
16477
|
interface NotesSegmentViewModel {
|
|
16143
16478
|
/** Stable key for `@for` tracking. */
|
|
@@ -17039,8 +17374,7 @@ interface AnimationPresetCategory {
|
|
|
17039
17374
|
tone: string;
|
|
17040
17375
|
presets: readonly AnimationPresetEntry[];
|
|
17041
17376
|
}
|
|
17042
|
-
|
|
17043
|
-
declare function animationPresetLabelKey(preset: PptxAnimationPreset): string;
|
|
17377
|
+
|
|
17044
17378
|
/**
|
|
17045
17379
|
* The gallery's columns, in the catalogue's own order.
|
|
17046
17380
|
*
|
|
@@ -17974,8 +18308,21 @@ declare function resolveCaptionTracks(tracks: readonly MediaCaptionTrack[] | und
|
|
|
17974
18308
|
*
|
|
17975
18309
|
* On the interactive (edit) canvas native controls are suppressed and pointer
|
|
17976
18310
|
* events are disabled so a click selects / moves the element rather than
|
|
17977
|
-
* scrubbing playback
|
|
17978
|
-
*
|
|
18311
|
+
* scrubbing playback.
|
|
18312
|
+
*
|
|
18313
|
+
* They are suppressed during a SHOW too, which the `interactive` gate alone got
|
|
18314
|
+
* backwards: a running show is non-interactive, so it turned the transport ON,
|
|
18315
|
+
* and a full-bleed background video then painted Chrome's own black scrubber
|
|
18316
|
+
* across the bottom of the slide, over the presentation toolbar. PowerPoint
|
|
18317
|
+
* shows no transport during a show either; React gates on the same condition
|
|
18318
|
+
* (`controls={!isPresentationMode}`).
|
|
18319
|
+
*
|
|
18320
|
+
* The same `interactive` gate turned it on for every STILL of a slide as well
|
|
18321
|
+
* (the presenter console's current-slide pane and next-slide preview, the
|
|
18322
|
+
* thumbnail rail), so the console painted a scrubber over a slide the speaker
|
|
18323
|
+
* cannot play. {@link showControls} routes the decision through the shared
|
|
18324
|
+
* `mediaTransportVisible`, which owns the show/still rules for all five
|
|
18325
|
+
* bindings and leaves the authoring canvas to each of them.
|
|
17979
18326
|
*/
|
|
17980
18327
|
declare class MediaRendererComponent {
|
|
17981
18328
|
/** The element to render. Playback only occurs when `type === 'media'`. */
|
|
@@ -17995,6 +18342,16 @@ declare class MediaRendererComponent {
|
|
|
17995
18342
|
/** The live `<video>`/`<audio>` node (only one is mounted at a time). */
|
|
17996
18343
|
private readonly mediaElRef;
|
|
17997
18344
|
constructor();
|
|
18345
|
+
/**
|
|
18346
|
+
* Whether to paint the browser's native transport.
|
|
18347
|
+
*
|
|
18348
|
+
* `canvasTransport: false` is this binding's own long-standing answer for its
|
|
18349
|
+
* authoring canvas: a click there selects or moves the picture, so a scrubber
|
|
18350
|
+
* would only steal the gesture (the element also carries `pptx-ng-media-inert`
|
|
18351
|
+
* for the same reason). React paints one on its canvas; that difference is
|
|
18352
|
+
* deliberate and is the only thing the shared rule leaves to the binding.
|
|
18353
|
+
*/
|
|
18354
|
+
readonly showControls: _angular_core.Signal<boolean>;
|
|
17998
18355
|
readonly containerStyle: _angular_core.Signal<StyleMap>;
|
|
17999
18356
|
/** Poster / preview frame data-URL (also used as the `<video poster>`). */
|
|
18000
18357
|
readonly poster: _angular_core.Signal<string | undefined>;
|
|
@@ -18401,6 +18758,17 @@ declare class TitleBarSearchComponent {
|
|
|
18401
18758
|
* slide-stage clicks.
|
|
18402
18759
|
*/
|
|
18403
18760
|
declare function isViewportBackgroundPressTarget(target: EventTarget | null, currentTarget: EventTarget | null): boolean;
|
|
18761
|
+
/**
|
|
18762
|
+
* Which elements the on-canvas action affordances (amber "has action" badge +
|
|
18763
|
+
* hover link tooltip) may decorate.
|
|
18764
|
+
*
|
|
18765
|
+
* An inherited master/layout shape is inert until edit-template mode is on, so
|
|
18766
|
+
* it must not advertise an action the user cannot reach yet; that mirrors
|
|
18767
|
+
* React's `canInteract` gate, which is off for the template layer until the
|
|
18768
|
+
* mode is enabled. Split out of the component's post-render effect so it is
|
|
18769
|
+
* testable without a TestBed, like the rest of this package.
|
|
18770
|
+
*/
|
|
18771
|
+
declare function affordanceElements<T>(elements: readonly T[], editTemplateMode: boolean, isTemplate: (element: T) => boolean): readonly T[];
|
|
18404
18772
|
|
|
18405
18773
|
/**
|
|
18406
18774
|
* Pure helpers for the slide-sorter overlay thumbnail grid.
|
|
@@ -18430,5 +18798,5 @@ declare function thumbnailHeight(canvasW: number, canvasH: number, thumbW: numbe
|
|
|
18430
18798
|
*/
|
|
18431
18799
|
declare function gridColumns(containerW: number, thumbW: number, gap: number, maxCols: number): number;
|
|
18432
18800
|
|
|
18433
|
-
export { ALIGN_OPTIONS, ANIMATION_PRESET_CATEGORIES, AUDIENCE_HASH, AUDIENCE_NONCE_KEY, AVATAR_COLOR_SWATCHES, AccessibilityPanelComponent, AccessibilityService, AccountPageComponent, ActionSettingsPanelComponent, AdvancedChartEditorComponent, AiChangeOverlayComponent, AiChatPanelComponent, AiChatService, AiComposerComponent, AiFocusBarComponent, AiFocusHighlightOverlayComponent, AiMessageListComponent, AiPanelStore, AiProposalCardComponent, AiSettingsSectionComponent, AiToolCallCardComponent, AnimationAuthorPanelComponent, AnimationPanelComponent, AnimationPlaybackService, AutosaveService, BroadcastDialogComponent, CHART_EDITOR_STYLES, CURSOR_PALETTE, CanvasFitService, ChartAxisOptionsComponent, ChartAxisStyleOptionsComponent, ChartComboTypeOptionsComponent, ChartDataEditorComponent, ChartDataLabelOptionsComponent, ChartDatapointMarkerOptionsComponent, ChartDatapointOptionsComponent, ChartDisplayOptionsComponent, ChartElementViewComponent, ChartErrorBarOptionsComponent, ChartMarkerOptionsComponent, ChartPartSelectionService, ChartPrimitivesComponent, ChartRendererComponent, ChartTrendlineOptionsComponent, CollaborationCursorsComponent, CollaborationService, ColorChangedImageComponent, CommentsPanelComponent, CommentsService, ComparePanelComponent, ConnectorRendererComponent, ConnectorTextOverlayComponent, CustomShowsComponent, DATA_TABLE_HEADER_H, DATA_TABLE_KEY_W, DATA_TABLE_PADDING, DATA_TABLE_ROW_H, DEFAULT_BOUNDS, DEFAULT_BROADCAST_SERVER_URL, DEFAULT_CANVAS_HEIGHT, DEFAULT_CANVAS_WIDTH, DEFAULT_COLOR_SCHEME, DEFAULT_FILL_COLOR, DEFAULT_LAYOUT, DEFAULT_PALETTE$1 as DEFAULT_PALETTE, DEFAULT_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, GradientPickerComponent, HANDOUT_OPTIONS, HeaderFooterDialogComponent, HyperlinkDialogComponent, ImagePropertiesPanelComponent, InkDrawingService, InkRendererComponent, InsertSmartArtDialogComponent, InspectorPaneHeaderComponent, InspectorPanelComponent, IsMobileService, KeepAnnotationsDialogComponent, LOCALE_CATALOG, LONG_PRESS_DURATION_MS, LONG_PRESS_MOVE_TOLERANCE_PX, LoadContentService, LocalPresencePublisher, MAX_ZOOM_SCALE, MIN_ZOOM_SCALE, MOTION_PATH_COLUMNS, MediaPreviewComponent, MediaPropertiesPanelComponent, MediaRendererComponent, MediaTrimTimelineComponent, MobileBottomBarComponent, MobileMenuSheetComponent, MobilePresenterViewComponent, MobileSheetComponent, MobileSlidesSheetComponent, MobileToolbarComponent, ModalDialogComponent, Model3DRendererComponent, NotesHandoutCardComponent, NotesPanelComponent, NotesToolbarComponent, OleRendererComponent, OutlineViewOverlayComponent, POWER_POINT_VIEWER_PROVIDERS, PRESENTER_CHANNEL_NAME, PRESENTER_MSG_ORIGIN, PX_PER_CM, PX_PER_INCH, PasswordProtectionDialogComponent, PasswordStrengthMeterComponent, PowerPointViewerComponent, PresentationAnnotationOverlayComponent, PresentationAnnotationsService, PresentationOverlayComponent, PresentationPropertiesPanelComponent, PresentationSettingsCardComponent, PresentationSubtitleBarComponent, PresentationTransitionOverlayComponent, PresenterViewComponent, PresenterWindowService, PrintDialogComponent, PrintService, PrintSettingsPanelComponent, PropertiesDialogComponent, REPEAT_MODE_OPTIONS, RESIZE_HANDLES, RULER_FONT_SIZE, RULER_THICKNESS, ReadingViewOverlayComponent, RemoteSelectionOverlayComponent, RibbonAnimationGalleryComponent, RibbonAnimationsSectionComponent, RibbonArrangeSectionComponent, RibbonColorPopoverComponent, RibbonComponent, RibbonDesignSectionComponent, RibbonDrawSectionComponent, RibbonDrawingGroupComponent, RibbonEditingSectionComponent, RibbonFileSectionComponent, RibbonFontControlsComponent, RibbonHomeSectionComponent, RibbonHyperlinkButtonComponent, RibbonInsertFieldsComponent, RibbonInsertSectionComponent, RibbonMotionPathGalleryComponent, RibbonParagraphControlsComponent, RibbonPrimaryRowComponent, RibbonReviewSectionComponent, RibbonShapeExtrasComponent, RibbonSlideshowSectionComponent, RibbonTransitionsSectionComponent, RibbonViewSectionComponent, RulerGuidesService, SEQUENCE_OPTIONS, SEVERITY_GROUPS, SEVERITY_LABELS, SHORTCUT_REFERENCE_ITEMS, SLIDE_TRANSITION_KEYFRAMES, DEFAULT_PALETTE as SMARTART_DEFAULT_PALETTE, PALETTES as SMARTART_PALETTES, SMART_ART_COLOR_SCHEMES, SMART_ART_STYLE_OPTIONS, SUB_ITEM_LABEL, SVG_WARP_PRESETS, SWIPE_MAX_VERTICAL_PX, SWIPE_THRESHOLD_PX, SelectionPaneComponent, SetUpSlideShowDialogComponent, SettingsAppearanceTabComponent, SettingsDialogComponent, SettingsLanguageTabComponent, ShareDialogComponent, ShortcutPanelComponent, ShowOptionsFieldsetComponent, ShowSlidesFieldsetComponent, SignatureStrippedDialogComponent, SignaturesPanelComponent, SignaturesService, SlideBackgroundCardComponent, SlideCanvasComponent, SlideDefaultInspectorComponent, SlideDiffChangesComponent, SlideDiffRowComponent, SlideDiffThumbnailsComponent, SlideSizeCardComponent, SlideSorterOverlayComponent, SlideThemeOverridePanelComponent, SlideTransitionCardComponent, SlidesPanelComponent, SmartArt3DRendererComponent, SmartArt3DService, SmartArtPreviewComponent, SmartArtPropertiesComponent, SmartArtRendererComponent, StatusBarComponent, TABLE_STRUCTURE_TOGGLES, TEXT_3D_BOTTOM_BEVEL_KEYS, TEXT_3D_TOP_BEVEL_KEYS, TEXT_DIRECTION_OPTIONS, THEME_CATALOG, TIMING_CURVE_OPTIONS, TRIGGER_OPTIONS, TYPE_LABELS, TableCellAdvancedFillComponent, TableCellFormattingComponent, TableDataEditorComponent, TablePropertiesComponent, TableRendererComponent, TableResizeOverlayComponent, TableSelectionService, TagsCardComponent, Text3DBevelSectionComponent, Text3DPanelComponent, TextAdvancedPanelComponent, ThemeEditorFieldsComponent, ThemeGalleryComponent, ThemeSelectorCardComponent, TitleBarComponent, 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, ZoomNavigationService, ZoomRendererComponent, ZoomTargetService, addCategory, addCommentToList, addGradientStopPatch, addItem, addSeries, addSubItem, advanceStep, aiToggleVisible, alignPatch, animationFor, animationPresetLabelKey, annotationMapToInkInserts, applyAcceptedDiff, applyAnimationPreset, applyFindReplacements, applyFormatToElement, applyMove, applyResize, applyTableStylePreset, asMediaElement, assignUserColor, attachTouchGestures, beginNodeEdit, bevelSizePatch, boolFromEvent, bringForward, bringToFront, buildBarActions, buildBroadcastConfig, buildBroadcastViewerUrl, buildCategoryLabels, buildCellParagraphs, buildChartViewModel, buildChatLogExport, buildChatLogMarkdown, buildChromeStyle, buildClearHyperlinkPatch, buildClickGroups, buildColStyles, buildCollaborationConfig, buildComboViewModel, buildCssGradientFromShapeStyle, buildDuotoneFilter, buildDuotoneFilterId, buildEmbeddedFontStyles, buildEquationElement, buildEquationSegment, buildFallbackViewModel, buildFontFaceRule, buildGradientFillCss, buildGridlinesAndLabels, buildHyperlinkPatch, buildInkContainerStyle, buildInkStrokes, buildLegend, buildModel3DContainerStyle, buildModel3DViewModel, buildOleActionModel, buildOleInfoRows, buildPatternFillCss, buildPrintHtmlDocument as buildPrintDocument, buildPropertiesPatch, buildRegionMapViewModel, buildSaveSlides, buildShareUrl, buildSmartArtInsertElement, buildSmartArtNodes, buildStockViewModel, buildSurfaceViewModel, buildTableViewModel, buildTreemapViewModel, buildTrimFragment, buildWaterfallViewModel, buildZeroLine, buildZoomContainerStyle, buildZoomViewModel, bulletIndentPx, canAddTopLevelNode, canGroupSelection, canRemoveTopLevelNode, canSetStrokeWidth, canStartBroadcast, canStartShare, canUngroupSelection, canUseClipboard, captionDisplayText, cellRunStyle, cellStyleToStyleMap, cellTdStyle, changeCountLabel, changeIcon, characterSpacingPatch, checkFontAvailable, clampCursorPosition, clampGifDimensions, clampIndex, clampNotesFontSize, clampScale, clampStep, clearAllLocalViewerData, clearAudienceContent, cn, collectAccessibilityIssues, collectElementText, collectSlideText, collectStoredChats, collectUsedFontFamilies, columnWidthStyle, commitNodeText, computeAlign, computeAxisTitlePrimitives, computeBarRects, computeBubbleRadius, computeCornerHandle, computeDataTablePrimitives, computeDistribute, computeDrawingViewBox, computeErrorBarPrimitives, computeFocusTargets, computeHandleBoxes, computeHandoutLayout, computeIsMobile, computeIsTablet, computeLinePoints, computeLinearRegression, computePageCount, computePieLayout, computePieSlicePath, computePieSlices, computePlotLayout, computeRSquared, computeRadarPoints, computeScatterDots, computeSelectionBoxes, computeSingleSelected, computeSlideIndices, computeSnap, computeStackedBarRects, computeStackedValueRange, computeTextLines, computeTimerProgress, computeTrendlinePrimitives, computeValueRange, convertOmmlToMathMl, copyFormatFromElement, countAccessibilityIssues, countAnnotationStrokes, createAngularAiBridge, createCustomShow, createSwipeDismissDrag, createWebrtcBundle, createWebsocketBundle, cssObjectToStyleMap, currentColorScheme, currentLayout, currentStyle, defaultCssVars, defaultRadius, defaultThemeColors, deleteElementsByIds, deleteVersion as deleteRecoveryVersion, demoteNode, deriveModel3DBlobUrl, derivePresenceList, describeSmartArtBounds, disableGlowPatch, disableInnerShadowPatch, disableOuterShadowPatch, disableReflectionPatch, disableSoftEdgePatch, duplicateElementById, durationOf, effectsStateOf, enableGlowPatch, enableInnerShadowPatch, enableOuterShadowPatch, enableReflectionPatch, enableSoftEdgePatch, encodeGif, estimatePageCount, evenColumnWidths, evenRowHeights, exitPresentationFullscreen, exportAiChatLogs, extractPathPoints, eyedropperAvailable, fillColorOf, findInSlides, findOwningSlideIndex, findSlideIndexByElementId, firstVisibleIndex, fitPolynomial, fitZoom, focusTargetChips, fontMimeForFormat, fontSizeOf, formatAutoNumber, formatAxisValue, formatBytes, formatCursorLabel, formatElapsed, formatFileSize, formatPropertyDate, formatTime, fpsToFrameIntervalMs, generateBroadcastRoomId, generateCommentId, generateCustomShowId, generatePressureCircles, generateTicks, getClrChangeParams, getContainerStyle, getDuotoneFilterDef, getImageSrc, getLocalStorageUsageSummary, getOleAriaLabel, getOleBadgeLabel, getOleDisplayName, getOleDownloadFileName, getOleTypeColor, getOleTypeLabel, getPasswordStrength, getPatternSvg, getPlaceholderStyle, getVersions as getRecoveryVersions, getResolvedShapeClipPath, getResolvedShapeClipPathFor, getShapeFillStrokeStyle, getSlideBackgroundStyle, getSlideTransitionAnimations, getSmartArtNodeBounds, getSpeechRecognitionCtor, getTextBlockStyle, getTextWarp, getTouchDistance, getWarpCategory, getWarpPath, gradientStateFromStyle, gradientStateOf, gradientStatePatch, gridColumns, groupElements, groupIssuesBySeverity, hasAnimation, hasCopyableFormat, hasExistingLink, hasExitedFullscreen, hasGradientFill, hasPressureVariation, hasVisibleSlideAfter, headerLabel, imageDimensions, inkViewBox, insertTableElementColumn as insertColumn, insertTableElementRow as insertRow, interpolateWidth, isAudienceTab, isBold, isBrowserOpenableMime, isChildNode, isElementInteractive, isInjectableUrl, isItalic, isPpactionUrl, isPresenterMessage, isSigned, isTextElement, isTwoTableFocus, isUnderline, isUrlSafe, isValidRoomId, isViewportBackgroundPressTarget, isZoomActivationKey, issueTrackKey, issueTypeLabel, keyToLabel, lastVisibleIndex, latexToMathml, linePointsToSvgString, lineSpacingPatch, loadAudienceContent, mergeCaptionResults, mergeDown, mergeRight, mergeSelection, moveElementBy, moveNodeDown, moveNodeUp, msToFrameDelayCs, narrowToCircle, narrowToPolygon, narrowToRect, newChartElement, newEquationElement, newPresetShapeElement, newShapeElement, newSmartArtElement, newTableElement, newTextElement, nextVisibleIndex, nodeBold, nodeEditBox, nodeFillColor, nodeFontColor, nodeIdFromKey, nodeItalic, nodeStyle, normalizeFontFormat, normalizeSlidesPerPage, normalizeValue, numFromEvent, ommlToMathml, ooxmlDashToCssBorderStyle, openNativeEyeDropper, overallStatus, paletteColor, parseAudienceNonce, parseNodeTextarea, partitionSlides, patchChartData, patchChartStyle, patchTableData, patchTextStyle, patternPresetOptions, pendingElementStyles, pickColorByClickFallback, pickFile, pickSupportedMimeType, planGifFrames, planVideoSegments, pointsToSvgPathD, presenceToCursors, presetByLayout, presetsForCategory, pressuresToWidths, prevVisibleIndex, projectDrawingShapes, promoteNode, provideViewerTheme, radarAngle, radarRingPoints, readAsDataUrl, recordWebm, redistributeColumnWidth, removeAnimation, removeCategory, removeTableElementColumn as removeColumn, removeCommentFromList, removeElementAnimation, removeGradientStopPatch, removeNode, removeTableElementRow as removeRow, removeSeries, renderToCanvas, reorderAnimationDown, reorderAnimationUp, replaceInSlides, replaceMatch, requestPresentationFullscreen, resizeElement, resolveCaptionTracks, resolveChartKind, resolveFontVariant, resolveHyperlinkHref, resolveInteractiveElementId, resolveMediaSrc, resolveOleType, resolveParagraphBullet, resolvePresenterNotes, resolveProfileInitial, resolveRegionCode, resolveSlideAutoAdvanceMs, resolvePalette as resolveSmartArtPalette, resolveThemeCatalogEntry, resolveTransitionDuration, revealedElementStyles, routeOrthogonalConnector, rowStyle, rulerDragToGuidePosition, rulerHighlight, rulerStripTicks, sampleColorFromSlide, sanitizeColor, sanitizeSlideIndex, sanitizeUserName, saveViewerProfile, scanAvailableFonts, searchSlides, seedBroadcastFields, seedHyperlinkDraft, seedPropertiesDraft, seedShareFields, segmentFrameCount, selectValue, sendBackward, sendToBack, sequentialColorScale, serializeWriteBack, seriesColor, setAnimationEmphasis, setAnimationEntrance, setAnimationExit, setAxis, setAxisLogScale, setAxisTitleStyle, setCategoryLabel, setCellText, setColorScheme, setDataLabels, setDataPointExplosion, setDataPointFill, setDataPointLabel, setDataPointMarker, setDelay, setDirection, setDuration, setElementPosition, setGridlineStyle, setLayout, setLegend, setNodeStyle, setNodeText, setRepeatCount, setRepeatMode, setSequence, setSeriesChartType, setSeriesColor, setSeriesErrorBars, setSeriesMarker, setSeriesName, setSeriesTrendline, setSeriesValue, setStyle, setTimingCurve, setTitle, setTrigger, setTriggerShapeId, shapeStylePatch, sheetAfterNavigate, shouldBlockClickAdvance, shouldUseSvgWarp, showDirectionPicker, showsTemplateAffordance, signatureCountLabel, signatureKey, signatureTimestamp, signerName, statusLabel as slideDiffStatusLabel, slideNumberOf, smartArtNodes, paletteColour as smartArtPaletteColour, snapToGridStep, splitCursorCell, splitMergedCell, statusKind, statusLabel$1 as statusLabel, storeAudienceContent, stringFromEvent, strokeColorOf, strokeToInkElement, strokeWidthOf, styleShadowFilter, textAdvancedPatch, textAdvancedStateFromStyle, textAdvancedStateOf, textColorOf, textDirectionPatch, textStyleOf, textStylePatch, themeStyle, themeToCssVars, thumbnailHeight, thumbnailZoom, toggleCommentResolvedInList, toggleNodeBold, toggleNodeItalic, toggleSheet, topLevelNodeCount, transformSelectedTextCase, translationsEn, ungroupElements, updateElementById, updateGlowPatch, updateGradientStopPatch, updateInnerShadowPatch, updateOuterShadowPatch, updateReflectionPatch, vAlignPatch, validatePassword, validatePrintSettings, validateRoomId, valueToY, vermilionDarkColors, vermilionDarkTheme, vermilionLightColors, vermilionLightTheme, vermilionRadius, waypointsToPathD, worstStatus, zoomTargetSlideIndex };
|
|
18434
|
-
export type { AccessibilityIssueGroup, AccountAuthConfig, ActionDescriptor, AiCanvasHighlight, AiChatInitState, AiLogChat, AiLogExport, AiLogFormat, AiLogMessage, AiPanelSelectionAccessors, AlignBox, AlignMode, AnimationClickGroup, AnimationGroup, AnimationPresetCategory, AnimationPresetEntry, AnimationPresetPick, AnnotationInkInsert, AnnotationStroke, AttachTouchGesturesConfig, AwarenessLike, BarRect, Box, BridgeDeps, BroadcastConfig, BroadcastDefaults, CSSProperties, CanvasSize, CellCoord, CellParagraph, CellTextRun, ChartPartRef, ChartPartSelection, ChartValueDrag, ChartViewModel, ClassValue, ClrChangeParams, CollaborationConfig, CollaborationRole, RouterRect as ConnectorObstacle, RouterPoint as ConnectorPoint, ConnectorRouting, CopiedFormat, CornerHandleBox, CustomShow, CustomThemeEdit, DestroyableYDoc, DiagonalBorderInfo, DistributeMode, DocumentProperties, DrawingViewBox, DuotoneFilterDef, EffectsState, EmbeddedFontStyles, EquationTemplate, EyedropperResult, FindOptions, FindResult, FocusChip, FocusSelectionInput, GifFrame, GifFramePlan, GifPlanOptions, GlowState, GradientState, GradientStop$1 as GradientStop, GroupResult, HandleBox, HandoutSlidesPerPage, HyperlinkDraft, InkPoint, InkStroke, InlineEditState, InnerShadowState, LegendEntry, LinePoint, LinearFit, LocalIdentity, LocalStorageUsageSummary, LocaleCatalogEntry, MobileSheetKey, Model3DViewModel, MotionPathColumn, MotionPathEntry, NodeEditBox, NotesSegmentViewModel, ObjectUrlFactory, OleActionModel, OleInfoRow, OuterShadowState, OutlineCommit, OverallSignatureStatus, PartitionedSlides, PathPoint, PieSliceGeometry, PieSliceOptions, PlotLayout, PlotLayoutOptions, PositionUpdate, PowerPointViewerAPI, PptxAiBridge, PptxAiConfig, PptxAiConnection, PptxAiContextStrategy, PptxAiElementUpdate, PptxAiToolName, PptxAiUIMessage, PptxAiWritePolicy, PresentationTool, PresenterExitMessage, PresenterMessage, PresenterNotes, PresenterSlideChangeMessage, PressureCircle, PrintColorMode, PrintHtmlDocumentOptions as PrintDocumentOptions, PrintOrientation, PrintSettings, PrintSlideRange, PrintWhat, PropertiesDraft, ProposalView, ProviderBundle, ProviderLike, RadarPoint, RecordWebmOptions, RecoveryVersion, ReflectionState, RemoteCursor, SanitizedPresence as RemotePresence, RenderedShape, ReplaceResult, ResizeHandle, ResolvedCaptionTrack, ResolvedFontVariant, ResolvedOleType, RulerUnit, ScatterDot, SelectionBox, ShapeStyleChanges, ShareDefaults$1 as ShareDefaults, ShareFormFields, ShortcutReferenceItem, SignatureStatusKind, SlideInspectorTab, SlideTransitionAnimations, SmartArtInsertEvent, SmartArtNodeBounds, SnapBox, SnapGuide, SnapResult, SoftEdgeState, SpeechAlternative, SpeechRecognitionCtor, SpeechRecognitionEventLite, SpeechRecognitionLite, SpeechResult, SpeechResultList, SpeechSupportState, StagedProposal, StrokeToInkElementOpts, StyleMap, SupportedChartKind, SvgAreaGradient, SvgCircle, SvgLine, SvgPath, SvgPolygon, SvgPolyline, SvgPrimitive, SvgRect, SvgText, SwipeDismissDrag, TableBooleanFlag, TableCellSelection, TableCellViewModel, TableRowViewModel, TemplateElementsBySlideId, Text3DBevelKeys, TextAdvancedChanges, TextAdvancedState, TextStyleChanges, TextWarpCssDef, TextWarpDef, TextWarpPathDef, ThemeCatalogEntry, Tick,
|
|
18801
|
+
export { ALIGN_OPTIONS, ANIMATION_PRESET_CATEGORIES, AUDIENCE_HASH, AUDIENCE_NONCE_KEY, AVATAR_COLOR_SWATCHES, AccessibilityPanelComponent, AccessibilityService, AccountPageComponent, ActionSettingsPanelComponent, AdvancedChartEditorComponent, AiChangeOverlayComponent, AiChatPanelComponent, AiChatService, AiComposerComponent, AiFocusBarComponent, AiFocusHighlightOverlayComponent, AiMessageListComponent, AiPanelStore, AiProposalCardComponent, AiSettingsSectionComponent, AiToolCallCardComponent, AnimationAuthorPanelComponent, AnimationPanelComponent, AnimationPlaybackService, AutosaveService, BroadcastDialogComponent, CHART_EDITOR_STYLES, CURSOR_PALETTE, CanvasFitService, ChartAxisOptionsComponent, ChartAxisStyleOptionsComponent, ChartComboTypeOptionsComponent, ChartDataEditorComponent, ChartDataLabelOptionsComponent, ChartDatapointMarkerOptionsComponent, ChartDatapointOptionsComponent, ChartDisplayOptionsComponent, ChartElementViewComponent, ChartErrorBarOptionsComponent, ChartMarkerOptionsComponent, ChartPartSelectionService, ChartPrimitivesComponent, ChartRendererComponent, ChartTrendlineOptionsComponent, CollaborationCursorsComponent, CollaborationService, ColorChangedImageComponent, CommentsPanelComponent, CommentsService, ComparePanelComponent, ConnectorRendererComponent, ConnectorTextOverlayComponent, CustomShowsComponent, DATA_TABLE_HEADER_H, DATA_TABLE_KEY_W, DATA_TABLE_PADDING, DATA_TABLE_ROW_H, DEFAULT_BOUNDS, DEFAULT_BROADCAST_SERVER_URL, DEFAULT_CANVAS_HEIGHT, DEFAULT_CANVAS_WIDTH, DEFAULT_COLOR_SCHEME, DEFAULT_FILL_COLOR, DEFAULT_LAYOUT, DEFAULT_PALETTE$1 as DEFAULT_PALETTE, DEFAULT_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, GradientPickerComponent, HANDOUT_OPTIONS, HeaderFooterDialogComponent, HyperlinkDialogComponent, ImagePropertiesPanelComponent, InkDrawingService, InkRendererComponent, InsertSmartArtDialogComponent, InspectorPaneHeaderComponent, InspectorPanelComponent, IsMobileService, KeepAnnotationsDialogComponent, LOCALE_CATALOG, LONG_PRESS_DURATION_MS, LONG_PRESS_MOVE_TOLERANCE_PX, LoadContentService, LocalPresencePublisher, MAX_ZOOM_SCALE, MIN_ZOOM_SCALE, MOTION_PATH_COLUMNS, MediaPreviewComponent, MediaPropertiesPanelComponent, MediaRendererComponent, MediaTrimTimelineComponent, MobileBottomBarComponent, MobileMenuSheetComponent, MobilePresenterViewComponent, MobileSheetComponent, MobileSlidesSheetComponent, MobileToolbarComponent, ModalDialogComponent, Model3DRendererComponent, NotesHandoutCardComponent, NotesPanelComponent, NotesToolbarComponent, OleRendererComponent, OutlineViewOverlayComponent, POWER_POINT_VIEWER_PROVIDERS, PRESENTER_CHANNEL_NAME, PRESENTER_MSG_ORIGIN, 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, ZoomNavigationService, ZoomRendererComponent, ZoomTargetService, addCategory, addCommentToList, addGradientStopPatch, addItem, addSeries, addSubItem, advanceStep, affordanceElements, aiToggleVisible, alignPatch, animationFor, animationPresetLabelKey, annotationMapToInkInserts, applyAcceptedDiff, applyAnimationPreset, applyFindReplacements, applyFormatToElement, applyMove, applyResize, applyTableStylePreset, asMediaElement, assignUserColor, attachTouchGestures, beginNodeEdit, bevelSizePatch, boolFromEvent, bringForward, bringToFront, buildBarActions, buildBroadcastConfig, buildBroadcastViewerUrl, buildCategoryLabels, buildCellParagraphs, buildChartViewModel, buildChatLogExport, buildChatLogMarkdown, buildChromeStyle, buildClearHyperlinkPatch, buildClickGroups, buildColStyles, buildCollaborationConfig, buildComboViewModel, buildCssGradientFromShapeStyle, buildDuotoneFilter, buildDuotoneFilterId, buildEmbeddedFontStyles, buildEquationElement, buildEquationSegment, buildFallbackViewModel, buildFontFaceRule, buildGradientFillCss, buildGridlinesAndLabels, buildHyperlinkPatch, buildInkContainerStyle, buildInkStrokes, buildLegend, buildModel3DContainerStyle, buildModel3DViewModel, buildOleActionModel, buildOleInfoRows, buildPatternFillCss, buildPrintHtmlDocument as buildPrintDocument, buildPropertiesPatch, buildRegionMapViewModel, buildSaveSlides, buildShareUrl, buildSmartArtInsertElement, buildSmartArtNodes, buildStockViewModel, buildSurfaceViewModel, buildTableViewModel, buildTreemapViewModel, buildTrimFragment, buildWaterfallViewModel, buildZeroLine, buildZoomContainerStyle, buildZoomViewModel, bulletIndentPx, canAddTopLevelNode, canGroupSelection, canRemoveTopLevelNode, canSetStrokeWidth, canStartBroadcast, canStartShare, canUngroupSelection, canUseClipboard, captionDisplayText, cellRunStyle, cellStyleToStyleMap, cellTdStyle, changeCountLabel, changeIcon, characterSpacingPatch, checkFontAvailable, clampCursorPosition, clampGifDimensions, clampIndex, clampNotesFontSize, clampScale, clampStep, clearAllLocalViewerData, clearAudienceContent, cn, collectAccessibilityIssues, collectElementText, collectSlideText, collectStoredChats, collectUsedFontFamilies, columnWidthStyle, commitNodeText, computeAlign, computeAxisTitlePrimitives, computeBarRects, computeBubbleRadius, computeCornerHandle, computeDataTablePrimitives, computeDistribute, computeDrawingViewBox, computeErrorBarPrimitives, computeFocusTargets, computeHandleBoxes, computeHandoutLayout, computeIsMobile, computeIsTablet, computeLinePoints, computeLinearRegression, computePageCount, computePieLayout, computePieSlicePath, computePieSlices, computePlotLayout, computeRSquared, computeRadarPoints, computeScatterDots, computeSelectionBoxes, computeSingleSelected, computeSlideIndices, computeSnap, computeStackedBarRects, computeStackedValueRange, computeTextLines, computeTrendlinePrimitives, computeValueRange, convertOmmlToMathMl, copyFormatFromElement, countAccessibilityIssues, countAnnotationStrokes, createAngularAiBridge, createCustomShow, createSwipeDismissDrag, createWebrtcBundle, createWebsocketBundle, cssObjectToStyleMap, currentColorScheme, currentLayout, currentStyle, defaultCssVars, defaultRadius, defaultThemeColors, deleteElementsByIds, deleteVersion as deleteRecoveryVersion, demoteNode, deriveModel3DBlobUrl, derivePresenceList, describeSmartArtBounds, disableGlowPatch, disableInnerShadowPatch, disableOuterShadowPatch, disableReflectionPatch, disableSoftEdgePatch, duplicateElementById, durationOf, effectsStateOf, enableGlowPatch, enableInnerShadowPatch, enableOuterShadowPatch, enableReflectionPatch, enableSoftEdgePatch, encodeGif, estimatePageCount, evenColumnWidths, evenRowHeights, exitPresentationFullscreen, exportAiChatLogs, extractPathPoints, eyedropperAvailable, fillColorOf, findInSlides, findOwningSlideIndex, findSlideIndexByElementId, firstVisibleIndex, fitPolynomial, fitZoom, focusTargetChips, fontMimeForFormat, fontSizeOf, formatAutoNumber, formatAxisValue, formatBytes, formatCursorLabel, formatElapsed, formatFileSize, formatPropertyDate, formatTime, fpsToFrameIntervalMs, generateBroadcastRoomId, generateCommentId, generateCustomShowId, generatePressureCircles, generateTicks, getClrChangeParams, getContainerStyle, getDuotoneFilterDef, getImageSrc, getLocalStorageUsageSummary, getOleAriaLabel, getOleBadgeLabel, getOleDisplayName, getOleDownloadFileName, getOleTypeColor, getOleTypeLabel, getPasswordStrength, getPatternSvg, getPlaceholderStyle, getVersions as getRecoveryVersions, getResolvedShapeClipPath, getResolvedShapeClipPathFor, getShapeFillStrokeStyle, getSlideBackgroundStyle, getSlideTransitionAnimations, getSmartArtNodeBounds, getSpeechRecognitionCtor, getTextBlockStyle, getTextWarp, getTouchDistance, getWarpCategory, getWarpPath, gradientStateFromStyle, gradientStateOf, gradientStatePatch, gridColumns, groupElements, groupIssuesBySeverity, hasAnimation, hasCopyableFormat, hasExistingLink, hasExitedFullscreen, hasGradientFill, hasPressureVariation, hasVisibleSlideAfter, headerLabel, imageDimensions, inkViewBox, insertTableElementColumn as insertColumn, insertTableElementRow as insertRow, interpolateWidth, isAudienceTab, isBold, isBrowserOpenableMime, isChildNode, isElementInteractive, isInjectableUrl, isItalic, isPpactionUrl, isPresenterMessage, isSigned, isTextElement, isTwoTableFocus, isUnderline, isUrlSafe, isValidRoomId, isViewportBackgroundPressTarget, isZoomActivationKey, issueTrackKey, issueTypeLabel, keyToLabel, lastVisibleIndex, latexToMathml, linePointsToSvgString, lineSpacingPatch, loadAudienceContent, mergeCaptionResults, mergeDown, mergeRight, mergeSelection, moveElementBy, moveNodeDown, moveNodeUp, msToFrameDelayCs, narrowToCircle, narrowToPolygon, narrowToRect, newChartElement, newEquationElement, newPresetShapeElement, newShapeElement, newSmartArtElement, newTableElement, newTextElement, nextVisibleIndex, nodeBold, nodeEditBox, nodeFillColor, nodeFontColor, nodeIdFromKey, nodeItalic, nodeStyle, normalizeFontFormat, normalizeSlidesPerPage, normalizeValue, numFromEvent, ommlToMathml, ooxmlDashToCssBorderStyle, openNativeEyeDropper, overallStatus, paletteColor, parseAudienceNonce, parseNodeTextarea, partitionSlides, patchChartData, patchChartStyle, patchTableData, patchTextStyle, patternPresetOptions, pendingElementStyles, pickColorByClickFallback, pickFile, pickSupportedMimeType, planGifFrames, planVideoSegments, pointsToSvgPathD, presenceToCursors, presenterTimerProgress, presetByLayout, presetsForCategory, pressuresToWidths, prevVisibleIndex, projectDrawingShapes, promoteNode, provideViewerTheme, radarAngle, radarRingPoints, readAsDataUrl, recordWebm, redistributeColumnWidth, removeAnimation, removeCategory, removeTableElementColumn as removeColumn, removeCommentFromList, removeElementAnimation, removeGradientStopPatch, removeNode, removeTableElementRow as removeRow, removeSeries, renderToCanvas, reorderAnimationDown, reorderAnimationUp, replaceInSlides, replaceMatch, requestPresentationFullscreen, resizeElement, resolveCaptionTracks, resolveChartKind, resolveFontVariant, resolveHyperlinkHref, resolveInteractiveElementId, resolveMediaSrc, resolveOleType, resolveParagraphBullet, resolvePresenterNotes, resolveProfileInitial, resolveRegionCode, resolveSlideAutoAdvanceMs, resolvePalette as resolveSmartArtPalette, resolveThemeCatalogEntry, resolveTransitionDuration, revealedElementStyles, routeOrthogonalConnector, rowStyle, rulerDragToGuidePosition, rulerHighlight, rulerStripTicks, sampleColorFromSlide, sanitizeColor, sanitizeSlideIndex, sanitizeUserName, saveViewerProfile, scanAvailableFonts, searchSlides, seedBroadcastFields, seedHyperlinkDraft, seedPropertiesDraft, seedShareFields, segmentFrameCount, selectValue, sendBackward, sendToBack, sequentialColorScale, serializeWriteBack, seriesColor, setAnimationEmphasis, setAnimationEntrance, setAnimationExit, setAxis, setAxisLogScale, setAxisTitleStyle, setCategoryLabel, setCellText, setColorScheme, setDataLabels, setDataPointExplosion, setDataPointFill, setDataPointLabel, setDataPointMarker, setDelay, setDirection, setDuration, setElementPosition, setGridlineStyle, setLayout, setLegend, setNodeStyle, setNodeText, setRepeatCount, setRepeatMode, setSequence, setSeriesChartType, setSeriesColor, setSeriesErrorBars, setSeriesMarker, setSeriesName, setSeriesTrendline, setSeriesValue, setStyle, setTimingCurve, setTitle, setTrigger, setTriggerShapeId, shapeStylePatch, sheetAfterNavigate, shouldBlockClickAdvance, shouldUseSvgWarp, showDirectionPicker, showsTemplateAffordance, signatureCountLabel, signatureKey, signatureTimestamp, signerName, statusLabel as slideDiffStatusLabel, slideNumberOf, smartArtNodes, paletteColour as smartArtPaletteColour, snapToGridStep, splitCursorCell, splitMergedCell, statusKind, statusLabel$1 as statusLabel, storeAudienceContent, stringFromEvent, strokeColorOf, strokeToInkElement, strokeWidthOf, styleShadowFilter, textAdvancedPatch, textAdvancedStateFromStyle, textAdvancedStateOf, textColorOf, textDirectionPatch, textStyleOf, textStylePatch, themeStyle, themeToCssVars, thumbnailHeight, thumbnailZoom, toggleCommentResolvedInList, toggleNodeBold, toggleNodeItalic, toggleSheet, topLevelNodeCount, transformSelectedTextCase, translationsEn, ungroupElements, updateElementById, updateGlowPatch, updateGradientStopPatch, updateInnerShadowPatch, updateOuterShadowPatch, updateReflectionPatch, vAlignPatch, validatePassword, validatePrintSettings, validateRoomId, valueToY, vermilionDarkColors, vermilionDarkTheme, vermilionLightColors, vermilionLightTheme, vermilionRadius, waypointsToPathD, worstStatus, zoomTargetSlideIndex };
|
|
18802
|
+
export type { AccessibilityIssueGroup, AccountAuthConfig, ActionDescriptor, AiCanvasHighlight, AiChatInitState, AiLogChat, AiLogExport, AiLogFormat, AiLogMessage, AiPanelSelectionAccessors, AlignBox, AlignMode, AnimationClickGroup, AnimationGroup, AnimationPresetCategory, AnimationPresetEntry, AnimationPresetPick, AnnotationInkInsert, AnnotationStroke, AttachTouchGesturesConfig, AwarenessLike, BarRect, Box, BridgeDeps, BroadcastConfig, BroadcastDefaults, CSSProperties, CanvasSize, CellCoord, CellParagraph, CellTextRun, ChartPartRef, ChartPartSelection, ChartValueDrag, ChartViewModel, ClassValue, ClrChangeParams, CollaborationConfig, CollaborationRole, RouterRect as ConnectorObstacle, RouterPoint as ConnectorPoint, ConnectorRouting, CopiedFormat, CornerHandleBox, CustomShow, CustomThemeEdit, DestroyableYDoc, DiagonalBorderInfo, DistributeMode, DocumentProperties, DrawingViewBox, DuotoneFilterDef, EffectsState, EmbeddedFontStyles, EquationTemplate, EyedropperResult, FindOptions, FindResult, FocusChip, FocusSelectionInput, GifFrame, GifFramePlan, GifPlanOptions, GlowState, GradientState, GradientStop$1 as GradientStop, GroupResult, HandleBox, HandoutSlidesPerPage, HyperlinkDraft, InkPoint, InkStroke, InlineEditState, InnerShadowState, LegendEntry, LinePoint, LinearFit, LocalIdentity, LocalStorageUsageSummary, LocaleCatalogEntry, MobileSheetKey, Model3DViewModel, MotionPathColumn, MotionPathEntry, NodeEditBox, NotesSegmentViewModel, ObjectUrlFactory, OleActionModel, OleInfoRow, OuterShadowState, OutlineCommit, OverallSignatureStatus, PartitionedSlides, PathPoint, PieSliceGeometry, PieSliceOptions, PlotLayout, PlotLayoutOptions, PositionUpdate, PowerPointViewerAPI, PptxAiBridge, PptxAiConfig, PptxAiConnection, PptxAiContextStrategy, PptxAiElementUpdate, PptxAiToolName, PptxAiUIMessage, PptxAiWritePolicy, 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, ScatterDot, SelectionBox, ShapeStyleChanges, ShareDefaults$1 as ShareDefaults, ShareFormFields, ShortcutReferenceItem, SignatureStatusKind, SlideInspectorTab, SlideTransitionAnimations, SmartArtInsertEvent, SmartArtNodeBounds, SnapBox, SnapGuide, SnapResult, SoftEdgeState, SpeechAlternative, SpeechRecognitionCtor, SpeechRecognitionEventLite, SpeechRecognitionLite, SpeechResult, SpeechResultList, SpeechSupportState, StagedProposal, StrokeToInkElementOpts, StyleMap, SupportedChartKind, SvgAreaGradient, SvgCircle, SvgLine, SvgPath, SvgPolygon, SvgPolyline, SvgPrimitive, SvgRect, SvgText, SwipeDismissDrag, TableBooleanFlag, TableCellSelection, TableCellViewModel, TableRowViewModel, TemplateElementsBySlideId, Text3DBevelKeys, TextAdvancedChanges, TextAdvancedState, TextStyleChanges, TextWarpCssDef, TextWarpDef, TextWarpPathDef, ThemeCatalogEntry, Tick, ToolbarActionId, TouchGestureCallbacks, TranslationKey, UngroupResult, ValueRange, VideoPlanOptions, VideoSegmentPlan, ViewerMode, ViewerProfile, ViewerSettings, ViewerTheme, ViewerThemeColors, ZoomViewModel };
|