pptx-angular-viewer 1.26.0 → 1.28.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 +16 -0
- package/fesm2022/pptx-angular-viewer.mjs +47357 -45693
- package/fesm2022/pptx-angular-viewer.mjs.map +1 -1
- package/package.json +1 -1
- package/pptx-angular-viewer.css +1 -1
- package/types/pptx-angular-viewer.d.ts +404 -41
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as pptx_viewer_core from 'pptx-viewer-core';
|
|
2
|
-
import { PptxSlide, PptxElement, ShapeStyle, PptxTextWarpPreset, XmlObject, PptxChartSeries, PptxChartData, PptxElementAnimation, PptxAnimationPreset, PptxAnimationDirection, PptxAnimationRepeatMode, PptxAnimationSequence, PptxAnimationTimingCurve, PptxAnimationTrigger, TablePptxElement, PptxSection, OlePptxElement, TextSegment, TextStyle, PptxTransitionType, SmartArtColorScheme, PptxSmartArtChrome, PptxSmartArtDrawingShape, SmartArtStyle, PptxSmartArtData, PptxEmbeddedFont, SmartArtLayout, AccessibilityIssueSeverity, AccessibilityIssue, AccessibilityIssueType, AccessibilityCheckOptions, InkPptxElement, PptxComment, PptxChartType, PptxHeaderFooter, PptxTheme, PptxSlideMaster, PptxNotesMaster, PptxHandoutMaster, PptxPresentationProperties, PptxCoreProperties, PptxCustomProperty, ParsedSignature, PptxSaveFormat, PptxTableCell, PptxTableCellStyle, PptxTableRow, PptxTableData, PptxCustomShow, PptxThemePreset, PptxThemeColorScheme, PptxThemeFontScheme, MasterViewTab, Model3DPptxElement, ZoomPptxElement, PptxSlideTransition, ChartPptxElement, MediaPptxElement, SmartArtPptxElement, PptxChartDataLabelOptions, PptxChartAxisType, PptxChartAxisFormatting, PptxChartDataPoint, PptxChartTrendline, PptxChartErrBars, SvgExportOptions, PptxData, SignatureStatus, ElementActionType, ElementAction, PptxImageEffects, MediaBookmark, ColorMapAliasKey, ChartAxisEdit, ChartDataPointLabelEdit, PptxChartLegendPosition, PptxChartStyle, ChartAxisTitleStyleEdit, ChartGridlineStyleEdit, PptxChartMarkerSymbol, PptxSmartArtNode, SmartArtLayoutType, PptxSmartArtNodeStyle, MediaCaptionTrack, PptxMediaType } from 'pptx-viewer-core';
|
|
2
|
+
import { PptxSlide, PptxElement, ShapeStyle, PptxTextWarpPreset, XmlObject, PptxChartSeries, PptxChartData, PptxElementAnimation, PptxAnimationPreset, PptxAnimationDirection, PptxAnimationRepeatMode, PptxAnimationSequence, PptxAnimationTimingCurve, PptxAnimationTrigger, TablePptxElement, PptxSection, OlePptxElement, TextSegment, TextStyle, PptxTransitionType, SmartArtColorScheme, PptxSmartArtChrome, PptxSmartArtDrawingShape, SmartArtStyle, PptxSmartArtData, PptxEmbeddedFont, SmartArtLayout, AccessibilityIssueSeverity, AccessibilityIssue, AccessibilityIssueType, AccessibilityCheckOptions, InkPptxElement, PptxComment, PptxChartType, PptxHeaderFooter, PptxTheme, PptxSlideMaster, PptxNotesMaster, PptxHandoutMaster, PptxPresentationProperties, PptxCoreProperties, PptxAppProperties, PptxThemeOption, PptxCustomProperty, ParsedSignature, PptxSaveFormat, PptxTableCell, PptxTableCellStyle, PptxTableRow, PptxTableData, PptxCustomShow, PptxThemePreset, PptxThemeColorScheme, PptxThemeFontScheme, MasterViewTab, Model3DPptxElement, ZoomPptxElement, PptxSlideTransition, ChartPptxElement, MediaPptxElement, SmartArtPptxElement, PptxChartDataLabelOptions, PptxChartAxisType, PptxChartAxisFormatting, PptxChartDataPoint, PptxChartTrendline, PptxChartErrBars, SvgExportOptions, PptxData, SignatureStatus, ElementActionType, ElementAction, PptxImageEffects, MediaBookmark, ColorMapAliasKey, ChartAxisEdit, ChartDataPointLabelEdit, PptxChartLegendPosition, PptxChartStyle, ChartAxisTitleStyleEdit, ChartGridlineStyleEdit, PptxChartMarkerSymbol, PptxSmartArtNode, SmartArtLayoutType, PptxSmartArtNodeStyle, MediaCaptionTrack, PptxMediaType } from 'pptx-viewer-core';
|
|
3
3
|
export { SWITCHABLE_LAYOUT_TYPES, addSmartArtNode, addSmartArtNodeAsChild, chartDataAddCategory, chartDataAddSeries, chartDataChangeType, chartDataRemoveCategory, chartDataRemoveSeries, chartDataUpdatePoint, demoteSmartArtNode, promoteSmartArtNode, removeSmartArtNode, reorderSmartArtNode, switchSmartArtLayout, updateSmartArtNodeText } from 'pptx-viewer-core';
|
|
4
4
|
import * as _angular_core from '@angular/core';
|
|
5
5
|
import { Signal, WritableSignal, OnDestroy, OnInit, OnChanges, SimpleChanges, InjectionToken, Provider } from '@angular/core';
|
|
@@ -133,6 +133,25 @@ declare const vermilionLightTheme: ViewerTheme;
|
|
|
133
133
|
/** Dark vermilion theme, ready for the viewer's `theme` prop. */
|
|
134
134
|
declare const vermilionDarkTheme: ViewerTheme;
|
|
135
135
|
|
|
136
|
+
/** One selectable entry in the viewer chrome's built-in theme picker (File > Options > Appearance). */
|
|
137
|
+
interface ThemeCatalogEntry {
|
|
138
|
+
/** Stable identifier persisted to storage and passed to `onThemeChange`. */
|
|
139
|
+
key: string;
|
|
140
|
+
/** `pptx.*` translation key for the entry's display label. */
|
|
141
|
+
labelKey: string;
|
|
142
|
+
/** The theme to apply, or `undefined` to reset to the built-in default. */
|
|
143
|
+
theme: ViewerTheme | undefined;
|
|
144
|
+
}
|
|
145
|
+
/**
|
|
146
|
+
* Built-in theme choices offered by File > Options > Appearance when a host
|
|
147
|
+
* doesn't supply its own `availableThemes`. Keep this list short: it's meant
|
|
148
|
+
* as a sensible out-of-the-box picker, not a full theme gallery. Hosts that
|
|
149
|
+
* want more (or fewer) choices pass their own `availableThemes` prop.
|
|
150
|
+
*/
|
|
151
|
+
declare const THEME_CATALOG: readonly ThemeCatalogEntry[];
|
|
152
|
+
/** Look up a catalog entry by key, falling back to `undefined` (the built-in default) if not found. */
|
|
153
|
+
declare function resolveThemeCatalogEntry(key: string | undefined, catalog?: readonly ThemeCatalogEntry[]): ViewerTheme | undefined;
|
|
154
|
+
|
|
136
155
|
/**
|
|
137
156
|
* Framework-agnostic public types shared by the viewer bindings.
|
|
138
157
|
*
|
|
@@ -3986,6 +4005,51 @@ declare function mergeCaptionResults(resultIndex: number, results: SpeechResultL
|
|
|
3986
4005
|
declare function getSpeechRecognitionCtor(): SpeechRecognitionCtor | null;
|
|
3987
4006
|
declare function captionDisplayText(supportState: SpeechSupportState, captionText: string, fallbackNotSupported: string, fallbackListening: string): string;
|
|
3988
4007
|
|
|
4008
|
+
/** Local-only display profile shown in File > Account. Never sent anywhere; purely cosmetic. */
|
|
4009
|
+
interface ViewerProfile {
|
|
4010
|
+
displayName: string;
|
|
4011
|
+
/** CSS color for the avatar bubble background, e.g. `'#c2431f'`. */
|
|
4012
|
+
avatarColor: string;
|
|
4013
|
+
/** Single character shown in the avatar bubble. Derived from `displayName` when omitted. */
|
|
4014
|
+
initial?: string;
|
|
4015
|
+
}
|
|
4016
|
+
declare const DEFAULT_VIEWER_PROFILE: ViewerProfile;
|
|
4017
|
+
/** Suggested avatar color swatches for the Account profile editor. */
|
|
4018
|
+
declare const AVATAR_COLOR_SWATCHES: readonly string[];
|
|
4019
|
+
/** Derive the avatar-bubble initial from a profile, falling back to `'?'` for an empty name. */
|
|
4020
|
+
declare function resolveProfileInitial(profile: ViewerProfile): string;
|
|
4021
|
+
/**
|
|
4022
|
+
* Optional hook point for hosts that want to wire a real sign-in flow into
|
|
4023
|
+
* File > Account. Disabled by default: the Account page renders nothing
|
|
4024
|
+
* extra unless a host explicitly opts in by passing `enabled: true`.
|
|
4025
|
+
* See docs/guide for wiring instructions.
|
|
4026
|
+
*/
|
|
4027
|
+
interface AccountAuthConfig {
|
|
4028
|
+
enabled: boolean;
|
|
4029
|
+
onSignIn: () => void;
|
|
4030
|
+
signedInUser?: {
|
|
4031
|
+
name: string;
|
|
4032
|
+
email?: string;
|
|
4033
|
+
avatarUrl?: string;
|
|
4034
|
+
};
|
|
4035
|
+
}
|
|
4036
|
+
interface LocalStorageUsageSummary {
|
|
4037
|
+
/** Number of presentations with a local autosave/recovery snapshot. */
|
|
4038
|
+
presentationCount: number;
|
|
4039
|
+
/** Total bytes across every stored snapshot. */
|
|
4040
|
+
totalBytes: number;
|
|
4041
|
+
}
|
|
4042
|
+
/** Summarize local (IndexedDB) storage usage for the Account > Storage & Privacy panel. */
|
|
4043
|
+
declare function getLocalStorageUsageSummary(): Promise<LocalStorageUsageSummary>;
|
|
4044
|
+
/**
|
|
4045
|
+
* Delete every locally stored presentation/recovery snapshot and persisted
|
|
4046
|
+
* viewer preference (theme/locale/profile). Irreversible; callers should
|
|
4047
|
+
* confirm with the user before invoking this.
|
|
4048
|
+
*/
|
|
4049
|
+
declare function clearAllLocalViewerData(): Promise<void>;
|
|
4050
|
+
/** Persist an updated profile via the shared viewer-prefs store. */
|
|
4051
|
+
declare function saveViewerProfile(profile: ViewerProfile): void;
|
|
4052
|
+
|
|
3989
4053
|
/**
|
|
3990
4054
|
* Toolbar action / ribbon-tab visibility: a single, framework-agnostic
|
|
3991
4055
|
* catalogue of every top-level toolbar button and ribbon tab a host app can
|
|
@@ -4318,6 +4382,47 @@ declare function segmentFrameCount(durationMs: number, fps: number): number;
|
|
|
4318
4382
|
/** DOM id of the managed `<style>` element the service injects into `<head>`. */
|
|
4319
4383
|
declare const EMBEDDED_FONTS_STYLE_ID = "pptx-angular-embedded-fonts";
|
|
4320
4384
|
|
|
4385
|
+
/**
|
|
4386
|
+
* The canonical English UI-string dictionary for pptx-viewer. None of the
|
|
4387
|
+
* React/Vue/Angular binding packages ship translations themselves - each
|
|
4388
|
+
* only calls its framework's translation function (react-i18next's `t()`,
|
|
4389
|
+
* vue-i18n's `t()`, ngx-translate's `TranslateService`/`translate` pipe)
|
|
4390
|
+
* against dotted `pptx.*` keys. The host app supplies the dictionary; this
|
|
4391
|
+
* module is that dictionary for the demos, shared so all three stay in sync
|
|
4392
|
+
* instead of drifting into three separate copies.
|
|
4393
|
+
*/
|
|
4394
|
+
declare const translationsEn: Record<string, string>;
|
|
4395
|
+
/**
|
|
4396
|
+
* Every key in the English dictionary. A new locale dictionary typed as
|
|
4397
|
+
* `Record<TranslationKey, string>` gets a compile error for any key it's
|
|
4398
|
+
* missing or misspells, so translation contributions stay complete without a
|
|
4399
|
+
* separate parity test.
|
|
4400
|
+
*/
|
|
4401
|
+
type TranslationKey = keyof typeof translationsEn;
|
|
4402
|
+
/**
|
|
4403
|
+
* Convert a dotted translation key to a human-readable label when no
|
|
4404
|
+
* explicit dictionary entry exists yet. Takes the last segment and converts
|
|
4405
|
+
* camelCase to Title Case, e.g. "pptx.slideSorter.zoomIn" -> "Zoom In".
|
|
4406
|
+
*/
|
|
4407
|
+
declare function keyToLabel(key: string): string;
|
|
4408
|
+
|
|
4409
|
+
/** One selectable entry in the viewer chrome's built-in language picker (File > Options > Language). */
|
|
4410
|
+
interface LocaleCatalogEntry {
|
|
4411
|
+
/** BCP-47-ish locale code, e.g. `'en'`, `'fr'`. Matches `pptx-viewer-locales`' exports. */
|
|
4412
|
+
code: string;
|
|
4413
|
+
/** English display name, used before a translation dictionary for the target locale is loaded. */
|
|
4414
|
+
label: string;
|
|
4415
|
+
/** The locale's own name for itself, e.g. `'Français'` for `fr`. */
|
|
4416
|
+
nativeLabel: string;
|
|
4417
|
+
}
|
|
4418
|
+
/**
|
|
4419
|
+
* Built-in language choices offered by File > Options > Language when a host
|
|
4420
|
+
* doesn't supply its own `availableLocales`. Mirrors the locales shipped by
|
|
4421
|
+
* the optional `pptx-viewer-locales` package (English needs no dictionary,
|
|
4422
|
+
* it's the viewer's own baseline).
|
|
4423
|
+
*/
|
|
4424
|
+
declare const LOCALE_CATALOG: readonly LocaleCatalogEntry[];
|
|
4425
|
+
|
|
4321
4426
|
declare class AccessibilityService {
|
|
4322
4427
|
/** Parsed slides of the current presentation. */
|
|
4323
4428
|
readonly slides: _angular_core.WritableSignal<PptxSlide[]>;
|
|
@@ -4883,6 +4988,12 @@ declare class LoadContentService {
|
|
|
4883
4988
|
readonly embeddedFonts: _angular_core.WritableSignal<PptxEmbeddedFont[]>;
|
|
4884
4989
|
/** Core document properties from `docProps/core.xml`. */
|
|
4885
4990
|
readonly coreProperties: _angular_core.WritableSignal<PptxCoreProperties | undefined>;
|
|
4991
|
+
/** Extended application properties from `docProps/app.xml`. */
|
|
4992
|
+
readonly appProperties: _angular_core.WritableSignal<PptxAppProperties | undefined>;
|
|
4993
|
+
/** Selectable theme parts discovered in the package (path + display name). */
|
|
4994
|
+
readonly themeOptions: _angular_core.WritableSignal<PptxThemeOption[]>;
|
|
4995
|
+
/** Notes page size in pixels (from `p:notesSz`), when present. */
|
|
4996
|
+
readonly notesCanvasSize: _angular_core.WritableSignal<CanvasSize | undefined>;
|
|
4886
4997
|
/** Custom document properties (used for `docproperty` field substitution). */
|
|
4887
4998
|
readonly customProperties: _angular_core.WritableSignal<PptxCustomProperty[]>;
|
|
4888
4999
|
/** Header/footer settings (footer/header/date-time text + format) for field substitution. */
|
|
@@ -4910,10 +5021,22 @@ declare class LoadContentService {
|
|
|
4910
5021
|
/**
|
|
4911
5022
|
* Serialise an explicit set of slides back to `.pptx` bytes (e.g. the
|
|
4912
5023
|
* editor's edited deck) using the loaded presentation's handler.
|
|
5024
|
+
*
|
|
5025
|
+
* Document properties (`docProps/core.xml` / `app.xml` / `custom.xml`)
|
|
5026
|
+
* are passed from the live signals so inspector edits (DOCUMENT card)
|
|
5027
|
+
* survive the save, mirroring React's `useSerialize` save options; core's
|
|
5028
|
+
* `PptxDocumentPropertiesUpdater` writes them back into the package.
|
|
4913
5029
|
*/
|
|
4914
5030
|
saveSlides(slides: readonly PptxSlide[], outputFormat?: PptxSaveFormat, sections?: readonly PptxSection[]): Promise<Uint8Array>;
|
|
4915
5031
|
/** Parse the supplied `.pptx` bytes into the reactive signals. */
|
|
4916
5032
|
load(raw: Uint8Array | ArrayBuffer | null | undefined): Promise<void>;
|
|
5033
|
+
/**
|
|
5034
|
+
* Point the presentation (first master, or every master) at another theme
|
|
5035
|
+
* part in the package, mirroring React's `handleApplyTheme`. Updates the
|
|
5036
|
+
* in-memory ZIP for save round-trip and the `slideMasters` signal so the
|
|
5037
|
+
* change is visible to consumers; callers mark the editor dirty.
|
|
5038
|
+
*/
|
|
5039
|
+
setPresentationTheme(themePath: string, applyToAllMasters: boolean): Promise<void>;
|
|
4917
5040
|
private disposeHandler;
|
|
4918
5041
|
private revokeBlobUrls;
|
|
4919
5042
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LoadContentService, never>;
|
|
@@ -6304,8 +6427,40 @@ declare class PowerPointViewerComponent {
|
|
|
6304
6427
|
readonly canEdit: _angular_core.InputSignal<boolean>;
|
|
6305
6428
|
/** Optional class applied to the root element. */
|
|
6306
6429
|
readonly class: _angular_core.InputSignal<string>;
|
|
6307
|
-
/** Theme configuration for customising the viewer's appearance. */
|
|
6430
|
+
/** Theme configuration for customising the viewer's appearance. Always wins over a File > Options > Appearance selection; see {@link defaultThemeKey}. */
|
|
6308
6431
|
readonly theme: _angular_core.InputSignal<ViewerTheme | undefined>;
|
|
6432
|
+
/**
|
|
6433
|
+
* Initial File > Options > Appearance selection (a `THEME_CATALOG`, or
|
|
6434
|
+
* `availableThemes`, key) applied when no stored `pptx-viewer-prefs`
|
|
6435
|
+
* preference exists yet. Has no effect once the host supplies an explicit
|
|
6436
|
+
* {@link theme}, which always wins.
|
|
6437
|
+
*/
|
|
6438
|
+
readonly defaultThemeKey: _angular_core.InputSignal<string | undefined>;
|
|
6439
|
+
/** Theme choices offered by File > Options > Appearance. Defaults to the built-in `THEME_CATALOG` (4 entries). */
|
|
6440
|
+
readonly availableThemes: _angular_core.InputSignal<readonly ThemeCatalogEntry[] | undefined>;
|
|
6441
|
+
/**
|
|
6442
|
+
* Host hook for File > Options > Appearance selections. When supplied, the
|
|
6443
|
+
* host owns persisting the choice (e.g. into a user profile) and the
|
|
6444
|
+
* viewer never touches `localStorage`. When omitted, the viewer falls back
|
|
6445
|
+
* to the `pptx-viewer-prefs` `localStorage` entry. Mirrors the
|
|
6446
|
+
* {@link onOpenFile} opt-in convention.
|
|
6447
|
+
*/
|
|
6448
|
+
readonly onThemeChange: _angular_core.InputSignal<((key: string) => void) | undefined>;
|
|
6449
|
+
/**
|
|
6450
|
+
* Initial File > Options > Language selection applied when no stored
|
|
6451
|
+
* `pptx-viewer-prefs` preference exists yet.
|
|
6452
|
+
*/
|
|
6453
|
+
readonly defaultLocale: _angular_core.InputSignal<string | undefined>;
|
|
6454
|
+
/**
|
|
6455
|
+
* Locale choices offered by File > Options > Language. Defaults to every
|
|
6456
|
+
* language `TranslateService.getLangs()` reports registered, mapped
|
|
6457
|
+
* through `LOCALE_CATALOG` for display labels.
|
|
6458
|
+
*/
|
|
6459
|
+
readonly availableLocales: _angular_core.InputSignal<readonly LocaleCatalogEntry[] | undefined>;
|
|
6460
|
+
/** Host hook for File > Options > Language selections; see {@link onThemeChange}. */
|
|
6461
|
+
readonly onLocaleChange: _angular_core.InputSignal<((code: string) => void) | undefined>;
|
|
6462
|
+
/** Optional sign-in hook point for File > Account. Absent/disabled by default: no visible change unless a host opts in with `enabled: true`. */
|
|
6463
|
+
readonly accountAuth: _angular_core.InputSignal<AccountAuthConfig | undefined>;
|
|
6309
6464
|
/**
|
|
6310
6465
|
* Host file path/identifier keying the version-history store. When omitted
|
|
6311
6466
|
* the version-history panel shows its empty state. Mirrors React's
|
|
@@ -6411,6 +6566,7 @@ declare class PowerPointViewerComponent {
|
|
|
6411
6566
|
protected readonly canvasEditing: ViewerCanvasEditingService;
|
|
6412
6567
|
protected readonly collabCursor: ViewerCollabCursorService;
|
|
6413
6568
|
protected readonly docProperties: ViewerDocumentPropertiesService;
|
|
6569
|
+
private readonly translateService;
|
|
6414
6570
|
/** Handle on the secondary-dialog host (keep-annotations prompt). */
|
|
6415
6571
|
private readonly extraDialogs;
|
|
6416
6572
|
/** Surface the encrypted-file notice dialog alongside the inline fallback. */
|
|
@@ -6433,6 +6589,29 @@ declare class PowerPointViewerComponent {
|
|
|
6433
6589
|
protected readonly activeSlide: _angular_core.Signal<PptxSlide>;
|
|
6434
6590
|
/** Inherited template (master/layout) elements for the active slide, when editing. */
|
|
6435
6591
|
protected readonly activeTemplateElements: _angular_core.Signal<readonly PptxElement[]>;
|
|
6592
|
+
/**
|
|
6593
|
+
* Selected `THEME_CATALOG` (or `availableThemes`) key, driving File >
|
|
6594
|
+
* Options > Appearance. Seeded once from {@link defaultThemeKey} or the
|
|
6595
|
+
* stored `pptx-viewer-prefs` preference; see {@link selectThemeKey}.
|
|
6596
|
+
*/
|
|
6597
|
+
protected readonly themeKey: _angular_core.WritableSignal<string>;
|
|
6598
|
+
/**
|
|
6599
|
+
* Active locale code, driving File > Options > Language. Seeded once from
|
|
6600
|
+
* {@link defaultLocale} or the stored `pptx-viewer-prefs` preference; see
|
|
6601
|
+
* {@link selectLocale}.
|
|
6602
|
+
*/
|
|
6603
|
+
protected readonly localeCode: _angular_core.WritableSignal<string>;
|
|
6604
|
+
/** Theme catalog offered to the Settings dialog's Appearance tab. */
|
|
6605
|
+
protected readonly resolvedThemes: _angular_core.Signal<readonly ThemeCatalogEntry[]>;
|
|
6606
|
+
/**
|
|
6607
|
+
* Locale list offered to the Settings dialog's Language tab: the host's
|
|
6608
|
+
* `availableLocales` when supplied, else every locale `TranslateService`
|
|
6609
|
+
* currently has registered (mapped through `LOCALE_CATALOG` for display
|
|
6610
|
+
* labels), falling back to `['en']` when none are registered yet.
|
|
6611
|
+
*/
|
|
6612
|
+
protected readonly resolvedLocales: _angular_core.Signal<readonly LocaleCatalogEntry[]>;
|
|
6613
|
+
/** The active `ViewerTheme`: an explicit `theme` input always wins over the Appearance tab's catalog selection. */
|
|
6614
|
+
protected readonly effectiveTheme: _angular_core.Signal<ViewerTheme | undefined>;
|
|
6436
6615
|
protected readonly rootStyle: _angular_core.Signal<Record<string, string>>;
|
|
6437
6616
|
/** Slide-sorter grid overlay visibility. */
|
|
6438
6617
|
protected readonly showSorter: _angular_core.WritableSignal<boolean>;
|
|
@@ -6483,13 +6662,6 @@ declare class PowerPointViewerComponent {
|
|
|
6483
6662
|
protected readonly viewerSettings: _angular_core.Signal<ViewerPreferences>;
|
|
6484
6663
|
/** Whether the Insert SmartArt gallery dialog is open. */
|
|
6485
6664
|
protected readonly showSmartArtInsert: _angular_core.WritableSignal<boolean>;
|
|
6486
|
-
/**
|
|
6487
|
-
* Stable, always-truthy key for the slide-properties form. Changes only when
|
|
6488
|
-
* the active slide changes, so the `@if` recreates (and reseeds) the
|
|
6489
|
-
* uncontrolled notes/background inputs on navigation, but never mid-typing.
|
|
6490
|
-
* String-prefixed so slide index 0 stays truthy under `@if (…; as key)`.
|
|
6491
|
-
*/
|
|
6492
|
-
protected readonly slidePropsKey: _angular_core.Signal<string>;
|
|
6493
6665
|
/** The single selected element on the active slide (for the inspector). */
|
|
6494
6666
|
protected readonly selectedElement: _angular_core.Signal<PptxElement | null>;
|
|
6495
6667
|
constructor();
|
|
@@ -6508,6 +6680,19 @@ declare class PowerPointViewerComponent {
|
|
|
6508
6680
|
goTo(index: number): void;
|
|
6509
6681
|
goPrev(): void;
|
|
6510
6682
|
protected onCreatePresentation(templateId: string): void;
|
|
6683
|
+
/**
|
|
6684
|
+
* File > Options > Appearance selection handler. When a host supplies
|
|
6685
|
+
* `onThemeChange` it owns persisting the choice; otherwise this falls back
|
|
6686
|
+
* to the shared `pptx-viewer-prefs` `localStorage` entry.
|
|
6687
|
+
*/
|
|
6688
|
+
protected selectThemeKey(key: string): void;
|
|
6689
|
+
/**
|
|
6690
|
+
* File > Options > Language selection handler. When a host supplies
|
|
6691
|
+
* `onLocaleChange` it owns applying/persisting the choice; otherwise this
|
|
6692
|
+
* applies the locale via `TranslateService` and falls back to the shared
|
|
6693
|
+
* `pptx-viewer-prefs` `localStorage` entry.
|
|
6694
|
+
*/
|
|
6695
|
+
protected selectLocale(code: string): void;
|
|
6511
6696
|
protected onOpenRecentFile(key: string): void;
|
|
6512
6697
|
goNext(): void;
|
|
6513
6698
|
/** Undo the last editing action. No-op when nothing to undo. */
|
|
@@ -6630,7 +6815,7 @@ declare class PowerPointViewerComponent {
|
|
|
6630
6815
|
/** Resolve the live slide-stage element within `<main>`. */
|
|
6631
6816
|
private stageElement;
|
|
6632
6817
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PowerPointViewerComponent, never>;
|
|
6633
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PowerPointViewerComponent, "pptx-viewer", never, { "content": { "alias": "content"; "required": false; "isSignal": true; }; "fontsInput": { "alias": "fonts"; "required": false; "isSignal": true; }; "canEdit": { "alias": "canEdit"; "required": false; "isSignal": true; }; "class": { "alias": "class"; "required": false; "isSignal": true; }; "theme": { "alias": "theme"; "required": false; "isSignal": true; }; "filePath": { "alias": "filePath"; "required": false; "isSignal": true; }; "fileName": { "alias": "fileName"; "required": false; "isSignal": true; }; "collaboration": { "alias": "collaboration"; "required": false; "isSignal": true; }; "authorName": { "alias": "authorName"; "required": false; "isSignal": true; }; "shareDefaults": { "alias": "shareDefaults"; "required": false; "isSignal": true; }; "onOpenFile": { "alias": "onOpenFile"; "required": false; "isSignal": true; }; "smartArt3D": { "alias": "smartArt3D"; "required": false; "isSignal": true; }; "hiddenActions": { "alias": "hiddenActions"; "required": false; "isSignal": true; }; }, { "activeSlideChange": "activeSlideChange"; "dirtyChange": "dirtyChange"; "contentChange": "contentChange"; "propertiesChange": "propertiesChange"; "modeChange": "modeChange"; "zoomChange": "zoomChange"; "selectionChange": "selectionChange"; "slideCountChange": "slideCountChange"; "startCollaboration": "startCollaboration"; "stopCollaboration": "stopCollaboration"; }, never, never, true, never>;
|
|
6818
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PowerPointViewerComponent, "pptx-viewer", never, { "content": { "alias": "content"; "required": false; "isSignal": true; }; "fontsInput": { "alias": "fonts"; "required": false; "isSignal": true; }; "canEdit": { "alias": "canEdit"; "required": false; "isSignal": true; }; "class": { "alias": "class"; "required": false; "isSignal": true; }; "theme": { "alias": "theme"; "required": false; "isSignal": true; }; "defaultThemeKey": { "alias": "defaultThemeKey"; "required": false; "isSignal": true; }; "availableThemes": { "alias": "availableThemes"; "required": false; "isSignal": true; }; "onThemeChange": { "alias": "onThemeChange"; "required": false; "isSignal": true; }; "defaultLocale": { "alias": "defaultLocale"; "required": false; "isSignal": true; }; "availableLocales": { "alias": "availableLocales"; "required": false; "isSignal": true; }; "onLocaleChange": { "alias": "onLocaleChange"; "required": false; "isSignal": true; }; "accountAuth": { "alias": "accountAuth"; "required": false; "isSignal": true; }; "filePath": { "alias": "filePath"; "required": false; "isSignal": true; }; "fileName": { "alias": "fileName"; "required": false; "isSignal": true; }; "collaboration": { "alias": "collaboration"; "required": false; "isSignal": true; }; "authorName": { "alias": "authorName"; "required": false; "isSignal": true; }; "shareDefaults": { "alias": "shareDefaults"; "required": false; "isSignal": true; }; "onOpenFile": { "alias": "onOpenFile"; "required": false; "isSignal": true; }; "smartArt3D": { "alias": "smartArt3D"; "required": false; "isSignal": true; }; "hiddenActions": { "alias": "hiddenActions"; "required": false; "isSignal": true; }; }, { "activeSlideChange": "activeSlideChange"; "dirtyChange": "dirtyChange"; "contentChange": "contentChange"; "propertiesChange": "propertiesChange"; "modeChange": "modeChange"; "zoomChange": "zoomChange"; "selectionChange": "selectionChange"; "slideCountChange": "slideCountChange"; "startCollaboration": "startCollaboration"; "stopCollaboration": "stopCollaboration"; }, never, never, true, never>;
|
|
6634
6819
|
}
|
|
6635
6820
|
|
|
6636
6821
|
/** The eight resize-handle positions around a selection box. */
|
|
@@ -8896,6 +9081,149 @@ declare class InspectorPanelComponent {
|
|
|
8896
9081
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<InspectorPanelComponent, "pptx-inspector-panel", never, { "element": { "alias": "element"; "required": true; "isSignal": true; }; "slideIndex": { "alias": "slideIndex"; "required": true; "isSignal": true; }; "canEdit": { "alias": "canEdit"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
8897
9082
|
}
|
|
8898
9083
|
|
|
9084
|
+
/** The inspector pane's tab set (same keys as React's `InspectorTab`). */
|
|
9085
|
+
type SlideInspectorTab = 'elements' | 'properties' | 'comments';
|
|
9086
|
+
declare class InspectorPaneHeaderComponent {
|
|
9087
|
+
/** The currently active inspector tab. */
|
|
9088
|
+
readonly activeTab: _angular_core.InputSignal<SlideInspectorTab>;
|
|
9089
|
+
/** Emitted when the user picks another tab. */
|
|
9090
|
+
readonly tabChange: _angular_core.OutputEmitterRef<SlideInspectorTab>;
|
|
9091
|
+
/** Emitted when the user closes the inspector pane. */
|
|
9092
|
+
readonly closePane: _angular_core.OutputEmitterRef<void>;
|
|
9093
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<InspectorPaneHeaderComponent, never>;
|
|
9094
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<InspectorPaneHeaderComponent, "pptx-inspector-pane-header", never, { "activeTab": { "alias": "activeTab"; "required": true; "isSignal": true; }; }, { "tabChange": "tabChange"; "closePane": "closePane"; }, never, never, true, never>;
|
|
9095
|
+
}
|
|
9096
|
+
|
|
9097
|
+
/** One row of the Elements (layer-order) tab. */
|
|
9098
|
+
interface LayerRow {
|
|
9099
|
+
readonly id: string;
|
|
9100
|
+
readonly index: number;
|
|
9101
|
+
readonly label: string;
|
|
9102
|
+
readonly selected: boolean;
|
|
9103
|
+
}
|
|
9104
|
+
declare class SlideDefaultInspectorComponent {
|
|
9105
|
+
/** Zero-based index of the active slide. */
|
|
9106
|
+
readonly slideIndex: _angular_core.InputSignal<number>;
|
|
9107
|
+
/** Whether mutation controls are enabled. */
|
|
9108
|
+
readonly canEdit: _angular_core.InputSignal<boolean>;
|
|
9109
|
+
/**
|
|
9110
|
+
* The single selected element, or null. When set, the Properties tab shows
|
|
9111
|
+
* the element inspector instead of the presentation/slide sections (the tab
|
|
9112
|
+
* strip itself persists either way, matching React's InspectorPane).
|
|
9113
|
+
*/
|
|
9114
|
+
readonly selectedElement: _angular_core.InputSignal<PptxElement | null>;
|
|
9115
|
+
/** The active slide's comments (host-owned; history-aware writes stay there). */
|
|
9116
|
+
readonly comments: _angular_core.InputSignal<PptxComment[]>;
|
|
9117
|
+
/** Re-emitted comments-panel events (the host owns the comment writes). */
|
|
9118
|
+
readonly commentAdd: _angular_core.OutputEmitterRef<string>;
|
|
9119
|
+
readonly commentRemove: _angular_core.OutputEmitterRef<string>;
|
|
9120
|
+
readonly commentResolve: _angular_core.OutputEmitterRef<string>;
|
|
9121
|
+
protected readonly editor: EditorStateService;
|
|
9122
|
+
protected readonly canvasEditing: ViewerCanvasEditingService;
|
|
9123
|
+
protected readonly inspectorPanel: ViewerInspectorPanelService;
|
|
9124
|
+
/** Active tab; Properties by default, matching React's initial pane state. */
|
|
9125
|
+
protected readonly activeTab: _angular_core.WritableSignal<SlideInspectorTab>;
|
|
9126
|
+
protected readonly activeSlide: _angular_core.Signal<pptx_viewer_core.PptxSlide>;
|
|
9127
|
+
/** Stable per-slide key so slide inputs reseed only on slide change. */
|
|
9128
|
+
protected readonly slideKey: _angular_core.Signal<string>;
|
|
9129
|
+
/**
|
|
9130
|
+
* Layer-order rows, top-most first (same ordering + labelling as React's
|
|
9131
|
+
* Elements tab: reversed element order, text preview or element type).
|
|
9132
|
+
*/
|
|
9133
|
+
protected readonly layerRows: _angular_core.Signal<LayerRow[]>;
|
|
9134
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SlideDefaultInspectorComponent, never>;
|
|
9135
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SlideDefaultInspectorComponent, "pptx-slide-default-inspector", never, { "slideIndex": { "alias": "slideIndex"; "required": true; "isSignal": true; }; "canEdit": { "alias": "canEdit"; "required": false; "isSignal": true; }; "selectedElement": { "alias": "selectedElement"; "required": false; "isSignal": true; }; "comments": { "alias": "comments"; "required": false; "isSignal": true; }; }, { "commentAdd": "commentAdd"; "commentRemove": "commentRemove"; "commentResolve": "commentResolve"; }, never, never, true, never>;
|
|
9136
|
+
}
|
|
9137
|
+
|
|
9138
|
+
declare class PresentationPropertiesPanelComponent {
|
|
9139
|
+
/** Whether mutation controls are enabled. */
|
|
9140
|
+
readonly canEdit: _angular_core.InputSignal<boolean>;
|
|
9141
|
+
/** Zero-based index of the active slide (for the theme-override panel). */
|
|
9142
|
+
readonly slideIndex: _angular_core.InputSignal<number>;
|
|
9143
|
+
protected readonly loader: LoadContentService;
|
|
9144
|
+
private readonly editor;
|
|
9145
|
+
protected readonly activeSlide: _angular_core.Signal<PptxSlide | undefined>;
|
|
9146
|
+
protected onSlidePatch(patch: Partial<PptxSlide>): void;
|
|
9147
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PresentationPropertiesPanelComponent, never>;
|
|
9148
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PresentationPropertiesPanelComponent, "pptx-presentation-properties-panel", never, { "canEdit": { "alias": "canEdit"; "required": false; "isSignal": true; }; "slideIndex": { "alias": "slideIndex"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
9149
|
+
}
|
|
9150
|
+
|
|
9151
|
+
declare class PresentationSettingsCardComponent {
|
|
9152
|
+
/** Whether the controls are enabled. */
|
|
9153
|
+
readonly canEdit: _angular_core.InputSignal<boolean>;
|
|
9154
|
+
private readonly loader;
|
|
9155
|
+
private readonly editor;
|
|
9156
|
+
protected readonly props: _angular_core.WritableSignal<PptxPresentationProperties>;
|
|
9157
|
+
private patch;
|
|
9158
|
+
protected onShowTypeChange(event: Event): void;
|
|
9159
|
+
protected onCheckbox(event: Event, key: 'loopContinuously' | 'showWithNarration' | 'showWithAnimation' | 'printFrameSlides'): void;
|
|
9160
|
+
protected onSlidesPerPageChange(event: Event): void;
|
|
9161
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PresentationSettingsCardComponent, never>;
|
|
9162
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PresentationSettingsCardComponent, "pptx-presentation-settings-card", never, { "canEdit": { "alias": "canEdit"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
9163
|
+
}
|
|
9164
|
+
|
|
9165
|
+
declare class ThemeSelectorCardComponent {
|
|
9166
|
+
/** Whether the apply actions are enabled. */
|
|
9167
|
+
readonly canEdit: _angular_core.InputSignal<boolean>;
|
|
9168
|
+
private readonly loader;
|
|
9169
|
+
private readonly editor;
|
|
9170
|
+
/** Theme path the user explicitly picked (null = follow the active theme). */
|
|
9171
|
+
private readonly userSelectedPath;
|
|
9172
|
+
private readonly activeThemePath;
|
|
9173
|
+
/**
|
|
9174
|
+
* Package theme options, falling back to the first master's own theme when
|
|
9175
|
+
* the package listed none (same fallback as React's `useInspectorPaneState`).
|
|
9176
|
+
*/
|
|
9177
|
+
protected readonly options: _angular_core.Signal<PptxThemeOption[]>;
|
|
9178
|
+
protected readonly selectedThemePath: _angular_core.Signal<string>;
|
|
9179
|
+
protected optionLabel(option: PptxThemeOption): string;
|
|
9180
|
+
protected onSelect(event: Event): void;
|
|
9181
|
+
protected apply(allMasters: boolean): Promise<void>;
|
|
9182
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ThemeSelectorCardComponent, never>;
|
|
9183
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ThemeSelectorCardComponent, "pptx-theme-selector-card", never, { "canEdit": { "alias": "canEdit"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
9184
|
+
}
|
|
9185
|
+
|
|
9186
|
+
declare class SlideSizeCardComponent {
|
|
9187
|
+
/** Whether the inputs are enabled. */
|
|
9188
|
+
readonly canEdit: _angular_core.InputSignal<boolean>;
|
|
9189
|
+
private readonly loader;
|
|
9190
|
+
private readonly editor;
|
|
9191
|
+
protected readonly size: _angular_core.WritableSignal<pptx_angular_viewer.CanvasSize>;
|
|
9192
|
+
protected onChange(event: Event, dim: 'width' | 'height'): void;
|
|
9193
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SlideSizeCardComponent, never>;
|
|
9194
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SlideSizeCardComponent, "pptx-slide-size-card", never, { "canEdit": { "alias": "canEdit"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
9195
|
+
}
|
|
9196
|
+
|
|
9197
|
+
declare class NotesHandoutCardComponent {
|
|
9198
|
+
private readonly loader;
|
|
9199
|
+
private readonly translate;
|
|
9200
|
+
private notAvailable;
|
|
9201
|
+
private placeholders;
|
|
9202
|
+
protected readonly notesSizeText: _angular_core.Signal<string>;
|
|
9203
|
+
protected readonly notesMasterText: _angular_core.Signal<string>;
|
|
9204
|
+
protected readonly handoutMasterText: _angular_core.Signal<string>;
|
|
9205
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<NotesHandoutCardComponent, never>;
|
|
9206
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<NotesHandoutCardComponent, "pptx-notes-handout-card", never, {}, {}, never, never, true, never>;
|
|
9207
|
+
}
|
|
9208
|
+
|
|
9209
|
+
declare class DocumentPropertiesCardComponent {
|
|
9210
|
+
/** Whether the fields are editable. */
|
|
9211
|
+
readonly canEdit: _angular_core.InputSignal<boolean>;
|
|
9212
|
+
private readonly loader;
|
|
9213
|
+
private readonly editor;
|
|
9214
|
+
protected readonly core: _angular_core.WritableSignal<PptxCoreProperties | undefined>;
|
|
9215
|
+
protected readonly app: _angular_core.WritableSignal<PptxAppProperties | undefined>;
|
|
9216
|
+
protected readonly custom: _angular_core.WritableSignal<PptxCustomProperty[]>;
|
|
9217
|
+
private markDirty;
|
|
9218
|
+
protected onCoreChange(event: Event, key: 'title' | 'creator'): void;
|
|
9219
|
+
protected onAppChange(event: Event, key: 'company' | 'application'): void;
|
|
9220
|
+
protected onAddCustom(): void;
|
|
9221
|
+
protected onCustomChange(event: Event, index: number, key: 'name' | 'value'): void;
|
|
9222
|
+
protected onRemoveCustom(index: number): void;
|
|
9223
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocumentPropertiesCardComponent, never>;
|
|
9224
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DocumentPropertiesCardComponent, "pptx-document-properties-card", never, { "canEdit": { "alias": "canEdit"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
9225
|
+
}
|
|
9226
|
+
|
|
8899
9227
|
declare class GradientPickerComponent {
|
|
8900
9228
|
/** The element whose gradient fill is being edited. */
|
|
8901
9229
|
readonly element: _angular_core.InputSignal<PptxElement>;
|
|
@@ -10940,10 +11268,16 @@ declare class ViewerExtraDialogsComponent {
|
|
|
10940
11268
|
readonly customShows: _angular_core.InputSignal<PptxCustomShow[]>;
|
|
10941
11269
|
/** Live viewer preferences surfaced by the settings dialog. */
|
|
10942
11270
|
readonly settings: _angular_core.InputSignal<ViewerPreferences>;
|
|
11271
|
+
readonly themeKey: _angular_core.InputSignal<string>;
|
|
11272
|
+
readonly availableThemes: _angular_core.InputSignal<readonly ThemeCatalogEntry[]>;
|
|
11273
|
+
readonly localeCode: _angular_core.InputSignal<string>;
|
|
11274
|
+
readonly availableLocales: _angular_core.InputSignal<readonly LocaleCatalogEntry[]>;
|
|
10943
11275
|
/** Fired with a restored `.pptx` version's bytes; the host swaps the deck. */
|
|
10944
11276
|
readonly restoreContent: _angular_core.OutputEmitterRef<Uint8Array<ArrayBufferLike>>;
|
|
10945
11277
|
/** Fired whenever a settings toggle changes. */
|
|
10946
11278
|
readonly settingsChange: _angular_core.OutputEmitterRef<ViewerPreferences>;
|
|
11279
|
+
readonly themeKeySelect: _angular_core.OutputEmitterRef<string>;
|
|
11280
|
+
readonly localeSelect: _angular_core.OutputEmitterRef<string>;
|
|
10947
11281
|
protected readonly svc: ViewerDialogsService;
|
|
10948
11282
|
protected readonly compare: ViewerCompareService;
|
|
10949
11283
|
protected readonly editor: EditorStateService;
|
|
@@ -10978,7 +11312,7 @@ declare class ViewerExtraDialogsComponent {
|
|
|
10978
11312
|
/** Clear any save password. */
|
|
10979
11313
|
onRemovePassword(): void;
|
|
10980
11314
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ViewerExtraDialogsComponent, never>;
|
|
10981
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ViewerExtraDialogsComponent, "pptx-viewer-extra-dialogs", never, { "activeSlideIndex": { "alias": "activeSlideIndex"; "required": false; "isSignal": true; }; "selectedElementId": { "alias": "selectedElementId"; "required": false; "isSignal": true; }; "filePath": { "alias": "filePath"; "required": false; "isSignal": true; }; "customShows": { "alias": "customShows"; "required": false; "isSignal": true; }; "settings": { "alias": "settings"; "required": true; "isSignal": true; }; }, { "restoreContent": "restoreContent"; "settingsChange": "settingsChange"; }, never, never, true, never>;
|
|
11315
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ViewerExtraDialogsComponent, "pptx-viewer-extra-dialogs", never, { "activeSlideIndex": { "alias": "activeSlideIndex"; "required": false; "isSignal": true; }; "selectedElementId": { "alias": "selectedElementId"; "required": false; "isSignal": true; }; "filePath": { "alias": "filePath"; "required": false; "isSignal": true; }; "customShows": { "alias": "customShows"; "required": false; "isSignal": true; }; "settings": { "alias": "settings"; "required": true; "isSignal": true; }; "themeKey": { "alias": "themeKey"; "required": false; "isSignal": true; }; "availableThemes": { "alias": "availableThemes"; "required": false; "isSignal": true; }; "localeCode": { "alias": "localeCode"; "required": false; "isSignal": true; }; "availableLocales": { "alias": "availableLocales"; "required": false; "isSignal": true; }; }, { "restoreContent": "restoreContent"; "settingsChange": "settingsChange"; "themeKeySelect": "themeKeySelect"; "localeSelect": "localeSelect"; }, never, never, true, never>;
|
|
10982
11316
|
}
|
|
10983
11317
|
|
|
10984
11318
|
declare class EquationEditorDialogComponent {
|
|
@@ -11372,14 +11706,63 @@ declare class ShortcutPanelComponent {
|
|
|
11372
11706
|
declare class SettingsDialogComponent {
|
|
11373
11707
|
readonly open: _angular_core.InputSignal<boolean>;
|
|
11374
11708
|
readonly settings: _angular_core.InputSignal<ViewerPreferences>;
|
|
11709
|
+
/** Selected `THEME_CATALOG` (or `availableThemes`) key, for the Appearance tab. */
|
|
11710
|
+
readonly themeKey: _angular_core.InputSignal<string>;
|
|
11711
|
+
/** Theme choices offered by the Appearance tab. Defaults to the built-in `THEME_CATALOG`. */
|
|
11712
|
+
readonly availableThemes: _angular_core.InputSignal<readonly ThemeCatalogEntry[]>;
|
|
11713
|
+
/** Active locale code, for the Language tab. */
|
|
11714
|
+
readonly localeCode: _angular_core.InputSignal<string>;
|
|
11715
|
+
/** Locale choices offered by the Language tab. Defaults to the built-in `LOCALE_CATALOG`. */
|
|
11716
|
+
readonly availableLocales: _angular_core.InputSignal<readonly LocaleCatalogEntry[]>;
|
|
11375
11717
|
readonly settingsChange: _angular_core.OutputEmitterRef<ViewerPreferences>;
|
|
11718
|
+
/** Fired when the user picks an Appearance tab swatch. */
|
|
11719
|
+
readonly themeKeySelect: _angular_core.OutputEmitterRef<string>;
|
|
11720
|
+
/** Fired when the user picks a Language tab entry. */
|
|
11721
|
+
readonly localeSelect: _angular_core.OutputEmitterRef<string>;
|
|
11376
11722
|
readonly close: _angular_core.OutputEmitterRef<void>;
|
|
11377
|
-
protected readonly activeTab: _angular_core.WritableSignal<"general" | "shortcuts">;
|
|
11723
|
+
protected readonly activeTab: _angular_core.WritableSignal<"language" | "general" | "appearance" | "shortcuts">;
|
|
11378
11724
|
protected readonly specs: readonly ViewerPreferenceToggle[];
|
|
11379
11725
|
protected readonly shortcuts: readonly pptx_angular_viewer.ShortcutReferenceItem[];
|
|
11380
11726
|
protected toggle(key: keyof ViewerSettings): void;
|
|
11381
11727
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SettingsDialogComponent, never>;
|
|
11382
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SettingsDialogComponent, "pptx-settings-dialog", never, { "open": { "alias": "open"; "required": false; "isSignal": true; }; "settings": { "alias": "settings"; "required": true; "isSignal": true; }; }, { "settingsChange": "settingsChange"; "close": "close"; }, never, never, true, never>;
|
|
11728
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SettingsDialogComponent, "pptx-settings-dialog", never, { "open": { "alias": "open"; "required": false; "isSignal": true; }; "settings": { "alias": "settings"; "required": true; "isSignal": true; }; "themeKey": { "alias": "themeKey"; "required": false; "isSignal": true; }; "availableThemes": { "alias": "availableThemes"; "required": false; "isSignal": true; }; "localeCode": { "alias": "localeCode"; "required": false; "isSignal": true; }; "availableLocales": { "alias": "availableLocales"; "required": false; "isSignal": true; }; }, { "settingsChange": "settingsChange"; "themeKeySelect": "themeKeySelect"; "localeSelect": "localeSelect"; "close": "close"; }, never, never, true, never>;
|
|
11729
|
+
}
|
|
11730
|
+
|
|
11731
|
+
declare class SettingsAppearanceTabComponent {
|
|
11732
|
+
readonly themes: _angular_core.InputSignal<readonly ThemeCatalogEntry[]>;
|
|
11733
|
+
readonly activeKey: _angular_core.InputSignal<string>;
|
|
11734
|
+
readonly select: _angular_core.OutputEmitterRef<string>;
|
|
11735
|
+
protected swatchColor(entry: ThemeCatalogEntry): string;
|
|
11736
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SettingsAppearanceTabComponent, never>;
|
|
11737
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SettingsAppearanceTabComponent, "pptx-settings-appearance-tab", never, { "themes": { "alias": "themes"; "required": true; "isSignal": true; }; "activeKey": { "alias": "activeKey"; "required": false; "isSignal": true; }; }, { "select": "select"; }, never, never, true, never>;
|
|
11738
|
+
}
|
|
11739
|
+
|
|
11740
|
+
declare class SettingsLanguageTabComponent {
|
|
11741
|
+
readonly locales: _angular_core.InputSignal<readonly LocaleCatalogEntry[]>;
|
|
11742
|
+
readonly activeCode: _angular_core.InputSignal<string>;
|
|
11743
|
+
readonly select: _angular_core.OutputEmitterRef<string>;
|
|
11744
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SettingsLanguageTabComponent, never>;
|
|
11745
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SettingsLanguageTabComponent, "pptx-settings-language-tab", never, { "locales": { "alias": "locales"; "required": true; "isSignal": true; }; "activeCode": { "alias": "activeCode"; "required": false; "isSignal": true; }; }, { "select": "select"; }, never, never, true, never>;
|
|
11746
|
+
}
|
|
11747
|
+
|
|
11748
|
+
declare class AccountPageComponent {
|
|
11749
|
+
/** Optional host-provided sign-in hook point. Absent/disabled by default. */
|
|
11750
|
+
readonly accountAuth: _angular_core.InputSignal<AccountAuthConfig | undefined>;
|
|
11751
|
+
private readonly translate;
|
|
11752
|
+
protected readonly swatches: readonly string[];
|
|
11753
|
+
protected readonly version = "1.27.0";
|
|
11754
|
+
protected readonly profile: _angular_core.WritableSignal<ViewerProfile>;
|
|
11755
|
+
protected readonly initial: _angular_core.Signal<string>;
|
|
11756
|
+
protected readonly usage: _angular_core.WritableSignal<LocalStorageUsageSummary | null>;
|
|
11757
|
+
protected readonly cleared: _angular_core.WritableSignal<boolean>;
|
|
11758
|
+
protected readonly formattedSize: _angular_core.Signal<string>;
|
|
11759
|
+
constructor();
|
|
11760
|
+
private refreshUsage;
|
|
11761
|
+
protected updateName(name: string): void;
|
|
11762
|
+
protected selectColor(color: string): void;
|
|
11763
|
+
protected clearData(): Promise<void>;
|
|
11764
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AccountPageComponent, never>;
|
|
11765
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AccountPageComponent, "pptx-account-page", never, { "accountAuth": { "alias": "accountAuth"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
11383
11766
|
}
|
|
11384
11767
|
|
|
11385
11768
|
declare class KeepAnnotationsDialogComponent {
|
|
@@ -11993,30 +12376,6 @@ declare function themeStyle(theme: ViewerTheme | undefined): Record<string, stri
|
|
|
11993
12376
|
type ClassValue = string | number | false | null | undefined;
|
|
11994
12377
|
declare function cn(...values: ClassValue[]): string;
|
|
11995
12378
|
|
|
11996
|
-
/**
|
|
11997
|
-
* The canonical English UI-string dictionary for pptx-viewer. None of the
|
|
11998
|
-
* React/Vue/Angular binding packages ship translations themselves - each
|
|
11999
|
-
* only calls its framework's translation function (react-i18next's `t()`,
|
|
12000
|
-
* vue-i18n's `t()`, ngx-translate's `TranslateService`/`translate` pipe)
|
|
12001
|
-
* against dotted `pptx.*` keys. The host app supplies the dictionary; this
|
|
12002
|
-
* module is that dictionary for the demos, shared so all three stay in sync
|
|
12003
|
-
* instead of drifting into three separate copies.
|
|
12004
|
-
*/
|
|
12005
|
-
declare const translationsEn: Record<string, string>;
|
|
12006
|
-
/**
|
|
12007
|
-
* Every key in the English dictionary. A new locale dictionary typed as
|
|
12008
|
-
* `Record<TranslationKey, string>` gets a compile error for any key it's
|
|
12009
|
-
* missing or misspells, so translation contributions stay complete without a
|
|
12010
|
-
* separate parity test.
|
|
12011
|
-
*/
|
|
12012
|
-
type TranslationKey = keyof typeof translationsEn;
|
|
12013
|
-
/**
|
|
12014
|
-
* Convert a dotted translation key to a human-readable label when no
|
|
12015
|
-
* explicit dictionary entry exists yet. Takes the last segment and converts
|
|
12016
|
-
* camelCase to Title Case, e.g. "pptx.slideSorter.zoomIn" -> "Zoom In".
|
|
12017
|
-
*/
|
|
12018
|
-
declare function keyToLabel(key: string): string;
|
|
12019
|
-
|
|
12020
12379
|
/** Live host accessors the fit computation needs. */
|
|
12021
12380
|
interface CanvasFitHost {
|
|
12022
12381
|
readonly autoFit: () => boolean;
|
|
@@ -12951,6 +13310,8 @@ declare class RibbonComponent {
|
|
|
12951
13310
|
readonly showSubtitles: _angular_core.InputSignal<boolean>;
|
|
12952
13311
|
/** Toolbar buttons/tabs the host wants hidden. Default `[]` hides nothing. */
|
|
12953
13312
|
readonly hiddenActions: _angular_core.InputSignal<ToolbarActionId[]>;
|
|
13313
|
+
/** Optional sign-in hook point for File > Account. Absent/disabled by default. */
|
|
13314
|
+
readonly accountAuth: _angular_core.InputSignal<AccountAuthConfig | undefined>;
|
|
12954
13315
|
readonly prev: _angular_core.OutputEmitterRef<void>;
|
|
12955
13316
|
readonly next: _angular_core.OutputEmitterRef<void>;
|
|
12956
13317
|
readonly zoomIn: _angular_core.OutputEmitterRef<void>;
|
|
@@ -13052,7 +13413,7 @@ declare class RibbonComponent {
|
|
|
13052
13413
|
/** Forward the Review proofing toggle to the viewer-owned live state. */
|
|
13053
13414
|
protected setSpellCheck(enabled: boolean): void;
|
|
13054
13415
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RibbonComponent, never>;
|
|
13055
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RibbonComponent, "pptx-ribbon", never, { "slideIndex": { "alias": "slideIndex"; "required": false; "isSignal": true; }; "slideCount": { "alias": "slideCount"; "required": false; "isSignal": true; }; "canEdit": { "alias": "canEdit"; "required": false; "isSignal": true; }; "selectedElement": { "alias": "selectedElement"; "required": false; "isSignal": true; }; "zoomPercent": { "alias": "zoomPercent"; "required": false; "isSignal": true; }; "formatPainterActive": { "alias": "formatPainterActive"; "required": false; "isSignal": true; }; "canActivateFormatPainter": { "alias": "canActivateFormatPainter"; "required": false; "isSignal": true; }; "exporting": { "alias": "exporting"; "required": false; "isSignal": true; }; "hasMacros": { "alias": "hasMacros"; "required": false; "isSignal": true; }; "showGrid": { "alias": "showGrid"; "required": false; "isSignal": true; }; "showRulers": { "alias": "showRulers"; "required": false; "isSignal": true; }; "showGuides": { "alias": "showGuides"; "required": false; "isSignal": true; }; "snapToGrid": { "alias": "snapToGrid"; "required": false; "isSignal": true; }; "snapToShape": { "alias": "snapToShape"; "required": false; "isSignal": true; }; "eyedropperActive": { "alias": "eyedropperActive"; "required": false; "isSignal": true; }; "themeGalleryOpen": { "alias": "themeGalleryOpen"; "required": false; "isSignal": true; }; "sidebarCollapsed": { "alias": "sidebarCollapsed"; "required": false; "isSignal": true; }; "inspectorOpen": { "alias": "inspectorOpen"; "required": false; "isSignal": true; }; "commentsOpen": { "alias": "commentsOpen"; "required": false; "isSignal": true; }; "commentCount": { "alias": "commentCount"; "required": false; "isSignal": true; }; "findOpen": { "alias": "findOpen"; "required": false; "isSignal": true; }; "collabConnected": { "alias": "collabConnected"; "required": false; "isSignal": true; }; "connectedCount": { "alias": "connectedCount"; "required": false; "isSignal": true; }; "spellCheckEnabled": { "alias": "spellCheckEnabled"; "required": false; "isSignal": true; }; "showSubtitles": { "alias": "showSubtitles"; "required": false; "isSignal": true; }; "hiddenActions": { "alias": "hiddenActions"; "required": false; "isSignal": true; }; }, { "prev": "prev"; "next": "next"; "zoomIn": "zoomIn"; "zoomOut": "zoomOut"; "zoomReset": "zoomReset"; "find": "find"; "present": "present"; "presenter": "presenter"; "record": "record"; "presentFromBeginning": "presentFromBeginning"; "rehearseTimings": "rehearseTimings"; "toggleSubtitles": "toggleSubtitles"; "openSubtitleSettings": "openSubtitleSettings"; "recordFromBeginning": "recordFromBeginning"; "recordFromCurrent": "recordFromCurrent"; "spellCheckChange": "spellCheckChange"; "share": "share"; "broadcast": "broadcast"; "openFile": "openFile"; "openRecentFile": "openRecentFile"; "createPresentation": "createPresentation"; "save": "save"; "savePpsx": "savePpsx"; "savePptm": "savePptm"; "packageForSharing": "packageForSharing"; "toggleSidebar": "toggleSidebar"; "signatures": "signatures"; "info": "info"; "print": "print"; "comments": "comments"; "a11y": "a11y"; "link": "link"; "openSorter": "openSorter"; "openMasterView": "openMasterView"; "toggleNotes": "toggleNotes"; "toggleFormatPainter": "toggleFormatPainter"; "exportPng": "exportPng"; "exportPdf": "exportPdf"; "exportGif": "exportGif"; "exportVideo": "exportVideo"; "copySlideAsImage": "copySlideAsImage"; "replace": "replace"; "toggleInspector": "toggleInspector"; "drawToolChange": "drawToolChange"; "toggleThemeGallery": "toggleThemeGallery"; "toggleGrid": "toggleGrid"; "toggleRulers": "toggleRulers"; "toggleGuides": "toggleGuides"; "toggleSelectionPane": "toggleSelectionPane"; "openCustomShows": "openCustomShows"; "toggleSnapToGrid": "toggleSnapToGrid"; "toggleSnapToShape": "toggleSnapToShape"; "addGuide": "addGuide"; "zoomToFit": "zoomToFit"; "toggleEyedropper": "toggleEyedropper"; "openSmartArtDialog": "openSmartArtDialog"; "openEquationDialog": "openEquationDialog"; "openSetUpSlideShow": "openSetUpSlideShow"; "openCompare": "openCompare"; "openPassword": "openPassword"; "openFontEmbedding": "openFontEmbedding"; "openVersionHistory": "openVersionHistory"; "openShortcuts": "openShortcuts"; "openSettings": "openSettings"; "shapeInsert": "shapeInsert"; "moveLayer": "moveLayer"; "moveLayerToEdge": "moveLayerToEdge"; }, never, never, true, never>;
|
|
13416
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RibbonComponent, "pptx-ribbon", never, { "slideIndex": { "alias": "slideIndex"; "required": false; "isSignal": true; }; "slideCount": { "alias": "slideCount"; "required": false; "isSignal": true; }; "canEdit": { "alias": "canEdit"; "required": false; "isSignal": true; }; "selectedElement": { "alias": "selectedElement"; "required": false; "isSignal": true; }; "zoomPercent": { "alias": "zoomPercent"; "required": false; "isSignal": true; }; "formatPainterActive": { "alias": "formatPainterActive"; "required": false; "isSignal": true; }; "canActivateFormatPainter": { "alias": "canActivateFormatPainter"; "required": false; "isSignal": true; }; "exporting": { "alias": "exporting"; "required": false; "isSignal": true; }; "hasMacros": { "alias": "hasMacros"; "required": false; "isSignal": true; }; "showGrid": { "alias": "showGrid"; "required": false; "isSignal": true; }; "showRulers": { "alias": "showRulers"; "required": false; "isSignal": true; }; "showGuides": { "alias": "showGuides"; "required": false; "isSignal": true; }; "snapToGrid": { "alias": "snapToGrid"; "required": false; "isSignal": true; }; "snapToShape": { "alias": "snapToShape"; "required": false; "isSignal": true; }; "eyedropperActive": { "alias": "eyedropperActive"; "required": false; "isSignal": true; }; "themeGalleryOpen": { "alias": "themeGalleryOpen"; "required": false; "isSignal": true; }; "sidebarCollapsed": { "alias": "sidebarCollapsed"; "required": false; "isSignal": true; }; "inspectorOpen": { "alias": "inspectorOpen"; "required": false; "isSignal": true; }; "commentsOpen": { "alias": "commentsOpen"; "required": false; "isSignal": true; }; "commentCount": { "alias": "commentCount"; "required": false; "isSignal": true; }; "findOpen": { "alias": "findOpen"; "required": false; "isSignal": true; }; "collabConnected": { "alias": "collabConnected"; "required": false; "isSignal": true; }; "connectedCount": { "alias": "connectedCount"; "required": false; "isSignal": true; }; "spellCheckEnabled": { "alias": "spellCheckEnabled"; "required": false; "isSignal": true; }; "showSubtitles": { "alias": "showSubtitles"; "required": false; "isSignal": true; }; "hiddenActions": { "alias": "hiddenActions"; "required": false; "isSignal": true; }; "accountAuth": { "alias": "accountAuth"; "required": false; "isSignal": true; }; }, { "prev": "prev"; "next": "next"; "zoomIn": "zoomIn"; "zoomOut": "zoomOut"; "zoomReset": "zoomReset"; "find": "find"; "present": "present"; "presenter": "presenter"; "record": "record"; "presentFromBeginning": "presentFromBeginning"; "rehearseTimings": "rehearseTimings"; "toggleSubtitles": "toggleSubtitles"; "openSubtitleSettings": "openSubtitleSettings"; "recordFromBeginning": "recordFromBeginning"; "recordFromCurrent": "recordFromCurrent"; "spellCheckChange": "spellCheckChange"; "share": "share"; "broadcast": "broadcast"; "openFile": "openFile"; "openRecentFile": "openRecentFile"; "createPresentation": "createPresentation"; "save": "save"; "savePpsx": "savePpsx"; "savePptm": "savePptm"; "packageForSharing": "packageForSharing"; "toggleSidebar": "toggleSidebar"; "signatures": "signatures"; "info": "info"; "print": "print"; "comments": "comments"; "a11y": "a11y"; "link": "link"; "openSorter": "openSorter"; "openMasterView": "openMasterView"; "toggleNotes": "toggleNotes"; "toggleFormatPainter": "toggleFormatPainter"; "exportPng": "exportPng"; "exportPdf": "exportPdf"; "exportGif": "exportGif"; "exportVideo": "exportVideo"; "copySlideAsImage": "copySlideAsImage"; "replace": "replace"; "toggleInspector": "toggleInspector"; "drawToolChange": "drawToolChange"; "toggleThemeGallery": "toggleThemeGallery"; "toggleGrid": "toggleGrid"; "toggleRulers": "toggleRulers"; "toggleGuides": "toggleGuides"; "toggleSelectionPane": "toggleSelectionPane"; "openCustomShows": "openCustomShows"; "toggleSnapToGrid": "toggleSnapToGrid"; "toggleSnapToShape": "toggleSnapToShape"; "addGuide": "addGuide"; "zoomToFit": "zoomToFit"; "toggleEyedropper": "toggleEyedropper"; "openSmartArtDialog": "openSmartArtDialog"; "openEquationDialog": "openEquationDialog"; "openSetUpSlideShow": "openSetUpSlideShow"; "openCompare": "openCompare"; "openPassword": "openPassword"; "openFontEmbedding": "openFontEmbedding"; "openVersionHistory": "openVersionHistory"; "openShortcuts": "openShortcuts"; "openSettings": "openSettings"; "shapeInsert": "shapeInsert"; "moveLayer": "moveLayer"; "moveLayerToEdge": "moveLayerToEdge"; }, never, never, true, never>;
|
|
13056
13417
|
}
|
|
13057
13418
|
|
|
13058
13419
|
declare class RibbonAnimationsSectionComponent {
|
|
@@ -13166,6 +13527,8 @@ declare class RibbonFileSectionComponent {
|
|
|
13166
13527
|
readonly hasMacros: _angular_core.InputSignal<boolean>;
|
|
13167
13528
|
/** Toolbar buttons the host wants hidden (drops the Export nav entry/page). */
|
|
13168
13529
|
readonly hiddenActions: _angular_core.InputSignal<ToolbarActionId[]>;
|
|
13530
|
+
/** Optional sign-in hook point for the Account page. Absent/disabled by default. */
|
|
13531
|
+
readonly accountAuth: _angular_core.InputSignal<AccountAuthConfig | undefined>;
|
|
13169
13532
|
readonly close: _angular_core.OutputEmitterRef<void>;
|
|
13170
13533
|
readonly createPresentation: _angular_core.OutputEmitterRef<string>;
|
|
13171
13534
|
readonly openFile: _angular_core.OutputEmitterRef<void>;
|
|
@@ -13217,7 +13580,7 @@ declare class RibbonFileSectionComponent {
|
|
|
13217
13580
|
private action;
|
|
13218
13581
|
private pageActions;
|
|
13219
13582
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RibbonFileSectionComponent, never>;
|
|
13220
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RibbonFileSectionComponent, "pptx-ribbon-file-section", never, { "fileName": { "alias": "fileName"; "required": false; "isSignal": true; }; "slideCount": { "alias": "slideCount"; "required": false; "isSignal": true; }; "exporting": { "alias": "exporting"; "required": false; "isSignal": true; }; "hasMacros": { "alias": "hasMacros"; "required": false; "isSignal": true; }; "hiddenActions": { "alias": "hiddenActions"; "required": false; "isSignal": true; }; }, { "close": "close"; "createPresentation": "createPresentation"; "openFile": "openFile"; "openRecentFile": "openRecentFile"; "save": "save"; "savePpsx": "savePpsx"; "savePptm": "savePptm"; "packageForSharing": "packageForSharing"; "exportPng": "exportPng"; "exportPdf": "exportPdf"; "exportGif": "exportGif"; "exportVideo": "exportVideo"; "copySlideAsImage": "copySlideAsImage"; "print": "print"; "info": "info"; "signatures": "signatures"; "replace": "replace"; "openPassword": "openPassword"; "openFontEmbedding": "openFontEmbedding"; "openVersionHistory": "openVersionHistory"; "share": "share"; "options": "options"; }, never, never, true, never>;
|
|
13583
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<RibbonFileSectionComponent, "pptx-ribbon-file-section", never, { "fileName": { "alias": "fileName"; "required": false; "isSignal": true; }; "slideCount": { "alias": "slideCount"; "required": false; "isSignal": true; }; "exporting": { "alias": "exporting"; "required": false; "isSignal": true; }; "hasMacros": { "alias": "hasMacros"; "required": false; "isSignal": true; }; "hiddenActions": { "alias": "hiddenActions"; "required": false; "isSignal": true; }; "accountAuth": { "alias": "accountAuth"; "required": false; "isSignal": true; }; }, { "close": "close"; "createPresentation": "createPresentation"; "openFile": "openFile"; "openRecentFile": "openRecentFile"; "save": "save"; "savePpsx": "savePpsx"; "savePptm": "savePptm"; "packageForSharing": "packageForSharing"; "exportPng": "exportPng"; "exportPdf": "exportPdf"; "exportGif": "exportGif"; "exportVideo": "exportVideo"; "copySlideAsImage": "copySlideAsImage"; "print": "print"; "info": "info"; "signatures": "signatures"; "replace": "replace"; "openPassword": "openPassword"; "openFontEmbedding": "openFontEmbedding"; "openVersionHistory": "openVersionHistory"; "share": "share"; "options": "options"; }, never, never, true, never>;
|
|
13221
13584
|
}
|
|
13222
13585
|
|
|
13223
13586
|
declare class RibbonFontControlsComponent {
|
|
@@ -14363,5 +14726,5 @@ declare const SEQUENCE_OPTIONS: ReadonlyArray<{
|
|
|
14363
14726
|
labelKey: string;
|
|
14364
14727
|
}>;
|
|
14365
14728
|
|
|
14366
|
-
export { ALIGN_OPTIONS, AUDIENCE_HASH, AUDIENCE_NONCE_KEY, AccessibilityPanelComponent, AccessibilityService, ActionSettingsPanelComponent, AdvancedChartEditorComponent, AnimationAuthorPanelComponent, AnimationPanelComponent, AnimationPlaybackService, AutosaveService, BroadcastDialogComponent, CHART_EDITOR_STYLES, CURSOR_PALETTE, CanvasFitService, ChartAxisOptionsComponent, ChartAxisStyleOptionsComponent, ChartComboTypeOptionsComponent, ChartDataEditorComponent, ChartDataLabelOptionsComponent, ChartDatapointOptionsComponent, ChartDisplayOptionsComponent, ChartElementViewComponent, ChartErrorBarOptionsComponent, ChartMarkerOptionsComponent, ChartPartSelectionService, ChartPrimitivesComponent, ChartRendererComponent, ChartTrendlineOptionsComponent, CollaborationCursorsComponent, CollaborationService, ColorChangedImageComponent, CommentsPanelComponent, CommentsService, ComparePanelComponent, ConnectorRendererComponent, ConnectorTextOverlayComponent, CustomShowsComponent, DATA_TABLE_HEADER_H, DATA_TABLE_KEY_W, DATA_TABLE_PADDING, DATA_TABLE_ROW_H, DEFAULT_BOUNDS, DEFAULT_BROADCAST_SERVER_URL, DEFAULT_CANVAS_HEIGHT, DEFAULT_CANVAS_WIDTH, DEFAULT_COLOR_SCHEME, DEFAULT_FILL_COLOR, DEFAULT_LAYOUT, DEFAULT_PALETTE$1 as DEFAULT_PALETTE, DEFAULT_PRINT_SETTINGS, DEFAULT_SLIDE_BACKGROUND, DEFAULT_STROKE_COLOR, DEFAULT_STYLE, DEFAULT_TABLE_ROW_HEIGHT, DEFAULT_TEXT_COLOR, DIRECTIONAL_PRESETS, DIRECTION_OPTIONS, EMBEDDED_FONTS_STYLE_ID, EMPHASIS_PRESETS, ENTRANCE_PRESETS, TEMPLATES as EQUATION_TEMPLATES, EXIT_PRESETS, EditorContextMenuComponent, EditorHistory, EditorStateService, EditorToolbarComponent, EffectsPanelComponent, ElementRendererComponent, EmbeddedFontsService, EncryptedFileDialogComponent, EquationEditorDialogComponent, EquationRendererComponent, EquationTemplateGalleryComponent, ExportProgressModalComponent, ExportService, FieldContextService, FindBarComponent, FindReplaceBarComponent, FollowModeBarComponent, FontEmbeddingListComponent, FontEmbeddingPanelComponent, GALLERY_THEME_PRESETS, GradientPickerComponent, HANDOUT_OPTIONS, HeaderFooterDialogComponent, HyperlinkDialogComponent, ImagePropertiesPanelComponent, InkDrawingService, InkRendererComponent, InsertSmartArtDialogComponent, InspectorPanelComponent, IsMobileService, KeepAnnotationsDialogComponent, LONG_PRESS_DURATION_MS, LONG_PRESS_MOVE_TOLERANCE_PX, LoadContentService, LocalPresencePublisher, MAX_ZOOM_SCALE, MIN_ZOOM_SCALE, MediaPreviewComponent, MediaPropertiesPanelComponent, MediaRendererComponent, MediaTrimTimelineComponent, MobileBottomBarComponent, MobileMenuSheetComponent, MobilePresenterViewComponent, MobileSheetComponent, MobileSlidesSheetComponent, MobileToolbarComponent, ModalDialogComponent, Model3DRendererComponent, NotesPanelComponent, NotesToolbarComponent, OleRendererComponent, PRESENTER_CHANNEL_NAME, PRESENTER_MSG_ORIGIN, PasswordProtectionDialogComponent, PasswordStrengthMeterComponent, PowerPointViewerComponent, PresentationAnnotationOverlayComponent, PresentationAnnotationsService, PresentationOverlayComponent, PresentationSubtitleBarComponent, PresentationTransitionOverlayComponent, PresenterViewComponent, PresenterWindowService, PrintDialogComponent, PrintService, PrintSettingsPanelComponent, PropertiesDialogComponent, REPEAT_MODE_OPTIONS, RESIZE_HANDLES, RULER_THICKNESS, RemoteSelectionOverlayComponent, RibbonAnimationsSectionComponent, RibbonArrangeSectionComponent, RibbonColorPopoverComponent, RibbonComponent, RibbonDesignSectionComponent, RibbonDrawSectionComponent, RibbonDrawingGroupComponent, RibbonEditingSectionComponent, RibbonFileSectionComponent, RibbonFontControlsComponent, RibbonHomeSectionComponent, RibbonInsertFieldsComponent, RibbonInsertSectionComponent, RibbonParagraphControlsComponent, RibbonPrimaryRowComponent, RibbonReviewSectionComponent, RibbonSlideshowSectionComponent, RibbonTransitionsSectionComponent, RibbonViewSectionComponent, RulerGuidesService, SEQUENCE_OPTIONS, SEVERITY_GROUPS, SEVERITY_LABELS, SHORTCUT_REFERENCE_ITEMS, SLIDE_PX_PER_INCH, 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, SettingsDialogComponent, ShareDialogComponent, ShortcutPanelComponent, ShowOptionsFieldsetComponent, ShowSlidesFieldsetComponent, SignatureStrippedDialogComponent, SignaturesPanelComponent, SignaturesService, SlideCanvasComponent, SlideDiffChangesComponent, SlideDiffRowComponent, SlideDiffThumbnailsComponent, SlideSorterOverlayComponent, SlideThemeOverridePanelComponent, SlidesPanelComponent, SmartArt3DRendererComponent, SmartArt3DService, SmartArtPreviewComponent, SmartArtPropertiesComponent, SmartArtRendererComponent, StatusBarComponent, TABLE_STRUCTURE_TOGGLES, TEXT_DIRECTION_OPTIONS, TIMING_CURVE_OPTIONS, TRIGGER_OPTIONS, TYPE_LABELS, TableCellAdvancedFillComponent, TableCellFormattingComponent, TableDataEditorComponent, TablePropertiesComponent, TableRendererComponent, TableResizeOverlayComponent, TableSelectionService, TextAdvancedPanelComponent, ThemeEditorFieldsComponent, ThemeGalleryComponent, TitleBarComponent, VALIGN_OPTIONS, VIEWER_THEME, VersionHistoryPanelComponent, ViewerCanvasEditingService, ViewerCollabCursorService, ViewerCollaborationSessionService, ViewerCompareService, ViewerCustomShowsService, ViewerDialogsService, ViewerDocumentPropertiesService, ViewerExportService, ViewerExtraDialogsComponent, ViewerFileIOService, ViewerFindReplaceService, ViewerFormatPainterService, ViewerInspectorPanelService, ViewerKeyboardService, ViewerMobileSheetService, ViewerPresentationModeService, ViewerThemeGalleryService, ViewerTouchGesturesService, ViewerZoomService, WEBM_MIME_CANDIDATES, WriteBackScheduler, ZoomNavigationService, ZoomRendererComponent, ZoomTargetService, addCategory, addCommentToList, addGradientStopPatch, addItem, addSeries, addSubItem, advanceStep, alignPatch, animationFor, annotationMapToInkInserts, applyAcceptedDiff, applyAnimationPreset, applyFindReplacements, applyFormatToElement, applyMove, applyResize, applyTableStylePreset, asMediaElement, assignUserColor, attachTouchGestures, beginNodeEdit, boolFromEvent, bringForward, bringToFront, buildBarActions, buildBroadcastConfig, buildBroadcastViewerUrl, buildCategoryLabels, buildCellParagraphs, buildChartViewModel, buildChromeStyle, buildClearHyperlinkPatch, buildClickGroups, buildColStyles, buildCollaborationConfig, buildComboViewModel, buildCssGradientFromShapeStyle, buildDuotoneFilter, buildDuotoneFilterId, buildEmbeddedFontStyles, buildEquationElement, buildEquationSegment, buildFallbackViewModel, buildFontFaceRule, buildGradientFillCss, buildGridlinesAndLabels, buildHyperlinkPatch, buildInkContainerStyle, buildInkStrokes, buildLegend, buildModel3DContainerStyle, buildModel3DViewModel, buildOleActionModel, buildOleInfoRows, buildPatternFillCss, buildPrintHtmlDocument as buildPrintDocument, buildPropertiesPatch, buildRegionMapViewModel, buildSaveSlides, buildShareUrl, buildSmartArtInsertElement, buildSmartArtNodes, buildStockViewModel, buildSurfaceViewModel, buildTableViewModel, buildTreemapViewModel, buildTrimFragment, buildWaterfallViewModel, buildZeroLine, buildZoomContainerStyle, buildZoomViewModel, bulletIndentPx, canAddTopLevelNode, canRemoveTopLevelNode, canStartBroadcast, canStartShare, canUseClipboard, captionDisplayText, cellRunStyle, cellStyleToStyleMap, cellTdStyle, changeCountLabel, changeIcon, characterSpacingPatch, checkFontAvailable, clampCursorPosition, clampGifDimensions, clampIndex, clampNotesFontSize, clampScale, clampStep, clearAudienceContent, cn, collectAccessibilityIssues, collectElementText, collectSlideText, collectUsedFontFamilies, columnWidthStyle, commitNodeText, computeAlign, computeAxisTitlePrimitives, computeBarRects, computeBubbleRadius, computeCornerHandle, computeDataTablePrimitives, computeDistribute, computeDrawingViewBox, computeErrorBarPrimitives, computeHandleBoxes, computeHandoutLayout, computeIsMobile, computeIsTablet, computeLinePoints, computeLinearRegression, computePageCount, computePieLayout, computePieSlicePath, computePieSlices, computePlotLayout, computeRSquared, computeRadarPoints, computeScatterDots, computeSelectionBoxes, computeSingleSelected, computeSlideIndices, computeSnap, computeStackedBarRects, computeStackedValueRange, computeTextLines, computeTimerProgress, computeTrendlinePrimitives, computeValueRange, convertOmmlToMathMl, copyFormatFromElement, countAccessibilityIssues, countAnnotationStrokes, createCustomShow, createSwipeDismissDrag, createWebrtcBundle, createWebsocketBundle, cssObjectToStyleMap, currentColorScheme, currentLayout, currentStyle, defaultCssVars, defaultRadius, defaultThemeColors, deleteElementsByIds, deleteVersion as deleteRecoveryVersion, demoteNode, deriveModel3DBlobUrl, derivePresenceList, describeSmartArtBounds, disableGlowPatch, disableInnerShadowPatch, disableOuterShadowPatch, disableReflectionPatch, disableSoftEdgePatch, duplicateElementById, durationOf, effectsStateOf, enableGlowPatch, enableInnerShadowPatch, enableOuterShadowPatch, enableReflectionPatch, enableSoftEdgePatch, encodeGif, estimatePageCount, evenColumnWidths, evenRowHeights, exitPresentationFullscreen, extractPathPoints, eyedropperAvailable, fillColorOf, findInSlides, findOwningSlideIndex, findSlideIndexByElementId, fitPolynomial, fitZoom, fontMimeForFormat, fontSizeOf, formatAutoNumber, formatAxisValue, formatBytes, formatCursorLabel, formatElapsed, formatFileSize, formatPropertyDate, formatTime, fpsToFrameIntervalMs, generateBroadcastRoomId, generateCommentId, generateCustomShowId, generatePressureCircles, generateRulerTicks, getClrChangeParams, getContainerStyle, getDuotoneFilterDef, getImageSrc, getOleAriaLabel, getOleBadgeLabel, getOleDisplayName, getOleDownloadFileName, getOleTypeColor, getOleTypeLabel, getPasswordStrength, getPatternSvg, getPlaceholderStyle, getVersions as getRecoveryVersions, getResolvedShapeClipPath, getResolvedShapeClipPathFor, getShapeFillStrokeStyle, getSlideBackgroundStyle, getSlideTransitionAnimations, getSmartArtNodeBounds, getSpeechRecognitionCtor, getTextBlockStyle, getTextWarp, getTouchDistance, getWarpCategory, getWarpPath, gradientStateFromStyle, gradientStateOf, gradientStatePatch, gridColumns, groupElements, groupIssuesBySeverity, hasAnimation, hasCopyableFormat, hasExistingLink, hasExitedFullscreen, hasGradientFill, hasPressureVariation, headerLabel, inkViewBox, insertColumn, insertRow, interpolateWidth, isAudienceTab, isBold, isBrowserOpenableMime, isChildNode, isElementInteractive, isInjectableUrl, isItalic, isPpactionUrl, isPresenterMessage, isSigned, isTextElement, isUnderline, isUrlSafe, isValidRoomId, isViewportBackgroundPressTarget, isZoomActivationKey, issueTrackKey, issueTypeLabel, keyToLabel, latexToMathml, linePointsToSvgString, lineSpacingPatch, loadAudienceContent, mergeCaptionResults, mergeDown, mergeRight, mergeSelection, moveElementBy, moveNodeDown, moveNodeUp, msToFrameDelayCs, narrowToCircle, narrowToPolygon, narrowToRect, newChartElement, newEquationElement, newShapeElement, newSmartArtElement, newTableElement, newTextElement, nextVisibleIndex, nodeBold, nodeEditBox, nodeFillColor, nodeFontColor, nodeIdFromKey, nodeItalic, nodeStyle, normalizeFontFormat, normalizeSlidesPerPage, normalizeValue, numFromEvent, ommlToMathml, ooxmlDashToCssBorderStyle, openNativeEyeDropper, overallStatus, paletteColor, parseAudienceNonce, parseNodeTextarea, partitionSlides, patchChartData, patchChartStyle, patchTableData, patchTextStyle, pendingElementStyles, pickColorByClickFallback, pickSupportedMimeType, planGifFrames, planVideoSegments, pointsToSvgPathD, presenceToCursors, presetByLayout, presetsForCategory, pressuresToWidths, prevVisibleIndex, projectDrawingShapes, promoteNode, provideViewerTheme, radarAngle, radarRingPoints, recordWebm, redistributeColumnWidth, removeAnimation, removeCategory, removeColumn, removeCommentFromList, removeElementAnimation, removeGradientStopPatch, removeNode, removeRow, removeSeries, renderToCanvas, reorderAnimationDown, reorderAnimationUp, replaceInSlides, replaceMatch, requestPresentationFullscreen, resizeElement, resolveCaptionTracks, resolveChartKind, resolveFontVariant, resolveHyperlinkHref, resolveInteractiveElementId, resolveMediaSrc, resolveOleType, resolveParagraphBullet, resolvePresenterNotes, resolveRegionCode, resolvePalette as resolveSmartArtPalette, resolveTransitionDuration, revealedElementStyles, routeOrthogonalConnector, rowStyle, sampleColorFromSlide, sanitizeColor, sanitizeSlideIndex, sanitizeUserName, scanAvailableFonts, searchSlides, seedBroadcastFields, seedHyperlinkDraft, seedPropertiesDraft, seedShareFields, segmentFrameCount, selectValue, sendBackward, sendToBack, sequentialColorScale, serializeWriteBack, seriesColor, setAnimationEmphasis, setAnimationEntrance, setAnimationExit, setAxis, setAxisLogScale, setAxisTitleStyle, setCategoryLabel, setCellText, setColorScheme, setDataLabels, setDataPointExplosion, setDataPointFill, setDataPointLabel, setDelay, setDirection, setDuration, setElementPosition, setGridlineStyle, setLayout, setLegend, setNodeStyle, setNodeText, setRepeatCount, setRepeatMode, setSequence, setSeriesChartType, setSeriesColor, setSeriesErrorBars, setSeriesMarker, setSeriesName, setSeriesTrendline, setSeriesValue, setStyle, setTimingCurve, setTitle, setTrigger, setTriggerShapeId, shapeStylePatch, sheetAfterNavigate, shouldUseSvgWarp, showDirectionPicker, showsTemplateAffordance, signatureCountLabel, signatureKey, signatureTimestamp, signerName, statusLabel as slideDiffStatusLabel, slideNumberOf, smartArtNodes, paletteColour as smartArtPaletteColour, snapToGridStep, splitCursorCell, splitMergedCell, statusKind, statusLabel$1 as statusLabel, storeAudienceContent, stringFromEvent, strokeColorOf, strokeToInkElement, styleShadowFilter, textAdvancedPatch, textAdvancedStateFromStyle, textAdvancedStateOf, textColorOf, textDirectionPatch, textStyleOf, textStylePatch, themeStyle, themeToCssVars, thumbnailHeight, thumbnailZoom, toggleCommentResolvedInList, toggleNodeBold, toggleNodeItalic, toggleSheet, topLevelNodeCount, transformSelectedTextCase, translationsEn, ungroupElements, updateElementById, updateGlowPatch, updateGradientStopPatch, updateInnerShadowPatch, updateOuterShadowPatch, updateReflectionPatch, vAlignPatch, validatePassword, validatePrintSettings, validateRoomId, valueToY, vermilionDarkColors, vermilionDarkTheme, vermilionLightColors, vermilionLightTheme, vermilionRadius, waypointsToPathD, worstStatus, zoomTargetSlideIndex };
|
|
14367
|
-
export type { AccessibilityIssueGroup, ActionDescriptor, AlignBox, AlignMode, AnimationClickGroup, AnimationGroup, AnnotationInkInsert, AnnotationStroke, AttachTouchGesturesConfig, AwarenessLike, BarRect, Box, BroadcastConfig, BroadcastDefaults, CSSProperties, CanvasSize, CellCoord, CellParagraph, CellTextRun, ChartPartRef, ChartPartSelection, ChartValueDrag, ChartViewModel, ClassValue, ClrChangeParams, CollaborationConfig, CollaborationRole, RouterRect as ConnectorObstacle, RouterPoint as ConnectorPoint, ConnectorRouting, CopiedFormat, CornerHandleBox, CustomShow, CustomThemeEdit, DestroyableYDoc, DiagonalBorderInfo, DistributeMode, DocumentProperties, DrawingViewBox, DuotoneFilterDef, EffectsState, EmbeddedFontStyles, EquationTemplate, EyedropperResult, FindOptions, FindResult, GifFrame, GifFramePlan, GifPlanOptions, GlowState, GradientState, GradientStop$1 as GradientStop, GroupResult, HandleBox, HandoutSlidesPerPage, HyperlinkDraft, InkPoint, InkStroke, InlineEditState, InnerShadowState, LegendEntry, LinePoint, LinearFit, LocalIdentity, MobileSheetKey, Model3DViewModel, NodeEditBox, NotesSegmentViewModel, ObjectUrlFactory, OleActionModel, OleInfoRow, OuterShadowState, OverallSignatureStatus, PartitionedSlides, PathPoint, PieSliceGeometry, PlotLayout, PlotLayoutOptions, PositionUpdate, PowerPointViewerAPI, PresentationTool, PresenterExitMessage, PresenterMessage, PresenterNotes, PresenterSlideChangeMessage, PressureCircle, PrintColorMode, PrintHtmlDocumentOptions as PrintDocumentOptions, PrintOrientation, PrintSettings, PrintSlideRange, PrintWhat, PropertiesDraft, ProviderBundle, ProviderLike, RadarPoint, RecordWebmOptions, RecoveryVersion, ReflectionState, RemoteCursor, SanitizedPresence as RemotePresence, RenderedShape, ReplaceResult, ResizeHandle, ResolvedCaptionTrack, ResolvedFontVariant, ResolvedOleType, RulerTick, ScatterDot, SelectionBox, ShapeStyleChanges, ShareDefaults, ShareFormFields, ShortcutReferenceItem, SignatureStatusKind, SlideTransitionAnimations, SmartArtInsertEvent, SmartArtNodeBounds, SnapBox, SnapGuide, SnapResult, SoftEdgeState, SpeechAlternative, SpeechRecognitionCtor, SpeechRecognitionEventLite, SpeechRecognitionLite, SpeechResult, SpeechResultList, SpeechSupportState, StrokeToInkElementOpts, StyleMap, SupportedChartKind, SvgAreaGradient, SvgCircle, SvgLine, SvgPath, SvgPolygon, SvgPolyline, SvgPrimitive, SvgRect, SvgText, SwipeDismissDrag, TableBooleanFlag, TableCellSelection, TableCellViewModel, TableRowViewModel, TemplateElementsBySlideId, TextAdvancedChanges, TextAdvancedState, TextStyleChanges, TextWarpCssDef, TextWarpDef, TextWarpPathDef, TimerProgress, ToolbarActionId, TouchGestureCallbacks, TranslationKey, UngroupResult, ValueRange, VideoPlanOptions, VideoSegmentPlan, ViewerMode, ViewerSettings, ViewerTheme, ViewerThemeColors, ZoomViewModel };
|
|
14729
|
+
export { ALIGN_OPTIONS, AUDIENCE_HASH, AUDIENCE_NONCE_KEY, AVATAR_COLOR_SWATCHES, AccessibilityPanelComponent, AccessibilityService, AccountPageComponent, ActionSettingsPanelComponent, AdvancedChartEditorComponent, AnimationAuthorPanelComponent, AnimationPanelComponent, AnimationPlaybackService, AutosaveService, BroadcastDialogComponent, CHART_EDITOR_STYLES, CURSOR_PALETTE, CanvasFitService, ChartAxisOptionsComponent, ChartAxisStyleOptionsComponent, ChartComboTypeOptionsComponent, ChartDataEditorComponent, ChartDataLabelOptionsComponent, ChartDatapointOptionsComponent, ChartDisplayOptionsComponent, ChartElementViewComponent, ChartErrorBarOptionsComponent, ChartMarkerOptionsComponent, ChartPartSelectionService, ChartPrimitivesComponent, ChartRendererComponent, ChartTrendlineOptionsComponent, CollaborationCursorsComponent, CollaborationService, ColorChangedImageComponent, CommentsPanelComponent, CommentsService, ComparePanelComponent, ConnectorRendererComponent, ConnectorTextOverlayComponent, CustomShowsComponent, DATA_TABLE_HEADER_H, DATA_TABLE_KEY_W, DATA_TABLE_PADDING, DATA_TABLE_ROW_H, DEFAULT_BOUNDS, DEFAULT_BROADCAST_SERVER_URL, DEFAULT_CANVAS_HEIGHT, DEFAULT_CANVAS_WIDTH, DEFAULT_COLOR_SCHEME, DEFAULT_FILL_COLOR, DEFAULT_LAYOUT, DEFAULT_PALETTE$1 as DEFAULT_PALETTE, DEFAULT_PRINT_SETTINGS, DEFAULT_SLIDE_BACKGROUND, DEFAULT_STROKE_COLOR, DEFAULT_STYLE, DEFAULT_TABLE_ROW_HEIGHT, DEFAULT_TEXT_COLOR, DEFAULT_VIEWER_PROFILE, DIRECTIONAL_PRESETS, DIRECTION_OPTIONS, DocumentPropertiesCardComponent, EMBEDDED_FONTS_STYLE_ID, EMPHASIS_PRESETS, ENTRANCE_PRESETS, TEMPLATES as EQUATION_TEMPLATES, EXIT_PRESETS, EditorContextMenuComponent, EditorHistory, EditorStateService, EditorToolbarComponent, EffectsPanelComponent, ElementRendererComponent, EmbeddedFontsService, EncryptedFileDialogComponent, EquationEditorDialogComponent, EquationRendererComponent, EquationTemplateGalleryComponent, ExportProgressModalComponent, ExportService, FieldContextService, FindBarComponent, FindReplaceBarComponent, FollowModeBarComponent, FontEmbeddingListComponent, FontEmbeddingPanelComponent, GALLERY_THEME_PRESETS, GradientPickerComponent, HANDOUT_OPTIONS, HeaderFooterDialogComponent, HyperlinkDialogComponent, ImagePropertiesPanelComponent, InkDrawingService, InkRendererComponent, InsertSmartArtDialogComponent, InspectorPaneHeaderComponent, InspectorPanelComponent, IsMobileService, KeepAnnotationsDialogComponent, LOCALE_CATALOG, LONG_PRESS_DURATION_MS, LONG_PRESS_MOVE_TOLERANCE_PX, LoadContentService, LocalPresencePublisher, MAX_ZOOM_SCALE, MIN_ZOOM_SCALE, MediaPreviewComponent, MediaPropertiesPanelComponent, MediaRendererComponent, MediaTrimTimelineComponent, MobileBottomBarComponent, MobileMenuSheetComponent, MobilePresenterViewComponent, MobileSheetComponent, MobileSlidesSheetComponent, MobileToolbarComponent, ModalDialogComponent, Model3DRendererComponent, NotesHandoutCardComponent, NotesPanelComponent, NotesToolbarComponent, OleRendererComponent, PRESENTER_CHANNEL_NAME, PRESENTER_MSG_ORIGIN, PasswordProtectionDialogComponent, PasswordStrengthMeterComponent, PowerPointViewerComponent, PresentationAnnotationOverlayComponent, PresentationAnnotationsService, PresentationOverlayComponent, PresentationPropertiesPanelComponent, PresentationSettingsCardComponent, PresentationSubtitleBarComponent, PresentationTransitionOverlayComponent, PresenterViewComponent, PresenterWindowService, PrintDialogComponent, PrintService, PrintSettingsPanelComponent, PropertiesDialogComponent, REPEAT_MODE_OPTIONS, RESIZE_HANDLES, RULER_THICKNESS, RemoteSelectionOverlayComponent, RibbonAnimationsSectionComponent, RibbonArrangeSectionComponent, RibbonColorPopoverComponent, RibbonComponent, RibbonDesignSectionComponent, RibbonDrawSectionComponent, RibbonDrawingGroupComponent, RibbonEditingSectionComponent, RibbonFileSectionComponent, RibbonFontControlsComponent, RibbonHomeSectionComponent, RibbonInsertFieldsComponent, RibbonInsertSectionComponent, RibbonParagraphControlsComponent, RibbonPrimaryRowComponent, RibbonReviewSectionComponent, RibbonSlideshowSectionComponent, RibbonTransitionsSectionComponent, RibbonViewSectionComponent, RulerGuidesService, SEQUENCE_OPTIONS, SEVERITY_GROUPS, SEVERITY_LABELS, SHORTCUT_REFERENCE_ITEMS, SLIDE_PX_PER_INCH, 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, SlideCanvasComponent, SlideDefaultInspectorComponent, SlideDiffChangesComponent, SlideDiffRowComponent, SlideDiffThumbnailsComponent, SlideSizeCardComponent, SlideSorterOverlayComponent, SlideThemeOverridePanelComponent, SlidesPanelComponent, SmartArt3DRendererComponent, SmartArt3DService, SmartArtPreviewComponent, SmartArtPropertiesComponent, SmartArtRendererComponent, StatusBarComponent, TABLE_STRUCTURE_TOGGLES, TEXT_DIRECTION_OPTIONS, THEME_CATALOG, TIMING_CURVE_OPTIONS, TRIGGER_OPTIONS, TYPE_LABELS, TableCellAdvancedFillComponent, TableCellFormattingComponent, TableDataEditorComponent, TablePropertiesComponent, TableRendererComponent, TableResizeOverlayComponent, TableSelectionService, TextAdvancedPanelComponent, ThemeEditorFieldsComponent, ThemeGalleryComponent, ThemeSelectorCardComponent, TitleBarComponent, VALIGN_OPTIONS, VIEWER_THEME, VersionHistoryPanelComponent, ViewerCanvasEditingService, ViewerCollabCursorService, ViewerCollaborationSessionService, ViewerCompareService, ViewerCustomShowsService, ViewerDialogsService, ViewerDocumentPropertiesService, ViewerExportService, ViewerExtraDialogsComponent, ViewerFileIOService, ViewerFindReplaceService, ViewerFormatPainterService, ViewerInspectorPanelService, ViewerKeyboardService, ViewerMobileSheetService, ViewerPresentationModeService, ViewerThemeGalleryService, ViewerTouchGesturesService, ViewerZoomService, WEBM_MIME_CANDIDATES, WriteBackScheduler, ZoomNavigationService, ZoomRendererComponent, ZoomTargetService, addCategory, addCommentToList, addGradientStopPatch, addItem, addSeries, addSubItem, advanceStep, alignPatch, animationFor, annotationMapToInkInserts, applyAcceptedDiff, applyAnimationPreset, applyFindReplacements, applyFormatToElement, applyMove, applyResize, applyTableStylePreset, asMediaElement, assignUserColor, attachTouchGestures, beginNodeEdit, boolFromEvent, bringForward, bringToFront, buildBarActions, buildBroadcastConfig, buildBroadcastViewerUrl, buildCategoryLabels, buildCellParagraphs, buildChartViewModel, buildChromeStyle, buildClearHyperlinkPatch, buildClickGroups, buildColStyles, buildCollaborationConfig, buildComboViewModel, buildCssGradientFromShapeStyle, buildDuotoneFilter, buildDuotoneFilterId, buildEmbeddedFontStyles, buildEquationElement, buildEquationSegment, buildFallbackViewModel, buildFontFaceRule, buildGradientFillCss, buildGridlinesAndLabels, buildHyperlinkPatch, buildInkContainerStyle, buildInkStrokes, buildLegend, buildModel3DContainerStyle, buildModel3DViewModel, buildOleActionModel, buildOleInfoRows, buildPatternFillCss, buildPrintHtmlDocument as buildPrintDocument, buildPropertiesPatch, buildRegionMapViewModel, buildSaveSlides, buildShareUrl, buildSmartArtInsertElement, buildSmartArtNodes, buildStockViewModel, buildSurfaceViewModel, buildTableViewModel, buildTreemapViewModel, buildTrimFragment, buildWaterfallViewModel, buildZeroLine, buildZoomContainerStyle, buildZoomViewModel, bulletIndentPx, canAddTopLevelNode, canRemoveTopLevelNode, canStartBroadcast, canStartShare, canUseClipboard, captionDisplayText, cellRunStyle, cellStyleToStyleMap, cellTdStyle, changeCountLabel, changeIcon, characterSpacingPatch, checkFontAvailable, clampCursorPosition, clampGifDimensions, clampIndex, clampNotesFontSize, clampScale, clampStep, clearAllLocalViewerData, clearAudienceContent, cn, collectAccessibilityIssues, collectElementText, collectSlideText, collectUsedFontFamilies, columnWidthStyle, commitNodeText, computeAlign, computeAxisTitlePrimitives, computeBarRects, computeBubbleRadius, computeCornerHandle, computeDataTablePrimitives, computeDistribute, computeDrawingViewBox, computeErrorBarPrimitives, computeHandleBoxes, computeHandoutLayout, computeIsMobile, computeIsTablet, computeLinePoints, computeLinearRegression, computePageCount, computePieLayout, computePieSlicePath, computePieSlices, computePlotLayout, computeRSquared, computeRadarPoints, computeScatterDots, computeSelectionBoxes, computeSingleSelected, computeSlideIndices, computeSnap, computeStackedBarRects, computeStackedValueRange, computeTextLines, computeTimerProgress, computeTrendlinePrimitives, computeValueRange, convertOmmlToMathMl, copyFormatFromElement, countAccessibilityIssues, countAnnotationStrokes, createCustomShow, createSwipeDismissDrag, createWebrtcBundle, createWebsocketBundle, cssObjectToStyleMap, currentColorScheme, currentLayout, currentStyle, defaultCssVars, defaultRadius, defaultThemeColors, deleteElementsByIds, deleteVersion as deleteRecoveryVersion, demoteNode, deriveModel3DBlobUrl, derivePresenceList, describeSmartArtBounds, disableGlowPatch, disableInnerShadowPatch, disableOuterShadowPatch, disableReflectionPatch, disableSoftEdgePatch, duplicateElementById, durationOf, effectsStateOf, enableGlowPatch, enableInnerShadowPatch, enableOuterShadowPatch, enableReflectionPatch, enableSoftEdgePatch, encodeGif, estimatePageCount, evenColumnWidths, evenRowHeights, exitPresentationFullscreen, extractPathPoints, eyedropperAvailable, fillColorOf, findInSlides, findOwningSlideIndex, findSlideIndexByElementId, fitPolynomial, fitZoom, fontMimeForFormat, fontSizeOf, formatAutoNumber, formatAxisValue, formatBytes, formatCursorLabel, formatElapsed, formatFileSize, formatPropertyDate, formatTime, fpsToFrameIntervalMs, generateBroadcastRoomId, generateCommentId, generateCustomShowId, generatePressureCircles, generateRulerTicks, getClrChangeParams, getContainerStyle, getDuotoneFilterDef, getImageSrc, getLocalStorageUsageSummary, getOleAriaLabel, getOleBadgeLabel, getOleDisplayName, getOleDownloadFileName, getOleTypeColor, getOleTypeLabel, getPasswordStrength, getPatternSvg, getPlaceholderStyle, getVersions as getRecoveryVersions, getResolvedShapeClipPath, getResolvedShapeClipPathFor, getShapeFillStrokeStyle, getSlideBackgroundStyle, getSlideTransitionAnimations, getSmartArtNodeBounds, getSpeechRecognitionCtor, getTextBlockStyle, getTextWarp, getTouchDistance, getWarpCategory, getWarpPath, gradientStateFromStyle, gradientStateOf, gradientStatePatch, gridColumns, groupElements, groupIssuesBySeverity, hasAnimation, hasCopyableFormat, hasExistingLink, hasExitedFullscreen, hasGradientFill, hasPressureVariation, headerLabel, inkViewBox, insertColumn, insertRow, interpolateWidth, isAudienceTab, isBold, isBrowserOpenableMime, isChildNode, isElementInteractive, isInjectableUrl, isItalic, isPpactionUrl, isPresenterMessage, isSigned, isTextElement, isUnderline, isUrlSafe, isValidRoomId, isViewportBackgroundPressTarget, isZoomActivationKey, issueTrackKey, issueTypeLabel, keyToLabel, latexToMathml, linePointsToSvgString, lineSpacingPatch, loadAudienceContent, mergeCaptionResults, mergeDown, mergeRight, mergeSelection, moveElementBy, moveNodeDown, moveNodeUp, msToFrameDelayCs, narrowToCircle, narrowToPolygon, narrowToRect, newChartElement, newEquationElement, newShapeElement, newSmartArtElement, newTableElement, newTextElement, nextVisibleIndex, nodeBold, nodeEditBox, nodeFillColor, nodeFontColor, nodeIdFromKey, nodeItalic, nodeStyle, normalizeFontFormat, normalizeSlidesPerPage, normalizeValue, numFromEvent, ommlToMathml, ooxmlDashToCssBorderStyle, openNativeEyeDropper, overallStatus, paletteColor, parseAudienceNonce, parseNodeTextarea, partitionSlides, patchChartData, patchChartStyle, patchTableData, patchTextStyle, pendingElementStyles, pickColorByClickFallback, pickSupportedMimeType, planGifFrames, planVideoSegments, pointsToSvgPathD, presenceToCursors, presetByLayout, presetsForCategory, pressuresToWidths, prevVisibleIndex, projectDrawingShapes, promoteNode, provideViewerTheme, radarAngle, radarRingPoints, recordWebm, redistributeColumnWidth, removeAnimation, removeCategory, removeColumn, removeCommentFromList, removeElementAnimation, removeGradientStopPatch, removeNode, removeRow, removeSeries, renderToCanvas, reorderAnimationDown, reorderAnimationUp, replaceInSlides, replaceMatch, requestPresentationFullscreen, resizeElement, resolveCaptionTracks, resolveChartKind, resolveFontVariant, resolveHyperlinkHref, resolveInteractiveElementId, resolveMediaSrc, resolveOleType, resolveParagraphBullet, resolvePresenterNotes, resolveProfileInitial, resolveRegionCode, resolvePalette as resolveSmartArtPalette, resolveThemeCatalogEntry, resolveTransitionDuration, revealedElementStyles, routeOrthogonalConnector, rowStyle, sampleColorFromSlide, sanitizeColor, sanitizeSlideIndex, sanitizeUserName, saveViewerProfile, scanAvailableFonts, searchSlides, seedBroadcastFields, seedHyperlinkDraft, seedPropertiesDraft, seedShareFields, segmentFrameCount, selectValue, sendBackward, sendToBack, sequentialColorScale, serializeWriteBack, seriesColor, setAnimationEmphasis, setAnimationEntrance, setAnimationExit, setAxis, setAxisLogScale, setAxisTitleStyle, setCategoryLabel, setCellText, setColorScheme, setDataLabels, setDataPointExplosion, setDataPointFill, setDataPointLabel, setDelay, setDirection, setDuration, setElementPosition, setGridlineStyle, setLayout, setLegend, setNodeStyle, setNodeText, setRepeatCount, setRepeatMode, setSequence, setSeriesChartType, setSeriesColor, setSeriesErrorBars, setSeriesMarker, setSeriesName, setSeriesTrendline, setSeriesValue, setStyle, setTimingCurve, setTitle, setTrigger, setTriggerShapeId, shapeStylePatch, sheetAfterNavigate, shouldUseSvgWarp, showDirectionPicker, showsTemplateAffordance, signatureCountLabel, signatureKey, signatureTimestamp, signerName, statusLabel as slideDiffStatusLabel, slideNumberOf, smartArtNodes, paletteColour as smartArtPaletteColour, snapToGridStep, splitCursorCell, splitMergedCell, statusKind, statusLabel$1 as statusLabel, storeAudienceContent, stringFromEvent, strokeColorOf, strokeToInkElement, styleShadowFilter, textAdvancedPatch, textAdvancedStateFromStyle, textAdvancedStateOf, textColorOf, textDirectionPatch, textStyleOf, textStylePatch, themeStyle, themeToCssVars, thumbnailHeight, thumbnailZoom, toggleCommentResolvedInList, toggleNodeBold, toggleNodeItalic, toggleSheet, topLevelNodeCount, transformSelectedTextCase, translationsEn, ungroupElements, updateElementById, updateGlowPatch, updateGradientStopPatch, updateInnerShadowPatch, updateOuterShadowPatch, updateReflectionPatch, vAlignPatch, validatePassword, validatePrintSettings, validateRoomId, valueToY, vermilionDarkColors, vermilionDarkTheme, vermilionLightColors, vermilionLightTheme, vermilionRadius, waypointsToPathD, worstStatus, zoomTargetSlideIndex };
|
|
14730
|
+
export type { AccessibilityIssueGroup, AccountAuthConfig, ActionDescriptor, AlignBox, AlignMode, AnimationClickGroup, AnimationGroup, AnnotationInkInsert, AnnotationStroke, AttachTouchGesturesConfig, AwarenessLike, BarRect, Box, BroadcastConfig, BroadcastDefaults, CSSProperties, CanvasSize, CellCoord, CellParagraph, CellTextRun, ChartPartRef, ChartPartSelection, ChartValueDrag, ChartViewModel, ClassValue, ClrChangeParams, CollaborationConfig, CollaborationRole, RouterRect as ConnectorObstacle, RouterPoint as ConnectorPoint, ConnectorRouting, CopiedFormat, CornerHandleBox, CustomShow, CustomThemeEdit, DestroyableYDoc, DiagonalBorderInfo, DistributeMode, DocumentProperties, DrawingViewBox, DuotoneFilterDef, EffectsState, EmbeddedFontStyles, EquationTemplate, EyedropperResult, FindOptions, FindResult, GifFrame, GifFramePlan, GifPlanOptions, GlowState, GradientState, GradientStop$1 as GradientStop, GroupResult, HandleBox, HandoutSlidesPerPage, HyperlinkDraft, InkPoint, InkStroke, InlineEditState, InnerShadowState, LegendEntry, LinePoint, LinearFit, LocalIdentity, LocalStorageUsageSummary, LocaleCatalogEntry, MobileSheetKey, Model3DViewModel, NodeEditBox, NotesSegmentViewModel, ObjectUrlFactory, OleActionModel, OleInfoRow, OuterShadowState, OverallSignatureStatus, PartitionedSlides, PathPoint, PieSliceGeometry, PlotLayout, PlotLayoutOptions, PositionUpdate, PowerPointViewerAPI, PresentationTool, PresenterExitMessage, PresenterMessage, PresenterNotes, PresenterSlideChangeMessage, PressureCircle, PrintColorMode, PrintHtmlDocumentOptions as PrintDocumentOptions, PrintOrientation, PrintSettings, PrintSlideRange, PrintWhat, PropertiesDraft, ProviderBundle, ProviderLike, RadarPoint, RecordWebmOptions, RecoveryVersion, ReflectionState, RemoteCursor, SanitizedPresence as RemotePresence, RenderedShape, ReplaceResult, ResizeHandle, ResolvedCaptionTrack, ResolvedFontVariant, ResolvedOleType, RulerTick, ScatterDot, SelectionBox, ShapeStyleChanges, ShareDefaults, ShareFormFields, ShortcutReferenceItem, SignatureStatusKind, SlideInspectorTab, SlideTransitionAnimations, SmartArtInsertEvent, SmartArtNodeBounds, SnapBox, SnapGuide, SnapResult, SoftEdgeState, SpeechAlternative, SpeechRecognitionCtor, SpeechRecognitionEventLite, SpeechRecognitionLite, SpeechResult, SpeechResultList, SpeechSupportState, StrokeToInkElementOpts, StyleMap, SupportedChartKind, SvgAreaGradient, SvgCircle, SvgLine, SvgPath, SvgPolygon, SvgPolyline, SvgPrimitive, SvgRect, SvgText, SwipeDismissDrag, TableBooleanFlag, TableCellSelection, TableCellViewModel, TableRowViewModel, TemplateElementsBySlideId, TextAdvancedChanges, TextAdvancedState, TextStyleChanges, TextWarpCssDef, TextWarpDef, TextWarpPathDef, ThemeCatalogEntry, TimerProgress, ToolbarActionId, TouchGestureCallbacks, TranslationKey, UngroupResult, ValueRange, VideoPlanOptions, VideoSegmentPlan, ViewerMode, ViewerProfile, ViewerSettings, ViewerTheme, ViewerThemeColors, ZoomViewModel };
|