pptx-angular-viewer 3.3.0 → 3.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +27 -0
- package/fesm2022/{pptx-angular-viewer-chat-history-idb-DXb-O2ta.mjs → pptx-angular-viewer-chat-history-idb-ClFN-XPJ.mjs} +2 -2
- package/fesm2022/{pptx-angular-viewer-chat-history-idb-DXb-O2ta.mjs.map → pptx-angular-viewer-chat-history-idb-ClFN-XPJ.mjs.map} +1 -1
- package/fesm2022/{pptx-angular-viewer-pptx-angular-viewer-D47r9ihQ.mjs → pptx-angular-viewer-pptx-angular-viewer-D9KH43PW.mjs} +2277 -675
- package/fesm2022/{pptx-angular-viewer-pptx-angular-viewer-D47r9ihQ.mjs.map → pptx-angular-viewer-pptx-angular-viewer-D9KH43PW.mjs.map} +1 -1
- package/fesm2022/pptx-angular-viewer.mjs +1 -1
- package/package.json +1 -1
- package/types/pptx-angular-viewer.d.ts +294 -179
- package/types/pptx-angular-viewer.d.ts.map +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as pptx_viewer_core from 'pptx-viewer-core';
|
|
2
|
-
import { PptxThemePreset, PptxSlide, PptxElement, ShapeStyle, PptxTextWarpPreset, XmlObject, PptxChartSeries, PptxChartLegendTextStyle, PptxChartData, PptxChartDataLabelPosition, PptxChartType, PptxElementAnimation, PptxAnimationPreset, PptxAnimationSequence, PptxAnimationTrigger, PptxAnimationTimingCurve, PptxAnimationRepeatMode, PptxAnimationDirection, PptxAfterAnimationAction, ParsedTableStyleMap, PptxThemeColorScheme, PptxThemeFontScheme, TablePptxElement, PptxSection, OlePptxElement, TextSegment, TextStyle, PptxTransitionType, PptxSlideTransition, SmartArtLayoutType, SmartArtColorScheme, PptxSmartArtChrome, PptxSmartArtDrawingShape, SmartArtStyle, PptxSmartArtData, PlaceholderDefaults, PptxEmbeddedFont, SmartArtLayout, AccessibilityIssueSeverity, AccessibilityIssue, AccessibilityIssueType, AccessibilityCheckOptions, ElementActionType, InkPptxElement, PptxComment, PptxChartBarDirection, PptxTheme, PptxHandler, PptxData, PptxHeaderFooter, PptxCustomShow, PptxSlideMaster, PptxNotesMaster, PptxHandoutMaster, PptxPresentationProperties, PptxViewProperties, PptxCoreProperties, PptxAppProperties, PptxThemeOption, PptxCustomProperty, PptxTagCollection, ParsedSignature, PptxSaveFormat, PptxTableCell, PptxTableCellStyle, PptxTableRow, PptxTableData, MasterViewTab, SvgExportOptions, PptxGridSpacing, RenderedNode, RenderedCircleNode, RenderedPolygonNode, RenderedRectNode, SmartArtLayoutResult, Model3DPptxElement, ZoomPptxElement, ChartPptxElement,
|
|
2
|
+
import { PptxThemePreset, PptxSlide, PptxElement, ShapeStyle, PptxTextWarpPreset, XmlObject, PptxChartSeries, PptxChartLegendTextStyle, PptxChartData, PptxChartDataLabelPosition, PptxChartType, PptxElementAnimation, PptxAnimationPreset, PptxAnimationSequence, PptxAnimationTrigger, PptxAnimationTimingCurve, PptxAnimationRepeatMode, PptxAnimationDirection, PptxAfterAnimationAction, ParsedTableStyleMap, PptxThemeColorScheme, PptxThemeFontScheme, TablePptxElement, PptxSection, OlePptxElement, TextSegment, TextStyle, PptxTransitionType, PptxSlideTransition, SmartArtLayoutType, SmartArtColorScheme, PptxSmartArtChrome, PptxSmartArtDrawingShape, SmartArtStyle, PptxSmartArtData, PlaceholderDefaults, PptxEmbeddedFont, SmartArtLayout, AccessibilityIssueSeverity, AccessibilityIssue, AccessibilityIssueType, AccessibilityCheckOptions, ElementActionType, InkPptxElement, PptxComment, PptxChartBarDirection, MediaPptxElement, PptxTheme, PptxHandler, PptxData, PptxHeaderFooter, PptxCustomShow, PptxSlideMaster, PptxNotesMaster, PptxHandoutMaster, PptxPresentationProperties, PptxViewProperties, PptxCoreProperties, PptxAppProperties, PptxThemeOption, PptxCustomProperty, PptxTagCollection, ParsedSignature, PptxSaveFormat, PptxTableCell, PptxTableCellStyle, PptxTableRow, PptxTableData, MasterViewTab, SvgExportOptions, PptxGridSpacing, RenderedNode, RenderedCircleNode, RenderedPolygonNode, RenderedRectNode, SmartArtLayoutResult, Model3DPptxElement, ZoomPptxElement, ChartPptxElement, SmartArtPptxElement, PptxAnimationTimelineAnchor, MaterialPresetType, Text3DStyle, BevelPresetType, PptxChartDataLabelOptions, PptxChartAxisType, PptxChartAxisFormatting, PptxChartMarker, PptxChartDataPoint, PptxChartTrendline, PptxChartErrBars, PptxTextStyleLevels, SignatureStatus, ElementAction, PptxImageEffects, MediaBookmark, ColorMapAliasKey, ChartAxisEdit, ChartDataPointLabelEdit, PptxChartLegendPosition, PptxChartStyle, ChartAxisTitleStyleEdit, PptxChartMarkerSymbol, ChartGridlineStyleEdit, PptxSmartArtNode, PptxSmartArtNodeStyle, PptxLayoutPreview, MediaCaptionTrack, PptxMediaType } from 'pptx-viewer-core';
|
|
3
3
|
export { GroupResult, SWITCHABLE_LAYOUT_TYPES, UngroupResult, addSmartArtNode, addSmartArtNodeAsChild, chartDataChangeType, chartDataUpdatePoint, demoteSmartArtNode, formatAutoNumberMarker as formatAutoNumber, groupElements, promoteSmartArtNode, removeSmartArtNode, reorderSmartArtNode, switchSmartArtLayout, ungroupElements, updateSmartArtNodeText } from 'pptx-viewer-core';
|
|
4
4
|
import * as _angular_core from '@angular/core';
|
|
5
5
|
import { Signal, WritableSignal, OnDestroy, OnInit, AfterViewInit, OnChanges, SimpleChanges, InjectionToken, Provider } from '@angular/core';
|
|
@@ -5509,6 +5509,16 @@ declare function buildBroadcastViewerUrl(roomId: string, serverUrl: string, loca
|
|
|
5509
5509
|
origin: string;
|
|
5510
5510
|
pathname: string;
|
|
5511
5511
|
}): string;
|
|
5512
|
+
/**
|
|
5513
|
+
* Build a shareable join URL for a (non-broadcast) collaboration session.
|
|
5514
|
+
* Identical shape to {@link buildBroadcastViewerUrl}, but under the `room=`
|
|
5515
|
+
* query key Angular's Share dialog uses. Returns just the room id when no
|
|
5516
|
+
* `origin`/`pathname` are available (e.g. non-browser environments).
|
|
5517
|
+
*/
|
|
5518
|
+
declare function buildShareUrl(roomId: string, serverUrl: string, location?: {
|
|
5519
|
+
origin: string;
|
|
5520
|
+
pathname: string;
|
|
5521
|
+
}): string;
|
|
5512
5522
|
/** Whether the runtime exposes a usable async clipboard write API. */
|
|
5513
5523
|
declare function canUseClipboard(nav: Navigator | undefined): boolean;
|
|
5514
5524
|
|
|
@@ -6978,6 +6988,13 @@ interface ShowOrderCustomShow {
|
|
|
6978
6988
|
readonly slideRIds?: readonly string[];
|
|
6979
6989
|
readonly slideIds?: readonly string[];
|
|
6980
6990
|
}
|
|
6991
|
+
/** A `p:showPr/p:sldRg` custom range, resolved to 0-based deck indexes. */
|
|
6992
|
+
interface AuthoredSlideRange {
|
|
6993
|
+
/** First slide of the range, 0-based, inclusive. */
|
|
6994
|
+
readonly fromIndex: number;
|
|
6995
|
+
/** Last slide of the range, 0-based, inclusive. */
|
|
6996
|
+
readonly toIndex: number;
|
|
6997
|
+
}
|
|
6981
6998
|
|
|
6982
6999
|
/** Everything a binding needs to mark one tile. Inert when the slide is visible. */
|
|
6983
7000
|
interface HiddenSlideCue {
|
|
@@ -7489,6 +7506,64 @@ interface ViewerOptionsStore {
|
|
|
7489
7506
|
batch(write: () => void): void;
|
|
7490
7507
|
}
|
|
7491
7508
|
|
|
7509
|
+
/**
|
|
7510
|
+
* Data-driven placeholder icon primitives for `ole` (embedded object)
|
|
7511
|
+
* elements: the Excel grid, Word document, PDF, Visio diagram, MathType
|
|
7512
|
+
* `f(x)`, and generic linked-objects glyphs.
|
|
7513
|
+
*
|
|
7514
|
+
* Extracted from the identical `rect`/`line`/`text` builders + `ICONS` table
|
|
7515
|
+
* that Svelte's `render/ole-view.ts` and Vanilla's
|
|
7516
|
+
* `render/elements/ole-icons.ts` both hand-rolled byte-for-byte (down to the
|
|
7517
|
+
* shape coordinates). Every binding's OLE renderer maps `OleIconShape[]` onto
|
|
7518
|
+
* its own `<rect>`/`<line>`/`<text>` (or `createSvgEl`) primitives; only the
|
|
7519
|
+
* DOM/JSX emission stays per binding.
|
|
7520
|
+
*/
|
|
7521
|
+
|
|
7522
|
+
/** One primitive of a data-driven placeholder icon. */
|
|
7523
|
+
interface OleIconShape {
|
|
7524
|
+
tag: 'rect' | 'line' | 'text';
|
|
7525
|
+
attrs: Record<string, string | number>;
|
|
7526
|
+
/** Text content, only present when `tag === 'text'`. */
|
|
7527
|
+
text?: string;
|
|
7528
|
+
}
|
|
7529
|
+
|
|
7530
|
+
/**
|
|
7531
|
+
* Cross-slide ("play across slides") audio registration.
|
|
7532
|
+
*
|
|
7533
|
+
* PowerPoint keeps background audio marked `playAcrossSlides` playing when
|
|
7534
|
+
* the show advances, but a slide-local `<audio>` dies with its slide's DOM.
|
|
7535
|
+
* {@link registerCrossSlideAudio} hands the track to the shared
|
|
7536
|
+
* `media-persistent-audio` manager (a hidden document-level element that
|
|
7537
|
+
* survives slide unmount) at the moment presentation-mode autoplay would
|
|
7538
|
+
* have started the slide-local copy.
|
|
7539
|
+
*
|
|
7540
|
+
* Vue, Angular, Svelte and Vanilla each carried a byte-identical copy of this
|
|
7541
|
+
* function; this is the one copy, sitting next to {@link mediaPlaybackAttributes}
|
|
7542
|
+
* in `media-playback.ts` as the task that named it expected, split into its
|
|
7543
|
+
* own sibling module purely to keep `media-playback.ts` under the file-size
|
|
7544
|
+
* cap.
|
|
7545
|
+
*/
|
|
7546
|
+
|
|
7547
|
+
/**
|
|
7548
|
+
* Register a `playAcrossSlides` audio element with the shared persistent-audio
|
|
7549
|
+
* manager, using the same resolved source, loop, volume and trim start the
|
|
7550
|
+
* slide-local element would have used. Returns true when the persistent
|
|
7551
|
+
* (document-level) element owns playback, in which case the slide-local media
|
|
7552
|
+
* node must stay silent or the track doubles. Idempotent per element id
|
|
7553
|
+
* (the manager no-ops a re-register), so re-entering the owning slide does not
|
|
7554
|
+
* restart the track.
|
|
7555
|
+
*/
|
|
7556
|
+
declare function registerCrossSlideAudio(element: MediaPptxElement, src: string | undefined): boolean;
|
|
7557
|
+
|
|
7558
|
+
/** Grouping needs an editable deck and at least two selected elements. */
|
|
7559
|
+
declare function canGroupSelection(canEdit: boolean, selectedCount: number): boolean;
|
|
7560
|
+
/** Ungrouping needs an editable deck and a selection that IS a group. */
|
|
7561
|
+
declare function canUngroupSelection(canEdit: boolean, element: PptxElement | null): boolean;
|
|
7562
|
+
/** An outline width only exists on an element that carries shape properties. */
|
|
7563
|
+
declare function canSetStrokeWidth(canEdit: boolean, element: PptxElement | null): boolean;
|
|
7564
|
+
/** The stroke width to show for a selection, defaulted for a shape without one. */
|
|
7565
|
+
declare function strokeWidthOf(element: PptxElement | null): number;
|
|
7566
|
+
|
|
7492
7567
|
/**
|
|
7493
7568
|
* Minimal GIF89a encoder (pure JS, no external dependency) plus pure
|
|
7494
7569
|
* frame-planning helpers — shared by the React, Vue, and Angular bindings.
|
|
@@ -8077,6 +8152,121 @@ interface PptxAiChatStore {
|
|
|
8077
8152
|
}): Promise<void>;
|
|
8078
8153
|
}
|
|
8079
8154
|
|
|
8155
|
+
/** One tool invocation captured with its full technical detail. */
|
|
8156
|
+
interface AiLogToolCall {
|
|
8157
|
+
toolName: string;
|
|
8158
|
+
toolCallId: string;
|
|
8159
|
+
state: string;
|
|
8160
|
+
input: unknown;
|
|
8161
|
+
output: unknown;
|
|
8162
|
+
errorText?: string;
|
|
8163
|
+
}
|
|
8164
|
+
/** One message: its role, concatenated prose, and any tool calls it made. */
|
|
8165
|
+
interface AiLogMessage {
|
|
8166
|
+
role: string;
|
|
8167
|
+
text: string;
|
|
8168
|
+
toolCalls: AiLogToolCall[];
|
|
8169
|
+
}
|
|
8170
|
+
/** One chat conversation in export form. */
|
|
8171
|
+
interface AiLogChat {
|
|
8172
|
+
id: string;
|
|
8173
|
+
title: string;
|
|
8174
|
+
deckId?: string;
|
|
8175
|
+
createdAt: number;
|
|
8176
|
+
updatedAt: number;
|
|
8177
|
+
createdAtIso: string;
|
|
8178
|
+
updatedAtIso: string;
|
|
8179
|
+
messageCount: number;
|
|
8180
|
+
messages: AiLogMessage[];
|
|
8181
|
+
}
|
|
8182
|
+
/** Top-level detailed export document. */
|
|
8183
|
+
interface AiLogExport {
|
|
8184
|
+
format: 'pptx-ai-chat-log';
|
|
8185
|
+
version: 1;
|
|
8186
|
+
exportedAt: string;
|
|
8187
|
+
/** Whether tool inputs/outputs are included (see `detailed` option). */
|
|
8188
|
+
detailed: boolean;
|
|
8189
|
+
chatCount: number;
|
|
8190
|
+
chats: AiLogChat[];
|
|
8191
|
+
}
|
|
8192
|
+
/** Options controlling how the export document is built. */
|
|
8193
|
+
interface BuildChatLogOptions {
|
|
8194
|
+
/** Include tool-call inputs/outputs. Default `true`. When false, tool calls
|
|
8195
|
+
* still list name + state but omit the (potentially large) payloads. */
|
|
8196
|
+
detailed?: boolean;
|
|
8197
|
+
/** Epoch ms stamped as `exportedAt`. Default `Date.now()`. */
|
|
8198
|
+
now?: number;
|
|
8199
|
+
}
|
|
8200
|
+
/** Build the detailed export document from already-loaded chats (pure). */
|
|
8201
|
+
declare function buildChatLogExport(chats: readonly PptxAiStoredChat[], options?: BuildChatLogOptions): AiLogExport;
|
|
8202
|
+
/** Render the same detailed export as a human-readable Markdown transcript. */
|
|
8203
|
+
declare function buildChatLogMarkdown(doc: AiLogExport): string;
|
|
8204
|
+
/** Load every stored chat (newest first) in full detail from a store. */
|
|
8205
|
+
declare function collectStoredChats(store?: PptxAiChatStore): Promise<PptxAiStoredChat[]>;
|
|
8206
|
+
/** File format to export. */
|
|
8207
|
+
type AiLogFormat = 'json' | 'markdown';
|
|
8208
|
+
/** Metadata controlling {@link exportAiChatLogs}'s output. */
|
|
8209
|
+
interface ExportAiChatLogsMeta {
|
|
8210
|
+
/** `'json'` (default) or `'markdown'`. */
|
|
8211
|
+
format?: AiLogFormat;
|
|
8212
|
+
/** Include tool inputs/outputs. Default `true`. */
|
|
8213
|
+
detailed?: boolean;
|
|
8214
|
+
/** Epoch ms for the filename + `exportedAt`. Default `Date.now()`. */
|
|
8215
|
+
now?: number;
|
|
8216
|
+
}
|
|
8217
|
+
|
|
8218
|
+
/**
|
|
8219
|
+
* Pure helpers that turn the live canvas selection into AI "focused targets"
|
|
8220
|
+
* (the slides / elements the assistant should scope its work to) and into the
|
|
8221
|
+
* short chip labels shown in the AI panel.
|
|
8222
|
+
*
|
|
8223
|
+
* Shared by each binding's AI bridge (so `getFocusedTargets` reflects live
|
|
8224
|
+
* selection) and by the panel's focus chips / canvas highlight overlay, so all
|
|
8225
|
+
* five agree on what "the current focus" is and on the two-table merge
|
|
8226
|
+
* shortcut.
|
|
8227
|
+
*/
|
|
8228
|
+
|
|
8229
|
+
/** The selection inputs the focus derivation reads. */
|
|
8230
|
+
interface FocusSelectionInput {
|
|
8231
|
+
activeSlideIndex: number;
|
|
8232
|
+
selectedElementIds: readonly string[];
|
|
8233
|
+
selectedElementId: string | null;
|
|
8234
|
+
}
|
|
8235
|
+
/** One element ring to draw on the canvas: an explicit pick or a live-tool focus. */
|
|
8236
|
+
interface AiCanvasHighlight {
|
|
8237
|
+
slideIndex: number;
|
|
8238
|
+
elementId: string;
|
|
8239
|
+
/** `pick` = persistent user pick; `active` = transient AI-is-working ring. */
|
|
8240
|
+
variant: 'pick' | 'active';
|
|
8241
|
+
}
|
|
8242
|
+
/**
|
|
8243
|
+
* Derive focused targets from the live selection: one `element` target per
|
|
8244
|
+
* selected element on the active slide, or a single whole-`slide` target when
|
|
8245
|
+
* nothing is selected. Order and multiplicity are preserved (multi-select and
|
|
8246
|
+
* tables included) so callers can detect e.g. "exactly two tables".
|
|
8247
|
+
*/
|
|
8248
|
+
declare function computeFocusTargets(input: FocusSelectionInput): PptxAiFocusedTarget[];
|
|
8249
|
+
/** A renderable focus chip. `title` carries the full element id for hover. */
|
|
8250
|
+
interface FocusChip {
|
|
8251
|
+
key: string;
|
|
8252
|
+
label: string;
|
|
8253
|
+
title: string;
|
|
8254
|
+
}
|
|
8255
|
+
/**
|
|
8256
|
+
* Build display chips for the given targets. Slide targets read `Slide N`;
|
|
8257
|
+
* element targets read `<Type> <n>` (a friendly short label, full id on hover),
|
|
8258
|
+
* or `<Type> (missing)` when the element is no longer on the slide.
|
|
8259
|
+
*/
|
|
8260
|
+
declare function focusTargetChips(targets: readonly PptxAiFocusedTarget[], slides: readonly PptxSlide[]): FocusChip[];
|
|
8261
|
+
/** Whether the focus is exactly two table elements (drives the merge action). */
|
|
8262
|
+
declare function isTwoTableFocus(targets: readonly PptxAiFocusedTarget[], slides: readonly PptxSlide[]): false | {
|
|
8263
|
+
slideIndex: number;
|
|
8264
|
+
elementIdA: string;
|
|
8265
|
+
elementIdB: string;
|
|
8266
|
+
};
|
|
8267
|
+
/** Build the directive that fires `merge_tables` without a confirmation round-trip. */
|
|
8268
|
+
declare function mergeTablesDirective(slideIndex: number, elementIdA: string, elementIdB: string): string;
|
|
8269
|
+
|
|
8080
8270
|
/**
|
|
8081
8271
|
* Framework-agnostic helpers that flatten an AI SDK `UIMessage` into the small
|
|
8082
8272
|
* set of parts a chat panel actually renders: assistant/user text and tool-call
|
|
@@ -8200,56 +8390,6 @@ declare class AccessibilityService {
|
|
|
8200
8390
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<AccessibilityService>;
|
|
8201
8391
|
}
|
|
8202
8392
|
|
|
8203
|
-
/**
|
|
8204
|
-
* Pure helpers that turn the live canvas selection into AI "focused targets"
|
|
8205
|
-
* (the slides / elements the assistant should scope its work to) and into the
|
|
8206
|
-
* short chip labels shown in the AI panel. Angular replica of React's
|
|
8207
|
-
* `hooks/ai/focus-targets.ts`; kept in-binding (rather than in shared) because
|
|
8208
|
-
* it is a tiny pure helper and the shared package is consumed read-only here.
|
|
8209
|
-
*
|
|
8210
|
-
* Shared by {@link AiPanelStore} (so `getFocusedTargets` reflects live
|
|
8211
|
-
* selection) and by the focus-chip bar, so both agree on "the current focus".
|
|
8212
|
-
*/
|
|
8213
|
-
|
|
8214
|
-
/** The selection inputs the focus derivation reads. */
|
|
8215
|
-
interface FocusSelectionInput {
|
|
8216
|
-
activeSlideIndex: number;
|
|
8217
|
-
selectedElementIds: readonly string[];
|
|
8218
|
-
selectedElementId: string | null;
|
|
8219
|
-
}
|
|
8220
|
-
/** One element ring to draw on the canvas: an explicit pick or a live-tool focus. */
|
|
8221
|
-
interface AiCanvasHighlight {
|
|
8222
|
-
slideIndex: number;
|
|
8223
|
-
elementId: string;
|
|
8224
|
-
/** `pick` = persistent user pick; `active` = transient AI-is-working ring. */
|
|
8225
|
-
variant: 'pick' | 'active';
|
|
8226
|
-
}
|
|
8227
|
-
/**
|
|
8228
|
-
* Derive focused targets from the live selection: one `element` target per
|
|
8229
|
-
* selected element on the active slide, or a single whole-`slide` target when
|
|
8230
|
-
* nothing is selected. Order and multiplicity are preserved (multi-select and
|
|
8231
|
-
* tables included) so callers can detect e.g. "exactly two tables".
|
|
8232
|
-
*/
|
|
8233
|
-
declare function computeFocusTargets(input: FocusSelectionInput): PptxAiFocusedTarget[];
|
|
8234
|
-
/** A renderable focus chip. `title` carries the full element id for hover. */
|
|
8235
|
-
interface FocusChip {
|
|
8236
|
-
key: string;
|
|
8237
|
-
label: string;
|
|
8238
|
-
title: string;
|
|
8239
|
-
}
|
|
8240
|
-
/**
|
|
8241
|
-
* Build display chips for the given targets. Slide targets read `Slide N`;
|
|
8242
|
-
* element targets read `<Type> <n>` (a friendly short label, full id on hover),
|
|
8243
|
-
* or `<Type> (missing)` when the element is no longer on the slide.
|
|
8244
|
-
*/
|
|
8245
|
-
declare function focusTargetChips(targets: readonly PptxAiFocusedTarget[], slides: readonly PptxSlide[]): FocusChip[];
|
|
8246
|
-
/** Whether the focus is exactly two table elements (drives the merge action). */
|
|
8247
|
-
declare function isTwoTableFocus(targets: readonly PptxAiFocusedTarget[], slides: readonly PptxSlide[]): false | {
|
|
8248
|
-
slideIndex: number;
|
|
8249
|
-
elementIdA: string;
|
|
8250
|
-
elementIdB: string;
|
|
8251
|
-
};
|
|
8252
|
-
|
|
8253
8393
|
/** Live selection accessors the store reads to derive the follow-selection focus. */
|
|
8254
8394
|
interface AiPanelSelectionAccessors {
|
|
8255
8395
|
activeSlideIndex(): number;
|
|
@@ -8856,7 +8996,6 @@ declare class EditorStateService {
|
|
|
8856
8996
|
selectAll(slideIndex: number): void;
|
|
8857
8997
|
isSelected(id: string): boolean;
|
|
8858
8998
|
moveSelectedBy(slideIndex: number, dx: number, dy: number): void;
|
|
8859
|
-
nudgeSelected(slideIndex: number, dirX: number, dirY: number): void;
|
|
8860
8999
|
setPosition(slideIndex: number, id: string, x: number, y: number): void;
|
|
8861
9000
|
resize(slideIndex: number, id: string, width: number, height: number): void;
|
|
8862
9001
|
updateElement(slideIndex: number, id: string, patch: Partial<PptxElement>): void;
|
|
@@ -10827,17 +10966,6 @@ declare class ViewerOptionsService {
|
|
|
10827
10966
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ViewerOptionsService>;
|
|
10828
10967
|
}
|
|
10829
10968
|
|
|
10830
|
-
/**
|
|
10831
|
-
* presentation-annotations-helpers.ts: Pure geometry helpers for presentation
|
|
10832
|
-
* ink annotations (pen, highlighter, eraser, laser).
|
|
10833
|
-
*
|
|
10834
|
-
* Ported from React:
|
|
10835
|
-
* packages/react/src/viewer/components/PresentationAnnotationOverlay.tsx
|
|
10836
|
-
* packages/react/src/viewer/hooks/usePresentationAnnotations.ts
|
|
10837
|
-
*
|
|
10838
|
-
* No Angular dependencies; all functions are pure so they can be unit-tested
|
|
10839
|
-
* without TestBed.
|
|
10840
|
-
*/
|
|
10841
10969
|
/** A single {x, y} coordinate in slide-space pixels. */
|
|
10842
10970
|
interface AnnotationPoint {
|
|
10843
10971
|
x: number;
|
|
@@ -11234,6 +11362,13 @@ declare class PowerPointViewerComponent implements PowerPointViewerAPI {
|
|
|
11234
11362
|
protected readonly xport: ViewerExportService;
|
|
11235
11363
|
protected readonly findReplace: ViewerFindReplaceService;
|
|
11236
11364
|
protected readonly customShowsCtl: ViewerCustomShowsService;
|
|
11365
|
+
/**
|
|
11366
|
+
* The `p:showPr/p:sldRg` slide-range restriction, when the deck is authored
|
|
11367
|
+
* to open into a range (`showSlidesMode === 'range'`) rather than the whole
|
|
11368
|
+
* deck or a custom show. Fed to the presentation overlay's navigator
|
|
11369
|
+
* alongside `activeCustomShow` so a running show honours it.
|
|
11370
|
+
*/
|
|
11371
|
+
protected readonly presentationAuthoredRange: _angular_core.Signal<AuthoredSlideRange | null>;
|
|
11237
11372
|
protected readonly session: ViewerCollaborationSessionService;
|
|
11238
11373
|
protected readonly formatPainter: ViewerFormatPainterService;
|
|
11239
11374
|
private readonly keyboard;
|
|
@@ -11933,17 +12068,17 @@ declare class FieldContextService {
|
|
|
11933
12068
|
declare const GOOGLE_WEBFONTS_LINK_ID = "pptx-angular-google-fonts";
|
|
11934
12069
|
declare class GoogleWebfontsService {
|
|
11935
12070
|
private linkEl;
|
|
11936
|
-
/** Tags in-flight
|
|
12071
|
+
/** Tags in-flight resolutions; only the newest `sync` may apply its result. */
|
|
11937
12072
|
private syncToken;
|
|
11938
12073
|
constructor();
|
|
11939
12074
|
/**
|
|
11940
12075
|
* Resolve which referenced families need a Google Fonts fetch for this
|
|
11941
|
-
* deck and sync the managed `<link>` element once the
|
|
12076
|
+
* deck and sync the managed `<link>` element once the resolution settles.
|
|
11942
12077
|
* Pass empty slides / fonts (e.g. before a load) to remove it.
|
|
11943
12078
|
*/
|
|
11944
12079
|
sync(slides: readonly PptxSlide[], embeddedFonts: readonly PptxEmbeddedFont[]): void;
|
|
11945
12080
|
/**
|
|
11946
|
-
* Remove the injected `<link>` element and invalidate in-flight
|
|
12081
|
+
* Remove the injected `<link>` element and invalidate in-flight resolutions.
|
|
11947
12082
|
* Called automatically on destroy; safe to call manually.
|
|
11948
12083
|
*/
|
|
11949
12084
|
dispose(): void;
|
|
@@ -12490,69 +12625,10 @@ declare class AiHistoryMenuComponent {
|
|
|
12490
12625
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AiHistoryMenuComponent, "pptx-ai-history-menu", never, { "canClear": { "alias": "canClear"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
12491
12626
|
}
|
|
12492
12627
|
|
|
12493
|
-
/** One tool invocation captured with its full technical detail. */
|
|
12494
|
-
interface AiLogToolCall {
|
|
12495
|
-
toolName: string;
|
|
12496
|
-
toolCallId: string;
|
|
12497
|
-
state: string;
|
|
12498
|
-
input: unknown;
|
|
12499
|
-
output: unknown;
|
|
12500
|
-
errorText?: string;
|
|
12501
|
-
}
|
|
12502
|
-
/** One message: its role, concatenated prose, and any tool calls it made. */
|
|
12503
|
-
interface AiLogMessage {
|
|
12504
|
-
role: string;
|
|
12505
|
-
text: string;
|
|
12506
|
-
toolCalls: AiLogToolCall[];
|
|
12507
|
-
}
|
|
12508
|
-
/** One chat conversation in export form. */
|
|
12509
|
-
interface AiLogChat {
|
|
12510
|
-
id: string;
|
|
12511
|
-
title: string;
|
|
12512
|
-
deckId?: string;
|
|
12513
|
-
createdAt: number;
|
|
12514
|
-
updatedAt: number;
|
|
12515
|
-
createdAtIso: string;
|
|
12516
|
-
updatedAtIso: string;
|
|
12517
|
-
messageCount: number;
|
|
12518
|
-
messages: AiLogMessage[];
|
|
12519
|
-
}
|
|
12520
|
-
/** Top-level detailed export document. */
|
|
12521
|
-
interface AiLogExport {
|
|
12522
|
-
format: 'pptx-ai-chat-log';
|
|
12523
|
-
version: 1;
|
|
12524
|
-
exportedAt: string;
|
|
12525
|
-
/** Whether tool inputs/outputs are included (see `detailed` option). */
|
|
12526
|
-
detailed: boolean;
|
|
12527
|
-
chatCount: number;
|
|
12528
|
-
chats: AiLogChat[];
|
|
12529
|
-
}
|
|
12530
|
-
/** Options controlling how the export document is built. */
|
|
12531
|
-
interface BuildChatLogOptions {
|
|
12532
|
-
/** Include tool-call inputs/outputs. Default `true`. When false, tool calls
|
|
12533
|
-
* still list name + state but omit the (potentially large) payloads. */
|
|
12534
|
-
detailed?: boolean;
|
|
12535
|
-
/** Epoch ms stamped as `exportedAt`. Default `Date.now()`. */
|
|
12536
|
-
now?: number;
|
|
12537
|
-
}
|
|
12538
|
-
/** Build the detailed export document from already-loaded chats (pure). */
|
|
12539
|
-
declare function buildChatLogExport(chats: readonly PptxAiStoredChat[], options?: BuildChatLogOptions): AiLogExport;
|
|
12540
|
-
/** Render the same detailed export as a human-readable Markdown transcript. */
|
|
12541
|
-
declare function buildChatLogMarkdown(doc: AiLogExport): string;
|
|
12542
|
-
/** Load every stored chat (newest first) in full detail from a store. */
|
|
12543
|
-
declare function collectStoredChats(store: PptxAiChatStore): Promise<PptxAiStoredChat[]>;
|
|
12544
|
-
/** File format to download. */
|
|
12545
|
-
type AiLogFormat = 'json' | 'markdown';
|
|
12546
12628
|
/** Options for {@link exportAiChatLogs}. */
|
|
12547
|
-
interface ExportAiChatLogsOptions {
|
|
12629
|
+
interface ExportAiChatLogsOptions extends ExportAiChatLogsMeta {
|
|
12548
12630
|
/** Store to read from. Defaults to the shared `createChatHistoryStore()`. */
|
|
12549
12631
|
store?: PptxAiChatStore;
|
|
12550
|
-
/** `'json'` (default) or `'markdown'`. */
|
|
12551
|
-
format?: AiLogFormat;
|
|
12552
|
-
/** Include tool inputs/outputs. Default `true`. */
|
|
12553
|
-
detailed?: boolean;
|
|
12554
|
-
/** Epoch ms for the filename + `exportedAt`. Default `Date.now()`. */
|
|
12555
|
-
now?: number;
|
|
12556
12632
|
}
|
|
12557
12633
|
/**
|
|
12558
12634
|
* Read all stored chats and trigger a browser download of the detailed log.
|
|
@@ -14092,6 +14168,18 @@ declare class ElementRendererComponent {
|
|
|
14092
14168
|
readonly isImageLike: _angular_core.Signal<boolean>;
|
|
14093
14169
|
readonly paragraphs: _angular_core.Signal<Paragraph[]>;
|
|
14094
14170
|
readonly hasText: _angular_core.Signal<boolean>;
|
|
14171
|
+
/**
|
|
14172
|
+
* An empty inherited placeholder's greyed-out hint ("Click to add title"),
|
|
14173
|
+
* or null when it should not be shown. `editable` is only ever set true on
|
|
14174
|
+
* the live editing canvas (Present Mode leaves it at its `false` default,
|
|
14175
|
+
* and the thumbnail rail passes it explicitly false), matching shared's
|
|
14176
|
+
* `'edit'`-only surface: PowerPoint never prints, presents or thumbnails
|
|
14177
|
+
* this authoring hint.
|
|
14178
|
+
*/
|
|
14179
|
+
readonly placeholderPrompt: _angular_core.Signal<{
|
|
14180
|
+
text: string;
|
|
14181
|
+
style: StyleMap;
|
|
14182
|
+
} | null>;
|
|
14095
14183
|
readonly placeholderLabel: _angular_core.Signal<any>;
|
|
14096
14184
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ElementRendererComponent, never>;
|
|
14097
14185
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ElementRendererComponent, "pptx-element-renderer", never, { "element": { "alias": "element"; "required": true; "isSignal": true; }; "mediaDataUrls": { "alias": "mediaDataUrls"; "required": false; "isSignal": true; }; "zIndex": { "alias": "zIndex"; "required": false; "isSignal": true; }; "obstacles": { "alias": "obstacles"; "required": false; "isSignal": true; }; "canvasWidth": { "alias": "canvasWidth"; "required": false; "isSignal": true; }; "canvasHeight": { "alias": "canvasHeight"; "required": false; "isSignal": true; }; "interactive": { "alias": "interactive"; "required": false; "isSignal": true; }; "marked": { "alias": "marked"; "required": false; "isSignal": true; }; "exposeElementId": { "alias": "exposeElementId"; "required": false; "isSignal": true; }; "presenting": { "alias": "presenting"; "required": false; "isSignal": true; }; "editable": { "alias": "editable"; "required": false; "isSignal": true; }; "fieldContext": { "alias": "fieldContext"; "required": false; "isSignal": true; }; "slideElements": { "alias": "slideElements"; "required": false; "isSignal": true; }; "editTemplateMode": { "alias": "editTemplateMode"; "required": false; "isSignal": true; }; "parentGroupFill": { "alias": "parentGroupFill"; "required": false; "isSignal": true; }; "editingElementId": { "alias": "editingElementId"; "required": false; "isSignal": true; }; }, { "cellCommit": "cellCommit"; "tableChange": "tableChange"; }, never, never, true, never>;
|
|
@@ -14887,6 +14975,14 @@ declare class OleRendererComponent {
|
|
|
14887
14975
|
readonly ariaLabel: _angular_core.Signal<string>;
|
|
14888
14976
|
/** Border + background style for the placeholder box. */
|
|
14889
14977
|
readonly placeholderStyle: _angular_core.Signal<StyleMap>;
|
|
14978
|
+
/**
|
|
14979
|
+
* Data-driven `rect`/`line`/`text` primitives for the placeholder icon,
|
|
14980
|
+
* shared with every other binding's OLE renderer so the icon glyphs
|
|
14981
|
+
* (Excel grid, Word lines, PDF box, Visio diagram, MathType `f(x)`,
|
|
14982
|
+
* generic linked-object) cannot drift apart. The template maps each
|
|
14983
|
+
* primitive onto its own SVG element.
|
|
14984
|
+
*/
|
|
14985
|
+
readonly iconShapes: _angular_core.Signal<OleIconShape[]>;
|
|
14890
14986
|
/**
|
|
14891
14987
|
* Download / Open action model derived from the recovered embedded payload.
|
|
14892
14988
|
* When the input is not an OLE element, every action is disabled.
|
|
@@ -14910,6 +15006,13 @@ declare class OleRendererComponent {
|
|
|
14910
15006
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<OleRendererComponent, "pptx-ole-renderer", never, { "element": { "alias": "element"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
14911
15007
|
}
|
|
14912
15008
|
|
|
15009
|
+
/**
|
|
15010
|
+
* Pure helpers for `Model3DRendererComponent`.
|
|
15011
|
+
*
|
|
15012
|
+
* All functions are framework-agnostic (no Angular dependency) so they can be
|
|
15013
|
+
* unit-tested without TestBed, following the same pattern as
|
|
15014
|
+
* `connector-path.ts`.
|
|
15015
|
+
*/
|
|
14913
15016
|
/** Narrowed view-model derived from a `Model3DPptxElement`. */
|
|
14914
15017
|
interface Model3DViewModel {
|
|
14915
15018
|
/** Resolved model element, or undefined when the element is not a model3d. */
|
|
@@ -14930,14 +15033,12 @@ declare function buildModel3DViewModel(element: PptxElement): Model3DViewModel;
|
|
|
14930
15033
|
declare function buildModel3DContainerStyle(element: PptxElement, zIndex: number): StyleMap;
|
|
14931
15034
|
/**
|
|
14932
15035
|
* Derive an object (blob) URL for the GLTF/GLB loader from the element's
|
|
14933
|
-
* base64 `modelData` data URL.
|
|
14934
|
-
*
|
|
14935
|
-
*
|
|
14936
|
-
*
|
|
14937
|
-
*
|
|
14938
|
-
*
|
|
14939
|
-
* the poster fallback. The returned URL is owned by the caller, which must
|
|
14940
|
-
* `URL.revokeObjectURL` it on teardown.
|
|
15036
|
+
* base64 `modelData` data URL. Delegates to shared's `modelDataToBlobUrl`
|
|
15037
|
+
* (reuses core's `parseDataUrlToBytes`, no hand-rolled base64); this wrapper
|
|
15038
|
+
* only narrows `element` to `Model3DPptxElement` first. Returns `undefined`
|
|
15039
|
+
* when the element is not a model3d, has no `modelData`, or the data URL
|
|
15040
|
+
* cannot be parsed: the caller then shows the poster fallback. The returned
|
|
15041
|
+
* URL is owned by the caller, which must `URL.revokeObjectURL` it on teardown.
|
|
14941
15042
|
*/
|
|
14942
15043
|
declare function deriveModel3DBlobUrl(element: PptxElement): string | undefined;
|
|
14943
15044
|
|
|
@@ -15380,6 +15481,15 @@ declare class PresentationAnnotationsService {
|
|
|
15380
15481
|
* Exported separately so they can be unit-tested without TestBed.
|
|
15381
15482
|
*/
|
|
15382
15483
|
|
|
15484
|
+
/**
|
|
15485
|
+
* The `p:showPr/p:sldRg` range restriction, when the deck is authored to open
|
|
15486
|
+
* into a slide range (`p:showPr/@showSlidesMode == 'range'`). Every navigation
|
|
15487
|
+
* helper below forwards it to `resolveShowSlideIndexes` alongside
|
|
15488
|
+
* {@link ActiveShow}, so a range restriction is applied the same way a custom
|
|
15489
|
+
* show's membership is: as a filter on the show's slide order, not a
|
|
15490
|
+
* pre-filtered slide array.
|
|
15491
|
+
*/
|
|
15492
|
+
type AuthoredRange = AuthoredSlideRange | null | undefined;
|
|
15383
15493
|
/**
|
|
15384
15494
|
* The running custom show, when one is active. Every navigation helper below
|
|
15385
15495
|
* takes it and forwards it to `resolveShowSlideIndexes`, because "which slide
|
|
@@ -15446,13 +15556,13 @@ declare function clampIndex(index: number, count: number): number;
|
|
|
15446
15556
|
* slides. Kept as a named export because the overlay's tests and the navigator
|
|
15447
15557
|
* read better in terms of "next visible slide" than raw index lists.
|
|
15448
15558
|
*/
|
|
15449
|
-
declare function nextVisibleIndex(current: number, slides: readonly PptxSlide[], activeShow?: ActiveShow): number;
|
|
15559
|
+
declare function nextVisibleIndex(current: number, slides: readonly PptxSlide[], activeShow?: ActiveShow, authoredRange?: AuthoredRange): number;
|
|
15450
15560
|
/**
|
|
15451
15561
|
* Return the previous visible (non-hidden) slide index before `current`.
|
|
15452
15562
|
* Returns `current` when no earlier visible slide exists: PowerPoint never
|
|
15453
15563
|
* wraps backward off the first slide.
|
|
15454
15564
|
*/
|
|
15455
|
-
declare function prevVisibleIndex(current: number, slides: readonly PptxSlide[], activeShow?: ActiveShow): number;
|
|
15565
|
+
declare function prevVisibleIndex(current: number, slides: readonly PptxSlide[], activeShow?: ActiveShow, authoredRange?: AuthoredRange): number;
|
|
15456
15566
|
/**
|
|
15457
15567
|
* Compute the zoom level that fits a canvas of `canvasW × canvasH` pixels
|
|
15458
15568
|
* into a viewport of `vw × vh` pixels, preserving aspect ratio.
|
|
@@ -15468,11 +15578,11 @@ declare function fitZoom(canvasW: number, canvasH: number, vw: number, vh: numbe
|
|
|
15468
15578
|
* the last slide ends the show. Callers use this to tell "there is a next
|
|
15469
15579
|
* slide" from "we just wrapped".
|
|
15470
15580
|
*/
|
|
15471
|
-
declare function hasVisibleSlideAfter(current: number, slides: readonly PptxSlide[], activeShow?: ActiveShow): boolean;
|
|
15581
|
+
declare function hasVisibleSlideAfter(current: number, slides: readonly PptxSlide[], activeShow?: ActiveShow, authoredRange?: AuthoredRange): boolean;
|
|
15472
15582
|
/** The show's first visible slide (Home), or 0 for an empty deck. */
|
|
15473
|
-
declare function firstVisibleIndex(slides: readonly PptxSlide[], activeShow?: ActiveShow): number;
|
|
15583
|
+
declare function firstVisibleIndex(slides: readonly PptxSlide[], activeShow?: ActiveShow, authoredRange?: AuthoredRange): number;
|
|
15474
15584
|
/** The show's last visible slide (End), or 0 for an empty deck. */
|
|
15475
|
-
declare function lastVisibleIndex(slides: readonly PptxSlide[], activeShow?: ActiveShow): number;
|
|
15585
|
+
declare function lastVisibleIndex(slides: readonly PptxSlide[], activeShow?: ActiveShow, authoredRange?: AuthoredRange): number;
|
|
15476
15586
|
/**
|
|
15477
15587
|
* Style record centring the scaled slide stage in the viewport.
|
|
15478
15588
|
*
|
|
@@ -15506,6 +15616,13 @@ interface ShowNavigatorDeps {
|
|
|
15506
15616
|
* space never has to be translated.
|
|
15507
15617
|
*/
|
|
15508
15618
|
activeCustomShow?: () => ActiveShow;
|
|
15619
|
+
/**
|
|
15620
|
+
* The `p:showPr/p:sldRg` slide-range restriction, when the deck is authored
|
|
15621
|
+
* to open into a range rather than the whole deck or a custom show. Applied
|
|
15622
|
+
* the same way `activeCustomShow` is: a filter on the navigable order, not a
|
|
15623
|
+
* pre-filtered slide array.
|
|
15624
|
+
*/
|
|
15625
|
+
authoredRange?: () => AuthoredRange;
|
|
15509
15626
|
/** The slide at the CURRENT index (a computed over `currentIndex`). */
|
|
15510
15627
|
currentSlide: () => PptxSlide | undefined;
|
|
15511
15628
|
showWithAnimation: () => boolean | undefined;
|
|
@@ -15522,6 +15639,12 @@ interface ShowNavigatorDeps {
|
|
|
15522
15639
|
* the show immediately instead. Undefined means the PowerPoint default.
|
|
15523
15640
|
*/
|
|
15524
15641
|
endWithBlackSlide?: () => boolean | undefined;
|
|
15642
|
+
/**
|
|
15643
|
+
* Set Up Slide Show > "Loop continuously until 'Esc'". When true, running
|
|
15644
|
+
* past the last slide wraps back to the show's first slide instead of
|
|
15645
|
+
* raising the end-of-show screen (or exiting, per `endWithBlackSlide`).
|
|
15646
|
+
*/
|
|
15647
|
+
loopContinuously?: () => boolean | undefined;
|
|
15525
15648
|
}
|
|
15526
15649
|
declare class PresentationShowNavigator {
|
|
15527
15650
|
private readonly deps;
|
|
@@ -15712,6 +15835,15 @@ declare class PresentationOverlayComponent implements OnInit {
|
|
|
15712
15835
|
* hidden slides inside a show are still skipped.
|
|
15713
15836
|
*/
|
|
15714
15837
|
readonly activeCustomShow: _angular_core.InputSignal<ShowOrderCustomShow | null>;
|
|
15838
|
+
/**
|
|
15839
|
+
* The `p:showPr/p:sldRg` slide-range restriction, when the deck is authored
|
|
15840
|
+
* to open into a range (`p:showPr/@showSlidesMode == 'range'`) rather than
|
|
15841
|
+
* the whole deck or a custom show. Applied the same way `activeCustomShow`
|
|
15842
|
+
* is: a filter on the navigable order, not a pre-filtered slide array.
|
|
15843
|
+
*/
|
|
15844
|
+
readonly authoredRange: _angular_core.InputSignal<AuthoredSlideRange | null>;
|
|
15845
|
+
/** Set Up Slide Show > "Loop continuously until 'Esc'". */
|
|
15846
|
+
readonly loopContinuously: _angular_core.InputSignal<boolean>;
|
|
15715
15847
|
readonly showWithAnimation: _angular_core.InputSignal<boolean | undefined>;
|
|
15716
15848
|
/**
|
|
15717
15849
|
* Whether authored slide timings (`p:transition/@advTm`) advance the show on
|
|
@@ -15924,7 +16056,7 @@ declare class PresentationOverlayComponent implements OnInit {
|
|
|
15924
16056
|
private runChromeAction;
|
|
15925
16057
|
private emitClosed;
|
|
15926
16058
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PresentationOverlayComponent, never>;
|
|
15927
|
-
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; }; "activeCustomShow": { "alias": "activeCustomShow"; "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; }; "showMenuOnRightClick": { "alias": "showMenuOnRightClick"; "required": false; "isSignal": true; }; "showPopupToolbar": { "alias": "showPopupToolbar"; "required": false; "isSignal": true; }; }, { "indexChange": "indexChange"; "closed": "closed"; "subtitlesChange": "subtitlesChange"; "presenterViewToggle": "presenterViewToggle"; "annotationsExit": "annotationsExit"; }, never, never, true, never>;
|
|
16059
|
+
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; }; "activeCustomShow": { "alias": "activeCustomShow"; "required": false; "isSignal": true; }; "authoredRange": { "alias": "authoredRange"; "required": false; "isSignal": true; }; "loopContinuously": { "alias": "loopContinuously"; "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; }; "showMenuOnRightClick": { "alias": "showMenuOnRightClick"; "required": false; "isSignal": true; }; "showPopupToolbar": { "alias": "showPopupToolbar"; "required": false; "isSignal": true; }; }, { "indexChange": "indexChange"; "closed": "closed"; "subtitlesChange": "subtitlesChange"; "presenterViewToggle": "presenterViewToggle"; "annotationsExit": "annotationsExit"; }, never, never, true, never>;
|
|
15928
16060
|
}
|
|
15929
16061
|
|
|
15930
16062
|
/**
|
|
@@ -16579,6 +16711,11 @@ declare class EffectsPanelComponent {
|
|
|
16579
16711
|
protected readonly elementKey: _angular_core.Signal<string>;
|
|
16580
16712
|
protected onOuterShadowToggle(event: Event): void;
|
|
16581
16713
|
protected onOuterShadowField(field: 'color' | 'opacity' | 'blur' | 'angle' | 'distance', event: Event): void;
|
|
16714
|
+
/**
|
|
16715
|
+
* `a:outerShdw@rotWithShape`: whether the shadow rotates along with the
|
|
16716
|
+
* shape. PowerPoint defaults to `true` when the attribute is absent.
|
|
16717
|
+
*/
|
|
16718
|
+
protected onOuterShadowRotateWithShapeToggle(event: Event): void;
|
|
16582
16719
|
protected onInnerShadowToggle(event: Event): void;
|
|
16583
16720
|
protected onInnerShadowField(field: 'color' | 'opacity' | 'blur' | 'offsetX' | 'offsetY', event: Event): void;
|
|
16584
16721
|
protected onGlowToggle(event: Event): void;
|
|
@@ -17043,6 +17180,13 @@ declare class ChartDisplayOptionsComponent {
|
|
|
17043
17180
|
readonly elementChange: _angular_core.OutputEmitterRef<ChartPptxElement>;
|
|
17044
17181
|
protected readonly legendPositions: readonly ChartOption<string>[];
|
|
17045
17182
|
protected readonly style: _angular_core.Signal<pptx_viewer_core.PptxChartStyle>;
|
|
17183
|
+
/**
|
|
17184
|
+
* Read from the primary value axis's `majorGridlines`, matching what the
|
|
17185
|
+
* cartesian renderer actually draws; `style.hasGridlines` alone is a legacy
|
|
17186
|
+
* field the renderer never reads, so wiring the checkbox straight to it
|
|
17187
|
+
* silently did nothing (see `chart-gridlines-toggle.ts` in shared).
|
|
17188
|
+
*/
|
|
17189
|
+
protected readonly gridlinesShown: _angular_core.Signal<boolean>;
|
|
17046
17190
|
protected onToggleTitle(event: Event): void;
|
|
17047
17191
|
protected onToggleLegend(event: Event): void;
|
|
17048
17192
|
protected onLegendPosition(event: Event): void;
|
|
@@ -18625,12 +18769,12 @@ declare class PropertiesDialogComponent {
|
|
|
18625
18769
|
* share-helpers.ts: Share dialog helpers for the Angular viewer.
|
|
18626
18770
|
*
|
|
18627
18771
|
* The shared subset (ShareFormFields / ShareDefaults / seedShareFields /
|
|
18628
|
-
* canStartShare) is re-exported from `pptx-viewer-shared`
|
|
18629
|
-
*
|
|
18630
|
-
*
|
|
18631
|
-
*
|
|
18632
|
-
*
|
|
18633
|
-
*
|
|
18772
|
+
* canStartShare / buildShareUrl) is re-exported from `pptx-viewer-shared`
|
|
18773
|
+
* (`render/share-form`, `render/broadcast-helpers`). One helper stays local
|
|
18774
|
+
* because it diverges from the shared builders: `buildCollaborationConfig`
|
|
18775
|
+
* validates with `canStartShare` (non-blank room) and emits a config WITHOUT
|
|
18776
|
+
* `role`/`sessionIntent`, unlike the shared `buildShareConfig` (which is
|
|
18777
|
+
* `buildCreateCollaborationConfig`).
|
|
18634
18778
|
*
|
|
18635
18779
|
* No `any`; all regexes use the `/u` flag; no `String.prototype.replaceAll`,
|
|
18636
18780
|
* no regex named-capture-groups (ng-packagr lib-target constraints).
|
|
@@ -18642,14 +18786,6 @@ declare class PropertiesDialogComponent {
|
|
|
18642
18786
|
* `transport: 'webrtc'`; otherwise the default websocket transport is used.
|
|
18643
18787
|
*/
|
|
18644
18788
|
declare function buildCollaborationConfig(fields: ShareFormFields): CollaborationConfig | null;
|
|
18645
|
-
/**
|
|
18646
|
-
* Build a shareable join URL for a session. Returns just the room id when no
|
|
18647
|
-
* `origin`/`pathname` are available (e.g. non-browser environments).
|
|
18648
|
-
*/
|
|
18649
|
-
declare function buildShareUrl(roomId: string, serverUrl: string, location?: {
|
|
18650
|
-
origin: string;
|
|
18651
|
-
pathname: string;
|
|
18652
|
-
}): string;
|
|
18653
18789
|
|
|
18654
18790
|
declare class ShareDialogComponent {
|
|
18655
18791
|
/** Whether the dialog is visible. */
|
|
@@ -19305,7 +19441,7 @@ declare class AccountPageComponent {
|
|
|
19305
19441
|
readonly accountAuth: _angular_core.InputSignal<AccountAuthConfig | undefined>;
|
|
19306
19442
|
private readonly translate;
|
|
19307
19443
|
protected readonly swatches: readonly string[];
|
|
19308
|
-
protected readonly version = "3.
|
|
19444
|
+
protected readonly version = "3.3.0";
|
|
19309
19445
|
protected readonly profile: _angular_core.WritableSignal<ViewerProfile>;
|
|
19310
19446
|
protected readonly initial: _angular_core.Signal<string>;
|
|
19311
19447
|
protected readonly usage: _angular_core.WritableSignal<LocalStorageUsageSummary | null>;
|
|
@@ -21257,7 +21393,7 @@ declare class RibbonFontControlsComponent {
|
|
|
21257
21393
|
* grouping and de-duplication now come from `pptx-viewer-shared`.
|
|
21258
21394
|
*/
|
|
21259
21395
|
protected readonly fontGroups: _angular_core.Signal<FontCatalogGroup[]>;
|
|
21260
|
-
protected readonly fontSizes: number[];
|
|
21396
|
+
protected readonly fontSizes: readonly number[];
|
|
21261
21397
|
protected readonly fontColorPresets: string[];
|
|
21262
21398
|
protected readonly highlightColorPresets: string[];
|
|
21263
21399
|
protected readonly charSpacingOptions: {
|
|
@@ -21596,14 +21732,6 @@ declare class RibbonReviewSectionComponent {
|
|
|
21596
21732
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RibbonReviewSectionComponent, "pptx-ribbon-review-section", never, { "spellCheckEnabled": { "alias": "spellCheckEnabled"; "required": false; "isSignal": true; }; "canEdit": { "alias": "canEdit"; "required": false; "isSignal": true; }; }, { "comments": "comments"; "spellCheckChange": "spellCheckChange"; "a11y": "a11y"; "openCompare": "openCompare"; "language": "language"; "link": "link"; }, never, never, true, never>;
|
|
21597
21733
|
}
|
|
21598
21734
|
|
|
21599
|
-
/** Grouping needs an editable deck and at least two selected elements. */
|
|
21600
|
-
declare function canGroupSelection(canEdit: boolean, selectedCount: number): boolean;
|
|
21601
|
-
/** Ungrouping needs an editable deck and a selection that IS a group. */
|
|
21602
|
-
declare function canUngroupSelection(canEdit: boolean, element: PptxElement | null): boolean;
|
|
21603
|
-
/** An outline width only exists on an element that carries shape properties. */
|
|
21604
|
-
declare function canSetStrokeWidth(canEdit: boolean, element: PptxElement | null): boolean;
|
|
21605
|
-
/** The stroke width to show for a selection, defaulted for a shape without one. */
|
|
21606
|
-
declare function strokeWidthOf(element: PptxElement | null): number;
|
|
21607
21735
|
declare class RibbonShapeExtrasComponent {
|
|
21608
21736
|
protected readonly editor: EditorStateService;
|
|
21609
21737
|
readonly slideIndex: _angular_core.InputSignal<number>;
|
|
@@ -21965,19 +22093,6 @@ declare function asMediaElement(el: PptxElement): MediaPptxElement | undefined;
|
|
|
21965
22093
|
* Mirrors React's `element.mediaData ?? mediaDataUrls.get(mediaPath)`.
|
|
21966
22094
|
*/
|
|
21967
22095
|
declare function resolveMediaSrc(el: MediaPptxElement, mediaDataUrls: Map<string, string>): string | undefined;
|
|
21968
|
-
/**
|
|
21969
|
-
* Register a `playAcrossSlides` audio element with the shared persistent-audio
|
|
21970
|
-
* manager, using the same resolved source, loop, volume and trim start the
|
|
21971
|
-
* slide-local element would have used. PowerPoint keeps such background audio
|
|
21972
|
-
* playing when the show advances, but the slide-local `<audio>` dies with its
|
|
21973
|
-
* slide's DOM; the manager's hidden document-level element survives it.
|
|
21974
|
-
*
|
|
21975
|
-
* Returns true when the persistent element owns playback, in which case the
|
|
21976
|
-
* slide-local media node must stay silent or the track doubles. Idempotent per
|
|
21977
|
-
* element id (the manager no-ops a re-register), so re-entering the owning
|
|
21978
|
-
* slide does not restart the track.
|
|
21979
|
-
*/
|
|
21980
|
-
declare function registerCrossSlideAudio(element: MediaPptxElement, src: string | undefined): boolean;
|
|
21981
22096
|
/**
|
|
21982
22097
|
* Build a media-fragment URI component (`#t=start,end`) for trimmed media.
|
|
21983
22098
|
* Times are stored in milliseconds; the fragment uses seconds. Mirrors React's
|
|
@@ -22577,6 +22692,6 @@ declare function thumbnailHeight(canvasW: number, canvasH: number, thumbW: numbe
|
|
|
22577
22692
|
*/
|
|
22578
22693
|
declare function gridColumns(containerW: number, thumbW: number, gap: number, maxCols: number): number;
|
|
22579
22694
|
|
|
22580
|
-
export { AFTER_ANIMATION_VALUES, ALIGN_OPTIONS, ANIMATION_PRESET_CATEGORIES, AUDIENCE_HASH, AUDIENCE_NONCE_KEY, AVATAR_COLOR_SWATCHES, AXIS_LABEL_COLOR, AccessibilityPanelComponent, AccessibilityService, 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, 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, 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, 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, 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, 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, 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, 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 };
|
|
22581
|
-
export type { AccessibilityIssueGroup, AccountAuthConfig, ActionDescriptor, ActiveShow, AiCanvasHighlight, AiChatInitState, AiHistoryInitDeps, 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, EffectSoundState, EffectsState, EmbeddedFontStyles, EquationTemplate, EyedropperResult, FindOptions, FindResult, FocusChip, FocusSelectionInput, GifFrame, GifFramePlan, GifPlanOptions, GlowState, GradientState, GradientStop$1 as GradientStop, 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, 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 };
|
|
22695
|
+
export { AFTER_ANIMATION_VALUES, ALIGN_OPTIONS, ANIMATION_PRESET_CATEGORIES, AUDIENCE_HASH, AUDIENCE_NONCE_KEY, AVATAR_COLOR_SWATCHES, AXIS_LABEL_COLOR, AccessibilityPanelComponent, AccessibilityService, 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, 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, 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, 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, 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, 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, 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 };
|
|
22696
|
+
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, 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, EffectSoundState, EffectsState, EmbeddedFontStyles, EquationTemplate, EyedropperResult, FindOptions, FindResult, FocusChip, FocusSelectionInput, GifFrame, GifFramePlan, GifPlanOptions, GlowState, GradientState, GradientStop$1 as GradientStop, 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, 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 };
|
|
22582
22697
|
//# sourceMappingURL=pptx-angular-viewer.d.ts.map
|