pptx-angular-viewer 2.19.1 → 2.19.3
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 +20 -0
- package/fesm2022/{pptx-angular-viewer-chat-history-idb-DG82Zq8L.mjs → pptx-angular-viewer-chat-history-idb-CsK-I05g.mjs} +2 -2
- package/fesm2022/{pptx-angular-viewer-chat-history-idb-DG82Zq8L.mjs.map → pptx-angular-viewer-chat-history-idb-CsK-I05g.mjs.map} +1 -1
- package/fesm2022/{pptx-angular-viewer-pptx-angular-viewer-DrfIMkrX.mjs → pptx-angular-viewer-pptx-angular-viewer-B9V8UhEb.mjs} +211 -66
- package/fesm2022/{pptx-angular-viewer-pptx-angular-viewer-DrfIMkrX.mjs.map → pptx-angular-viewer-pptx-angular-viewer-B9V8UhEb.mjs.map} +1 -1
- package/fesm2022/pptx-angular-viewer.mjs +1 -1
- package/package.json +2 -2
- package/types/pptx-angular-viewer.d.ts +1 -1
- package/types/pptx-angular-viewer.d.ts.map +1 -1
|
@@ -32592,6 +32592,9 @@ function getCurrentParagraphIndex(editorEl, segments) {
|
|
|
32592
32592
|
return paraIdx;
|
|
32593
32593
|
}
|
|
32594
32594
|
|
|
32595
|
+
/* oxlint-disable eslint/one-var -- pervasive pre-existing pattern in this file
|
|
32596
|
+
(many independent short-lived `const`s per function, several separated by
|
|
32597
|
+
comments or guard clauses); merging them isn't a style choice here. */
|
|
32595
32598
|
/**
|
|
32596
32599
|
* Hyperlink security utilities — URL validation, sanitization, and slide-jump
|
|
32597
32600
|
* resolution for hyperlink click actions in the viewer. Pure, framework-agnostic
|
|
@@ -32630,7 +32633,9 @@ function isUrlSafe(url) {
|
|
|
32630
32633
|
// Normalize: lowercase to catch case-bypasses like "JaVaScRiPt:"
|
|
32631
32634
|
const lower = trimmed.toLowerCase();
|
|
32632
32635
|
// Strip whitespace and zero-width characters that could bypass naive checks.
|
|
32633
|
-
// Characters stripped: ZWSP (
|
|
32636
|
+
// Characters stripped: ZWSP (U+200B), ZWNJ (U+200C), ZWJ (U+200D), BOM
|
|
32637
|
+
// (U+FEFF), NUL. Named by code point rather than embedded literally so the
|
|
32638
|
+
// characters stay visible/diffable in this comment instead of invisible.
|
|
32634
32639
|
// Separate replace calls avoid no-misleading-character-class (joined sequences)
|
|
32635
32640
|
// and no-control-regex (NUL literal) lint rules.
|
|
32636
32641
|
const stripped = lower
|
|
@@ -71280,7 +71285,7 @@ function createLocalStorageBackend(namespace) {
|
|
|
71280
71285
|
/** Try IndexedDB first; fall back to localStorage on any failure. */
|
|
71281
71286
|
async function resolveBackend(dbName, namespace) {
|
|
71282
71287
|
try {
|
|
71283
|
-
const { openChatDb, createIdbBackend } = await import('./pptx-angular-viewer-chat-history-idb-
|
|
71288
|
+
const { openChatDb, createIdbBackend } = await import('./pptx-angular-viewer-chat-history-idb-CsK-I05g.mjs');
|
|
71284
71289
|
const db = await openChatDb(dbName);
|
|
71285
71290
|
return createIdbBackend(db);
|
|
71286
71291
|
}
|
|
@@ -83031,8 +83036,8 @@ function buildTableViewModel(el, styleCtx) {
|
|
|
83031
83036
|
rowSpan,
|
|
83032
83037
|
tdStyle,
|
|
83033
83038
|
// Non-breaking space (U+00A0) keeps an empty cell from collapsing;
|
|
83034
|
-
// mirrors React's `cell.text || '
|
|
83035
|
-
displayText: cell.text || '
|
|
83039
|
+
// mirrors React's `cell.text || '\u00a0'` in table-render-data.tsx.
|
|
83040
|
+
displayText: cell.text || '\u00a0',
|
|
83036
83041
|
paragraphs: buildCellParagraphs(cell),
|
|
83037
83042
|
// Combine per-cell explicit diagonals with any inherited from the
|
|
83038
83043
|
// applicable table-style sections (per-cell still takes precedence).
|
|
@@ -88977,11 +88982,22 @@ class MasterViewSidebarComponent {
|
|
|
88977
88982
|
<aside class="master-sidebar" [attr.aria-label]="'pptx.view.masterViews' | translate">
|
|
88978
88983
|
<header>
|
|
88979
88984
|
<strong>{{ titleKey() | translate }}</strong>
|
|
88980
|
-
<button
|
|
88985
|
+
<button
|
|
88986
|
+
type="button"
|
|
88987
|
+
(click)="close.emit()"
|
|
88988
|
+
[attr.aria-label]="'pptx.mode.closeMasterViewTooltip' | translate"
|
|
88989
|
+
>
|
|
88990
|
+
×
|
|
88991
|
+
</button>
|
|
88981
88992
|
</header>
|
|
88982
88993
|
<div class="tabs" role="tablist" [attr.aria-label]="'pptx.mode.masterView' | translate">
|
|
88983
88994
|
@for (item of tabs; track item.tab) {
|
|
88984
|
-
<button
|
|
88995
|
+
<button
|
|
88996
|
+
type="button"
|
|
88997
|
+
role="tab"
|
|
88998
|
+
[attr.aria-selected]="tab() === item.tab"
|
|
88999
|
+
(click)="tabChange.emit(item.tab)"
|
|
89000
|
+
>
|
|
88985
89001
|
{{ item.key | translate }}
|
|
88986
89002
|
</button>
|
|
88987
89003
|
}
|
|
@@ -88990,35 +89006,71 @@ class MasterViewSidebarComponent {
|
|
|
88990
89006
|
@if (tab() === 'slides') {
|
|
88991
89007
|
@if (editable()) {
|
|
88992
89008
|
<!-- Format Background for the selected master or layout. -->
|
|
88993
|
-
<ng-container
|
|
89009
|
+
<ng-container
|
|
89010
|
+
[ngTemplateOutlet]="backgroundEditor"
|
|
89011
|
+
[ngTemplateOutletContext]="{ color: slidesBackground() ?? '#ffffff' }"
|
|
89012
|
+
/>
|
|
88994
89013
|
}
|
|
88995
89014
|
@for (master of slideMasters(); track master.path; let masterIndex = $index) {
|
|
88996
|
-
<button
|
|
89015
|
+
<button
|
|
89016
|
+
type="button"
|
|
89017
|
+
class="master-item"
|
|
89018
|
+
[attr.aria-pressed]="
|
|
89019
|
+
activeMasterIndex() === masterIndex && activeLayoutIndex() === null
|
|
89020
|
+
"
|
|
89021
|
+
(click)="selectMaster.emit(masterIndex)"
|
|
89022
|
+
>
|
|
88997
89023
|
{{ master.name || ('pptx.master.master' | translate) }}
|
|
88998
89024
|
</button>
|
|
88999
89025
|
@for (layout of master.layouts ?? []; track layout.path; let layoutIndex = $index) {
|
|
89000
|
-
<button
|
|
89026
|
+
<button
|
|
89027
|
+
type="button"
|
|
89028
|
+
class="master-item layout"
|
|
89029
|
+
[attr.aria-pressed]="
|
|
89030
|
+
activeMasterIndex() === masterIndex && activeLayoutIndex() === layoutIndex
|
|
89031
|
+
"
|
|
89032
|
+
(click)="selectLayout.emit({ masterIndex, layoutIndex })"
|
|
89033
|
+
>
|
|
89001
89034
|
{{ layout.name || ('pptx.master.layout' | translate) }}
|
|
89002
89035
|
</button>
|
|
89003
89036
|
}
|
|
89004
89037
|
}
|
|
89005
89038
|
} @else if (tab() === 'notes') {
|
|
89006
89039
|
@if (notesMaster()) {
|
|
89007
|
-
<ng-container
|
|
89008
|
-
|
|
89009
|
-
|
|
89040
|
+
<ng-container
|
|
89041
|
+
[ngTemplateOutlet]="backgroundEditor"
|
|
89042
|
+
[ngTemplateOutletContext]="{ color: notesMaster()!.backgroundColor || '#ffffff' }"
|
|
89043
|
+
/>
|
|
89044
|
+
<p>
|
|
89045
|
+
{{ notesMaster()!.placeholders?.length ?? 0 }}
|
|
89046
|
+
{{ 'pptx.master.notesMasterPlaceholders' | translate }}
|
|
89047
|
+
</p>
|
|
89048
|
+
} @else {
|
|
89049
|
+
<p>{{ 'pptx.master.noNotesMaster' | translate }}</p>
|
|
89050
|
+
}
|
|
89010
89051
|
} @else {
|
|
89011
89052
|
@if (handoutMaster()) {
|
|
89012
89053
|
<section>
|
|
89013
89054
|
<strong>{{ 'pptx.master.handoutSlidesPerPage' | translate }}</strong>
|
|
89014
89055
|
<div class="counts">
|
|
89015
89056
|
@for (count of handoutCounts; track count) {
|
|
89016
|
-
<button
|
|
89057
|
+
<button
|
|
89058
|
+
type="button"
|
|
89059
|
+
[attr.aria-pressed]="handoutSlidesPerPage() === count"
|
|
89060
|
+
(click)="slidesPerPageChange.emit(count)"
|
|
89061
|
+
>
|
|
89062
|
+
{{ count }}
|
|
89063
|
+
</button>
|
|
89017
89064
|
}
|
|
89018
89065
|
</div>
|
|
89019
89066
|
</section>
|
|
89020
|
-
<ng-container
|
|
89021
|
-
|
|
89067
|
+
<ng-container
|
|
89068
|
+
[ngTemplateOutlet]="backgroundEditor"
|
|
89069
|
+
[ngTemplateOutletContext]="{ color: handoutMaster()!.backgroundColor || '#ffffff' }"
|
|
89070
|
+
/>
|
|
89071
|
+
} @else {
|
|
89072
|
+
<p>{{ 'pptx.master.noHandoutMaster' | translate }}</p>
|
|
89073
|
+
}
|
|
89022
89074
|
}
|
|
89023
89075
|
</div>
|
|
89024
89076
|
</aside>
|
|
@@ -89026,7 +89078,12 @@ class MasterViewSidebarComponent {
|
|
|
89026
89078
|
<ng-template #backgroundEditor let-color="color">
|
|
89027
89079
|
<label class="background-editor">
|
|
89028
89080
|
<span>{{ 'pptx.master.notesMasterBackground' | translate }}</span>
|
|
89029
|
-
<input
|
|
89081
|
+
<input
|
|
89082
|
+
type="color"
|
|
89083
|
+
[attr.aria-label]="'pptx.master.backgroundColorLabel' | translate"
|
|
89084
|
+
[value]="color"
|
|
89085
|
+
(input)="backgroundChange.emit($any($event.target).value)"
|
|
89086
|
+
/>
|
|
89030
89087
|
</label>
|
|
89031
89088
|
</ng-template>
|
|
89032
89089
|
`, isInline: true, styles: [".master-sidebar{display:flex;width:224px;min-height:0;flex-direction:column;border-right:1px solid var(--pptx-border, #33334d);background:var(--pptx-card, #1e1e2e)}header{display:flex;align-items:center;justify-content:space-between;padding:8px 12px}header strong{color:var(--pptx-muted-foreground, #a5a5b5);font-size:11px;text-transform:uppercase}header button{border:0;background:transparent;color:inherit;font-size:20px;cursor:pointer}.tabs{display:flex;padding:0 4px;border-bottom:1px solid var(--pptx-border, #33334d)}.tabs button{flex:1;padding:6px 3px;border:0;border-bottom:2px solid transparent;background:transparent;color:var(--pptx-muted-foreground, #a5a5b5);font-size:10px;cursor:pointer}.tabs button[aria-selected=true]{border-bottom-color:#f59e0b;color:#f59e0b}.body{flex:1;min-height:0;overflow:auto;padding:8px}.master-item{display:block;width:100%;margin-bottom:6px;padding:8px;border:1px solid transparent;border-radius:5px;background:transparent;color:inherit;text-align:left}.master-item.layout{width:calc(100% - 14px);margin-left:14px}.master-item[aria-pressed=true]{border-color:var(--pptx-primary, #6366f1)}section,.background-editor{display:flex;flex-direction:column;gap:8px;margin-bottom:12px;padding:10px;border:1px solid var(--pptx-border, #33334d);border-radius:6px}.counts{display:grid;grid-template-columns:repeat(3,1fr);gap:4px}.counts button[aria-pressed=true]{background:var(--pptx-primary, #6366f1);color:#fff}.background-editor input{width:100%;height:34px}\n"], dependencies: [{ kind: "directive", type: NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
@@ -89037,11 +89094,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.2", ngImpor
|
|
|
89037
89094
|
<aside class="master-sidebar" [attr.aria-label]="'pptx.view.masterViews' | translate">
|
|
89038
89095
|
<header>
|
|
89039
89096
|
<strong>{{ titleKey() | translate }}</strong>
|
|
89040
|
-
<button
|
|
89097
|
+
<button
|
|
89098
|
+
type="button"
|
|
89099
|
+
(click)="close.emit()"
|
|
89100
|
+
[attr.aria-label]="'pptx.mode.closeMasterViewTooltip' | translate"
|
|
89101
|
+
>
|
|
89102
|
+
×
|
|
89103
|
+
</button>
|
|
89041
89104
|
</header>
|
|
89042
89105
|
<div class="tabs" role="tablist" [attr.aria-label]="'pptx.mode.masterView' | translate">
|
|
89043
89106
|
@for (item of tabs; track item.tab) {
|
|
89044
|
-
<button
|
|
89107
|
+
<button
|
|
89108
|
+
type="button"
|
|
89109
|
+
role="tab"
|
|
89110
|
+
[attr.aria-selected]="tab() === item.tab"
|
|
89111
|
+
(click)="tabChange.emit(item.tab)"
|
|
89112
|
+
>
|
|
89045
89113
|
{{ item.key | translate }}
|
|
89046
89114
|
</button>
|
|
89047
89115
|
}
|
|
@@ -89050,35 +89118,71 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.2", ngImpor
|
|
|
89050
89118
|
@if (tab() === 'slides') {
|
|
89051
89119
|
@if (editable()) {
|
|
89052
89120
|
<!-- Format Background for the selected master or layout. -->
|
|
89053
|
-
<ng-container
|
|
89121
|
+
<ng-container
|
|
89122
|
+
[ngTemplateOutlet]="backgroundEditor"
|
|
89123
|
+
[ngTemplateOutletContext]="{ color: slidesBackground() ?? '#ffffff' }"
|
|
89124
|
+
/>
|
|
89054
89125
|
}
|
|
89055
89126
|
@for (master of slideMasters(); track master.path; let masterIndex = $index) {
|
|
89056
|
-
<button
|
|
89127
|
+
<button
|
|
89128
|
+
type="button"
|
|
89129
|
+
class="master-item"
|
|
89130
|
+
[attr.aria-pressed]="
|
|
89131
|
+
activeMasterIndex() === masterIndex && activeLayoutIndex() === null
|
|
89132
|
+
"
|
|
89133
|
+
(click)="selectMaster.emit(masterIndex)"
|
|
89134
|
+
>
|
|
89057
89135
|
{{ master.name || ('pptx.master.master' | translate) }}
|
|
89058
89136
|
</button>
|
|
89059
89137
|
@for (layout of master.layouts ?? []; track layout.path; let layoutIndex = $index) {
|
|
89060
|
-
<button
|
|
89138
|
+
<button
|
|
89139
|
+
type="button"
|
|
89140
|
+
class="master-item layout"
|
|
89141
|
+
[attr.aria-pressed]="
|
|
89142
|
+
activeMasterIndex() === masterIndex && activeLayoutIndex() === layoutIndex
|
|
89143
|
+
"
|
|
89144
|
+
(click)="selectLayout.emit({ masterIndex, layoutIndex })"
|
|
89145
|
+
>
|
|
89061
89146
|
{{ layout.name || ('pptx.master.layout' | translate) }}
|
|
89062
89147
|
</button>
|
|
89063
89148
|
}
|
|
89064
89149
|
}
|
|
89065
89150
|
} @else if (tab() === 'notes') {
|
|
89066
89151
|
@if (notesMaster()) {
|
|
89067
|
-
<ng-container
|
|
89068
|
-
|
|
89069
|
-
|
|
89152
|
+
<ng-container
|
|
89153
|
+
[ngTemplateOutlet]="backgroundEditor"
|
|
89154
|
+
[ngTemplateOutletContext]="{ color: notesMaster()!.backgroundColor || '#ffffff' }"
|
|
89155
|
+
/>
|
|
89156
|
+
<p>
|
|
89157
|
+
{{ notesMaster()!.placeholders?.length ?? 0 }}
|
|
89158
|
+
{{ 'pptx.master.notesMasterPlaceholders' | translate }}
|
|
89159
|
+
</p>
|
|
89160
|
+
} @else {
|
|
89161
|
+
<p>{{ 'pptx.master.noNotesMaster' | translate }}</p>
|
|
89162
|
+
}
|
|
89070
89163
|
} @else {
|
|
89071
89164
|
@if (handoutMaster()) {
|
|
89072
89165
|
<section>
|
|
89073
89166
|
<strong>{{ 'pptx.master.handoutSlidesPerPage' | translate }}</strong>
|
|
89074
89167
|
<div class="counts">
|
|
89075
89168
|
@for (count of handoutCounts; track count) {
|
|
89076
|
-
<button
|
|
89169
|
+
<button
|
|
89170
|
+
type="button"
|
|
89171
|
+
[attr.aria-pressed]="handoutSlidesPerPage() === count"
|
|
89172
|
+
(click)="slidesPerPageChange.emit(count)"
|
|
89173
|
+
>
|
|
89174
|
+
{{ count }}
|
|
89175
|
+
</button>
|
|
89077
89176
|
}
|
|
89078
89177
|
</div>
|
|
89079
89178
|
</section>
|
|
89080
|
-
<ng-container
|
|
89081
|
-
|
|
89179
|
+
<ng-container
|
|
89180
|
+
[ngTemplateOutlet]="backgroundEditor"
|
|
89181
|
+
[ngTemplateOutletContext]="{ color: handoutMaster()!.backgroundColor || '#ffffff' }"
|
|
89182
|
+
/>
|
|
89183
|
+
} @else {
|
|
89184
|
+
<p>{{ 'pptx.master.noHandoutMaster' | translate }}</p>
|
|
89185
|
+
}
|
|
89082
89186
|
}
|
|
89083
89187
|
</div>
|
|
89084
89188
|
</aside>
|
|
@@ -89086,7 +89190,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.2", ngImpor
|
|
|
89086
89190
|
<ng-template #backgroundEditor let-color="color">
|
|
89087
89191
|
<label class="background-editor">
|
|
89088
89192
|
<span>{{ 'pptx.master.notesMasterBackground' | translate }}</span>
|
|
89089
|
-
<input
|
|
89193
|
+
<input
|
|
89194
|
+
type="color"
|
|
89195
|
+
[attr.aria-label]="'pptx.master.backgroundColorLabel' | translate"
|
|
89196
|
+
[value]="color"
|
|
89197
|
+
(input)="backgroundChange.emit($any($event.target).value)"
|
|
89198
|
+
/>
|
|
89090
89199
|
</label>
|
|
89091
89200
|
</ng-template>
|
|
89092
89201
|
`, styles: [".master-sidebar{display:flex;width:224px;min-height:0;flex-direction:column;border-right:1px solid var(--pptx-border, #33334d);background:var(--pptx-card, #1e1e2e)}header{display:flex;align-items:center;justify-content:space-between;padding:8px 12px}header strong{color:var(--pptx-muted-foreground, #a5a5b5);font-size:11px;text-transform:uppercase}header button{border:0;background:transparent;color:inherit;font-size:20px;cursor:pointer}.tabs{display:flex;padding:0 4px;border-bottom:1px solid var(--pptx-border, #33334d)}.tabs button{flex:1;padding:6px 3px;border:0;border-bottom:2px solid transparent;background:transparent;color:var(--pptx-muted-foreground, #a5a5b5);font-size:10px;cursor:pointer}.tabs button[aria-selected=true]{border-bottom-color:#f59e0b;color:#f59e0b}.body{flex:1;min-height:0;overflow:auto;padding:8px}.master-item{display:block;width:100%;margin-bottom:6px;padding:8px;border:1px solid transparent;border-radius:5px;background:transparent;color:inherit;text-align:left}.master-item.layout{width:calc(100% - 14px);margin-left:14px}.master-item[aria-pressed=true]{border-color:var(--pptx-primary, #6366f1)}section,.background-editor{display:flex;flex-direction:column;gap:8px;margin-bottom:12px;padding:10px;border:1px solid var(--pptx-border, #33334d);border-radius:6px}.counts{display:grid;grid-template-columns:repeat(3,1fr);gap:4px}.counts button[aria-pressed=true]{background:var(--pptx-primary, #6366f1);color:#fff}.background-editor input{width:100%;height:34px}\n"] }]
|
|
@@ -99425,7 +99534,9 @@ class PrintSettingsPanelComponent {
|
|
|
99425
99534
|
<div class="pptx-ng-print-settings">
|
|
99426
99535
|
<!-- Print What -->
|
|
99427
99536
|
<fieldset class="pptx-ng-print-settings__group">
|
|
99428
|
-
<legend class="pptx-ng-print-settings__legend">
|
|
99537
|
+
<legend class="pptx-ng-print-settings__legend">
|
|
99538
|
+
{{ 'pptx.print.printWhat' | translate }}
|
|
99539
|
+
</legend>
|
|
99429
99540
|
<div class="pptx-ng-print-settings__grid2">
|
|
99430
99541
|
@for (opt of printWhatOptions; track opt.value) {
|
|
99431
99542
|
<button
|
|
@@ -99463,7 +99574,9 @@ class PrintSettingsPanelComponent {
|
|
|
99463
99574
|
|
|
99464
99575
|
<!-- Slide range -->
|
|
99465
99576
|
<fieldset class="pptx-ng-print-settings__group">
|
|
99466
|
-
<legend class="pptx-ng-print-settings__legend">
|
|
99577
|
+
<legend class="pptx-ng-print-settings__legend">
|
|
99578
|
+
{{ 'pptx.print.slideRange' | translate }}
|
|
99579
|
+
</legend>
|
|
99467
99580
|
<div class="pptx-ng-print-settings__stack">
|
|
99468
99581
|
<button
|
|
99469
99582
|
type="button"
|
|
@@ -99491,7 +99604,9 @@ class PrintSettingsPanelComponent {
|
|
|
99491
99604
|
</button>
|
|
99492
99605
|
@if (settings().slideRange === 'custom') {
|
|
99493
99606
|
<div class="pptx-ng-print-settings__range">
|
|
99494
|
-
<span class="pptx-ng-print-settings__range-label">{{
|
|
99607
|
+
<span class="pptx-ng-print-settings__range-label">{{
|
|
99608
|
+
'pptx.print.from' | translate
|
|
99609
|
+
}}</span>
|
|
99495
99610
|
<input
|
|
99496
99611
|
class="pptx-ng-print-settings__number"
|
|
99497
99612
|
type="number"
|
|
@@ -99500,7 +99615,9 @@ class PrintSettingsPanelComponent {
|
|
|
99500
99615
|
[value]="settings().customRangeFrom"
|
|
99501
99616
|
(change)="onRangeChange($event, 'from')"
|
|
99502
99617
|
/>
|
|
99503
|
-
<span class="pptx-ng-print-settings__range-label">{{
|
|
99618
|
+
<span class="pptx-ng-print-settings__range-label">{{
|
|
99619
|
+
'pptx.print.to' | translate
|
|
99620
|
+
}}</span>
|
|
99504
99621
|
<input
|
|
99505
99622
|
class="pptx-ng-print-settings__number"
|
|
99506
99623
|
type="number"
|
|
@@ -99517,7 +99634,9 @@ class PrintSettingsPanelComponent {
|
|
|
99517
99634
|
<!-- Orientation (full-page slides only) -->
|
|
99518
99635
|
@if (settings().printWhat === 'slides') {
|
|
99519
99636
|
<fieldset class="pptx-ng-print-settings__group">
|
|
99520
|
-
<legend class="pptx-ng-print-settings__legend">
|
|
99637
|
+
<legend class="pptx-ng-print-settings__legend">
|
|
99638
|
+
{{ 'pptx.print.orientation' | translate }}
|
|
99639
|
+
</legend>
|
|
99521
99640
|
<div class="pptx-ng-print-settings__chips">
|
|
99522
99641
|
@for (o of orientationOptions; track o.value) {
|
|
99523
99642
|
<button
|
|
@@ -99535,7 +99654,9 @@ class PrintSettingsPanelComponent {
|
|
|
99535
99654
|
|
|
99536
99655
|
<!-- Colour mode -->
|
|
99537
99656
|
<fieldset class="pptx-ng-print-settings__group">
|
|
99538
|
-
<legend class="pptx-ng-print-settings__legend">
|
|
99657
|
+
<legend class="pptx-ng-print-settings__legend">
|
|
99658
|
+
{{ 'pptx.print.colorMode' | translate }}
|
|
99659
|
+
</legend>
|
|
99539
99660
|
<div class="pptx-ng-print-settings__chips">
|
|
99540
99661
|
@for (c of colorModeOptions; track c.value) {
|
|
99541
99662
|
<button
|
|
@@ -99568,7 +99689,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.2", ngImpor
|
|
|
99568
99689
|
<div class="pptx-ng-print-settings">
|
|
99569
99690
|
<!-- Print What -->
|
|
99570
99691
|
<fieldset class="pptx-ng-print-settings__group">
|
|
99571
|
-
<legend class="pptx-ng-print-settings__legend">
|
|
99692
|
+
<legend class="pptx-ng-print-settings__legend">
|
|
99693
|
+
{{ 'pptx.print.printWhat' | translate }}
|
|
99694
|
+
</legend>
|
|
99572
99695
|
<div class="pptx-ng-print-settings__grid2">
|
|
99573
99696
|
@for (opt of printWhatOptions; track opt.value) {
|
|
99574
99697
|
<button
|
|
@@ -99606,7 +99729,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.2", ngImpor
|
|
|
99606
99729
|
|
|
99607
99730
|
<!-- Slide range -->
|
|
99608
99731
|
<fieldset class="pptx-ng-print-settings__group">
|
|
99609
|
-
<legend class="pptx-ng-print-settings__legend">
|
|
99732
|
+
<legend class="pptx-ng-print-settings__legend">
|
|
99733
|
+
{{ 'pptx.print.slideRange' | translate }}
|
|
99734
|
+
</legend>
|
|
99610
99735
|
<div class="pptx-ng-print-settings__stack">
|
|
99611
99736
|
<button
|
|
99612
99737
|
type="button"
|
|
@@ -99634,7 +99759,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.2", ngImpor
|
|
|
99634
99759
|
</button>
|
|
99635
99760
|
@if (settings().slideRange === 'custom') {
|
|
99636
99761
|
<div class="pptx-ng-print-settings__range">
|
|
99637
|
-
<span class="pptx-ng-print-settings__range-label">{{
|
|
99762
|
+
<span class="pptx-ng-print-settings__range-label">{{
|
|
99763
|
+
'pptx.print.from' | translate
|
|
99764
|
+
}}</span>
|
|
99638
99765
|
<input
|
|
99639
99766
|
class="pptx-ng-print-settings__number"
|
|
99640
99767
|
type="number"
|
|
@@ -99643,7 +99770,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.2", ngImpor
|
|
|
99643
99770
|
[value]="settings().customRangeFrom"
|
|
99644
99771
|
(change)="onRangeChange($event, 'from')"
|
|
99645
99772
|
/>
|
|
99646
|
-
<span class="pptx-ng-print-settings__range-label">{{
|
|
99773
|
+
<span class="pptx-ng-print-settings__range-label">{{
|
|
99774
|
+
'pptx.print.to' | translate
|
|
99775
|
+
}}</span>
|
|
99647
99776
|
<input
|
|
99648
99777
|
class="pptx-ng-print-settings__number"
|
|
99649
99778
|
type="number"
|
|
@@ -99660,7 +99789,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.2", ngImpor
|
|
|
99660
99789
|
<!-- Orientation (full-page slides only) -->
|
|
99661
99790
|
@if (settings().printWhat === 'slides') {
|
|
99662
99791
|
<fieldset class="pptx-ng-print-settings__group">
|
|
99663
|
-
<legend class="pptx-ng-print-settings__legend">
|
|
99792
|
+
<legend class="pptx-ng-print-settings__legend">
|
|
99793
|
+
{{ 'pptx.print.orientation' | translate }}
|
|
99794
|
+
</legend>
|
|
99664
99795
|
<div class="pptx-ng-print-settings__chips">
|
|
99665
99796
|
@for (o of orientationOptions; track o.value) {
|
|
99666
99797
|
<button
|
|
@@ -99678,7 +99809,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.2", ngImpor
|
|
|
99678
99809
|
|
|
99679
99810
|
<!-- Colour mode -->
|
|
99680
99811
|
<fieldset class="pptx-ng-print-settings__group">
|
|
99681
|
-
<legend class="pptx-ng-print-settings__legend">
|
|
99812
|
+
<legend class="pptx-ng-print-settings__legend">
|
|
99813
|
+
{{ 'pptx.print.colorMode' | translate }}
|
|
99814
|
+
</legend>
|
|
99682
99815
|
<div class="pptx-ng-print-settings__chips">
|
|
99683
99816
|
@for (c of colorModeOptions; track c.value) {
|
|
99684
99817
|
<button
|
|
@@ -104993,7 +105126,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.2", ngImpor
|
|
|
104993
105126
|
}], propDecorators: { canEdit: [{ type: i0.Input, args: [{ isSignal: true, alias: "canEdit", required: false }] }], slideIndex: [{ type: i0.Input, args: [{ isSignal: true, alias: "slideIndex", required: false }] }], selectedElement: [{ type: i0.Input, args: [{ isSignal: true, alias: "selectedElement", required: false }] }] } });
|
|
104994
105127
|
|
|
104995
105128
|
// Generated by scripts/inline-shared.mjs from package.json. Do not edit.
|
|
104996
|
-
const PPTX_ANGULAR_VIEWER_VERSION = "2.19.
|
|
105129
|
+
const PPTX_ANGULAR_VIEWER_VERSION = "2.19.2";
|
|
104997
105130
|
|
|
104998
105131
|
/**
|
|
104999
105132
|
* account-page.component.ts: File > Account content.
|
|
@@ -119076,8 +119209,7 @@ class TableCellFormattingComponent {
|
|
|
119076
119209
|
<div class="pptx-tcf">
|
|
119077
119210
|
<div class="pptx-tcf__heading">
|
|
119078
119211
|
{{
|
|
119079
|
-
'pptx.table.cell'
|
|
119080
|
-
| translate: { row: sel()!.rowIndex + 1, col: sel()!.columnIndex + 1 }
|
|
119212
|
+
'pptx.table.cell' | translate: { row: sel()!.rowIndex + 1, col: sel()!.columnIndex + 1 }
|
|
119081
119213
|
}}
|
|
119082
119214
|
</div>
|
|
119083
119215
|
|
|
@@ -119191,10 +119323,20 @@ class TableCellFormattingComponent {
|
|
|
119191
119323
|
</div>
|
|
119192
119324
|
|
|
119193
119325
|
<div class="pptx-tcf__btns">
|
|
119194
|
-
<button
|
|
119326
|
+
<button
|
|
119327
|
+
type="button"
|
|
119328
|
+
class="pptx-tcf__btn"
|
|
119329
|
+
[disabled]="!canEdit()"
|
|
119330
|
+
(click)="onMergeRight()"
|
|
119331
|
+
>
|
|
119195
119332
|
{{ 'pptx.table.mergeRight' | translate }}
|
|
119196
119333
|
</button>
|
|
119197
|
-
<button
|
|
119334
|
+
<button
|
|
119335
|
+
type="button"
|
|
119336
|
+
class="pptx-tcf__btn"
|
|
119337
|
+
[disabled]="!canEdit()"
|
|
119338
|
+
(click)="onMergeDown()"
|
|
119339
|
+
>
|
|
119198
119340
|
{{ 'pptx.table.mergeDown' | translate }}
|
|
119199
119341
|
</button>
|
|
119200
119342
|
<button type="button" class="pptx-tcf__btn" [disabled]="!canEdit()" (click)="onSplit()">
|
|
@@ -119222,8 +119364,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.2", ngImpor
|
|
|
119222
119364
|
<div class="pptx-tcf">
|
|
119223
119365
|
<div class="pptx-tcf__heading">
|
|
119224
119366
|
{{
|
|
119225
|
-
'pptx.table.cell'
|
|
119226
|
-
| translate: { row: sel()!.rowIndex + 1, col: sel()!.columnIndex + 1 }
|
|
119367
|
+
'pptx.table.cell' | translate: { row: sel()!.rowIndex + 1, col: sel()!.columnIndex + 1 }
|
|
119227
119368
|
}}
|
|
119228
119369
|
</div>
|
|
119229
119370
|
|
|
@@ -119337,10 +119478,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.2", ngImpor
|
|
|
119337
119478
|
</div>
|
|
119338
119479
|
|
|
119339
119480
|
<div class="pptx-tcf__btns">
|
|
119340
|
-
<button
|
|
119481
|
+
<button
|
|
119482
|
+
type="button"
|
|
119483
|
+
class="pptx-tcf__btn"
|
|
119484
|
+
[disabled]="!canEdit()"
|
|
119485
|
+
(click)="onMergeRight()"
|
|
119486
|
+
>
|
|
119341
119487
|
{{ 'pptx.table.mergeRight' | translate }}
|
|
119342
119488
|
</button>
|
|
119343
|
-
<button
|
|
119489
|
+
<button
|
|
119490
|
+
type="button"
|
|
119491
|
+
class="pptx-tcf__btn"
|
|
119492
|
+
[disabled]="!canEdit()"
|
|
119493
|
+
(click)="onMergeDown()"
|
|
119494
|
+
>
|
|
119344
119495
|
{{ 'pptx.table.mergeDown' | translate }}
|
|
119345
119496
|
</button>
|
|
119346
119497
|
<button type="button" class="pptx-tcf__btn" [disabled]="!canEdit()" (click)="onSplit()">
|
|
@@ -124612,8 +124763,7 @@ class SlideDefaultInspectorComponent {
|
|
|
124612
124763
|
[attr.placeholder]="'pptx.viewer.speakerNotesPlaceholder' | translate"
|
|
124613
124764
|
(change)="canvasEditing.onSlideNotes($event)"
|
|
124614
124765
|
(blur)="canvasEditing.onSlideNotes($event)"
|
|
124615
|
-
>{{ sl.notes || '' }}</textarea
|
|
124616
|
-
>
|
|
124766
|
+
>{{ sl.notes || '' }}</textarea>
|
|
124617
124767
|
</label>
|
|
124618
124768
|
</section>
|
|
124619
124769
|
}
|
|
@@ -124700,8 +124850,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.2", ngImpor
|
|
|
124700
124850
|
[attr.placeholder]="'pptx.viewer.speakerNotesPlaceholder' | translate"
|
|
124701
124851
|
(change)="canvasEditing.onSlideNotes($event)"
|
|
124702
124852
|
(blur)="canvasEditing.onSlideNotes($event)"
|
|
124703
|
-
>{{ sl.notes || '' }}</textarea
|
|
124704
|
-
>
|
|
124853
|
+
>{{ sl.notes || '' }}</textarea>
|
|
124705
124854
|
</label>
|
|
124706
124855
|
</section>
|
|
124707
124856
|
}
|
|
@@ -129433,7 +129582,9 @@ class SetUpSlideShowDialogComponent {
|
|
|
129433
129582
|
|
|
129434
129583
|
<!-- Advance slides -->
|
|
129435
129584
|
<fieldset class="pptx-ng-sss-fieldset">
|
|
129436
|
-
<legend class="pptx-ng-sss-legend">
|
|
129585
|
+
<legend class="pptx-ng-sss-legend">
|
|
129586
|
+
{{ 'pptx.slideShow.advanceSlides' | translate }}
|
|
129587
|
+
</legend>
|
|
129437
129588
|
<label class="pptx-ng-sss-option">
|
|
129438
129589
|
<input
|
|
129439
129590
|
type="radio"
|
|
@@ -129465,11 +129616,7 @@ class SetUpSlideShowDialogComponent {
|
|
|
129465
129616
|
<button type="button" class="pptx-ng-sss-btn" (click)="onClose()">
|
|
129466
129617
|
{{ 'pptx.common.cancel' | translate }}
|
|
129467
129618
|
</button>
|
|
129468
|
-
<button
|
|
129469
|
-
type="button"
|
|
129470
|
-
class="pptx-ng-sss-btn pptx-ng-sss-btn-primary"
|
|
129471
|
-
(click)="onOk()"
|
|
129472
|
-
>
|
|
129619
|
+
<button type="button" class="pptx-ng-sss-btn pptx-ng-sss-btn-primary" (click)="onOk()">
|
|
129473
129620
|
{{ 'pptx.common.ok' | translate }}
|
|
129474
129621
|
</button>
|
|
129475
129622
|
</div>
|
|
@@ -129538,7 +129685,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.2", ngImpor
|
|
|
129538
129685
|
|
|
129539
129686
|
<!-- Advance slides -->
|
|
129540
129687
|
<fieldset class="pptx-ng-sss-fieldset">
|
|
129541
|
-
<legend class="pptx-ng-sss-legend">
|
|
129688
|
+
<legend class="pptx-ng-sss-legend">
|
|
129689
|
+
{{ 'pptx.slideShow.advanceSlides' | translate }}
|
|
129690
|
+
</legend>
|
|
129542
129691
|
<label class="pptx-ng-sss-option">
|
|
129543
129692
|
<input
|
|
129544
129693
|
type="radio"
|
|
@@ -129570,11 +129719,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.2", ngImpor
|
|
|
129570
129719
|
<button type="button" class="pptx-ng-sss-btn" (click)="onClose()">
|
|
129571
129720
|
{{ 'pptx.common.cancel' | translate }}
|
|
129572
129721
|
</button>
|
|
129573
|
-
<button
|
|
129574
|
-
type="button"
|
|
129575
|
-
class="pptx-ng-sss-btn pptx-ng-sss-btn-primary"
|
|
129576
|
-
(click)="onOk()"
|
|
129577
|
-
>
|
|
129722
|
+
<button type="button" class="pptx-ng-sss-btn pptx-ng-sss-btn-primary" (click)="onOk()">
|
|
129578
129723
|
{{ 'pptx.common.ok' | translate }}
|
|
129579
129724
|
</button>
|
|
129580
129725
|
</div>
|
|
@@ -137986,4 +138131,4 @@ function cn(...values) {
|
|
|
137986
138131
|
*/
|
|
137987
138132
|
|
|
137988
138133
|
export { CommentsPanelComponent as $, ALIGN_OPTIONS as A, AnimationPlaybackService as B, AutosaveRecoveryDialogComponent as C, AutosaveService as D, BroadcastDialogComponent as E, CHART_EDITOR_STYLES as F, CURSOR_PALETTE as G, CanvasFitService as H, ChartAxisOptionsComponent as I, ChartAxisStyleOptionsComponent as J, ChartComboTypeOptionsComponent as K, ChartDataEditorComponent as L, ChartDataLabelOptionsComponent as M, ChartDatapointMarkerOptionsComponent as N, ChartDatapointOptionsComponent as O, ChartDisplayOptionsComponent as P, ChartElementViewComponent as Q, ChartErrorBarOptionsComponent as R, ChartMarkerOptionsComponent as S, ChartPartSelectionService as T, ChartPrimitivesComponent as U, ChartRendererComponent as V, ChartTrendlineOptionsComponent as W, CollaborationCursorsComponent as X, CollaborationService as Y, ColorChangedImageComponent as Z, CommentMarkersOverlayComponent as _, ANIMATION_PRESET_CATEGORIES as a, InspectorPanelComponent as a$, CommentsService as a0, ComparePanelComponent as a1, ConnectorRendererComponent as a2, ConnectorTextOverlayComponent as a3, CustomShowsComponent as a4, DATA_TABLE_HEADER_H as a5, DATA_TABLE_KEY_W as a6, DATA_TABLE_PADDING as a7, DATA_TABLE_ROW_H as a8, DEFAULT_BOUNDS as a9, EditorToolbarComponent as aA, EffectsPanelComponent as aB, ElementRendererComponent as aC, EmbeddedFontsService as aD, EncryptedFileDialogComponent as aE, EquationEditorDialogComponent as aF, EquationRendererComponent as aG, EquationTemplateGalleryComponent as aH, ExportProgressModalComponent as aI, ExportService as aJ, FieldContextService as aK, FindBarComponent as aL, FindReplaceBarComponent as aM, FollowModeBarComponent as aN, FontEmbeddingListComponent as aO, FontEmbeddingPanelComponent as aP, GALLERY_THEME_PRESETS as aQ, GRIDLINE_COLOR as aR, GradientPickerComponent as aS, HANDOUT_OPTIONS as aT, HeaderFooterDialogComponent as aU, HyperlinkDialogComponent as aV, ImagePropertiesPanelComponent as aW, InkDrawingService as aX, InkRendererComponent as aY, InsertSmartArtDialogComponent as aZ, InspectorPaneHeaderComponent as a_, DEFAULT_BROADCAST_SERVER_URL as aa, DEFAULT_CANVAS_HEIGHT as ab, DEFAULT_CANVAS_WIDTH as ac, DEFAULT_COLOR_SCHEME as ad, DEFAULT_FILL_COLOR$1 as ae, DEFAULT_LAYOUT as af, DEFAULT_PALETTE$1 as ag, DEFAULT_PATTERN_FILL_PRESET as ah, DEFAULT_PRINT_SETTINGS as ai, DEFAULT_SLIDE_BACKGROUND as aj, DEFAULT_STROKE_COLOR as ak, DEFAULT_STYLE as al, DEFAULT_TABLE_ROW_HEIGHT as am, DEFAULT_TEXT_COLOR$1 as an, DEFAULT_VIEWER_PROFILE as ao, DIRECTIONAL_PRESETS as ap, DIRECTION_OPTIONS as aq, DocumentPropertiesCardComponent as ar, EMBEDDED_FONTS_STYLE_ID as as, EMPHASIS_PRESETS as at, ENTRANCE_PRESETS as au, TEMPLATES as av, EXIT_PRESETS as aw, EditorContextMenuComponent as ax, EditorHistory as ay, EditorStateService as az, AUDIENCE_HASH as b, RibbonComponent as b$, IsMobileService as b0, KeepAnnotationsDialogComponent as b1, LOCALE_CATALOG as b2, LONG_PRESS_DURATION_MS as b3, LONG_PRESS_MOVE_TOLERANCE_PX as b4, LoadContentService as b5, LocalPresencePublisher as b6, MAX_ZOOM_SCALE as b7, MIN_ZOOM_SCALE as b8, MOTION_PATH_COLUMNS as b9, PasswordStrengthMeterComponent as bA, PowerPointViewerComponent as bB, PresentToolbarAutoHide as bC, PresentationAnnotationOverlayComponent as bD, PresentationAnnotationsService as bE, PresentationOverlayComponent as bF, PresentationPropertiesPanelComponent as bG, PresentationSettingsCardComponent as bH, PresentationSubtitleBarComponent as bI, PresentationToolbarComponent as bJ, PresentationTransitionOverlayComponent as bK, PresenterViewComponent as bL, PresenterWindowService as bM, PrintDialogComponent as bN, PrintService as bO, PrintSettingsPanelComponent as bP, PropertiesDialogComponent as bQ, REPEAT_MODE_OPTIONS as bR, RESIZE_HANDLES as bS, RULER_FONT_SIZE as bT, RULER_THICKNESS as bU, ReadingViewOverlayComponent as bV, RemoteSelectionOverlayComponent as bW, RibbonAnimationGalleryComponent as bX, RibbonAnimationsSectionComponent as bY, RibbonArrangeSectionComponent as bZ, RibbonColorPopoverComponent as b_, MediaPreviewComponent as ba, MediaPropertiesPanelComponent as bb, MediaRendererComponent as bc, MediaTrimTimelineComponent as bd, MobileBottomBarComponent as be, MobileMenuSheetComponent as bf, MobilePresenterViewComponent as bg, MobileSheetComponent as bh, MobileSlidesSheetComponent as bi, MobileToolbarComponent as bj, ModalDialogComponent as bk, Model3DRendererComponent as bl, NotesHandoutCardComponent as bm, NotesPanelComponent as bn, NotesToolbarComponent as bo, OleRendererComponent as bp, OutlineViewOverlayComponent as bq, POWER_POINT_VIEWER_PROVIDERS as br, PPTX_OPEN_ACCEPT as bs, PRESENTATION_OPEN_EXTENSIONS as bt, PRESENTER_CHANNEL_NAME as bu, PRESENTER_MSG_ORIGIN as bv, PRESENTER_TIMER_SEGMENT_MS as bw, PX_PER_CM as bx, PX_PER_INCH as by, PasswordProtectionDialogComponent as bz, AUDIENCE_NONCE_KEY as c, TEXT_3D_TOP_BEVEL_KEYS as c$, RibbonDesignSectionComponent as c0, RibbonDrawSectionComponent as c1, RibbonDrawingGroupComponent as c2, RibbonEditingSectionComponent as c3, RibbonFileSectionComponent as c4, RibbonFontControlsComponent as c5, RibbonHomeSectionComponent as c6, RibbonHyperlinkButtonComponent as c7, RibbonInsertFieldsComponent as c8, RibbonInsertSectionComponent as c9, SettingsLanguageTabComponent as cA, ShareDialogComponent as cB, ShortcutPanelComponent as cC, ShowOptionsFieldsetComponent as cD, ShowSlidesFieldsetComponent as cE, SignatureStrippedDialogComponent as cF, SignaturesPanelComponent as cG, SignaturesService as cH, SlideBackgroundCardComponent as cI, SlideCanvasComponent as cJ, SlideDefaultInspectorComponent as cK, SlideDiffChangesComponent as cL, SlideDiffRowComponent as cM, SlideDiffThumbnailsComponent as cN, SlideSizeCardComponent as cO, SlideSorterOverlayComponent as cP, SlideThemeOverridePanelComponent as cQ, SlideTransitionCardComponent as cR, SlidesPanelComponent as cS, SmartArt3DRendererComponent as cT, SmartArt3DService as cU, SmartArtPreviewComponent as cV, SmartArtPropertiesComponent as cW, SmartArtRendererComponent as cX, StatusBarComponent as cY, TABLE_STRUCTURE_TOGGLES as cZ, TEXT_3D_BOTTOM_BEVEL_KEYS as c_, RibbonMotionPathGalleryComponent as ca, RibbonParagraphControlsComponent as cb, RibbonPrimaryRowComponent as cc, RibbonReviewSectionComponent as cd, RibbonShapeExtrasComponent as ce, RibbonSlideshowSectionComponent as cf, RibbonTransitionsSectionComponent as cg, RibbonViewSectionComponent as ch, RulerGuidesService as ci, SEQUENCE_OPTIONS as cj, SEVERITY_GROUPS as ck, SEVERITY_LABELS as cl, SHORTCUT_REFERENCE_ITEMS as cm, SLIDE_TRANSITION_KEYFRAMES as cn, DEFAULT_PALETTE as co, PALETTES$1 as cp, SMART_ART_COLOR_SCHEMES as cq, SMART_ART_STYLE_OPTIONS as cr, SUB_ITEM_LABEL as cs, SVG_WARP_PRESETS as ct, SWIPE_MAX_VERTICAL_PX as cu, SWIPE_THRESHOLD_PX as cv, SelectionPaneComponent as cw, SetUpSlideShowDialogComponent as cx, SettingsAppearanceTabComponent as cy, SettingsDialogComponent as cz, AVATAR_COLOR_SWATCHES as d, animationPresetLabelKey as d$, TEXT_DIRECTION_OPTIONS$1 as d0, THEME_CATALOG as d1, TIMING_CURVE_OPTIONS as d2, TRIGGER_OPTIONS as d3, TYPE_LABELS as d4, TableCellAdvancedFillComponent as d5, TableCellFormattingComponent as d6, TableDataEditorComponent as d7, TablePropertiesComponent as d8, TableRendererComponent as d9, ViewerFileIOService as dA, ViewerFindReplaceService as dB, ViewerFormatPainterService as dC, ViewerInspectorPanelService as dD, ViewerKeyboardService as dE, ViewerMobileSheetService as dF, ViewerPresentationModeService as dG, ViewerThemeGalleryService as dH, ViewerTouchGesturesService as dI, ViewerZoomService as dJ, WEBM_MIME_CANDIDATES as dK, WriteBackScheduler as dL, ZERO_LINE_COLOR as dM, ZoomNavigationService as dN, ZoomRendererComponent as dO, ZoomTargetService as dP, addCategory as dQ, addCommentToList as dR, addGradientStopPatch as dS, addItem as dT, addSeries as dU, addSubItem as dV, advanceStep as dW, affordanceElements as dX, aiToggleVisible as dY, alignPatch as dZ, animationFor as d_, TableResizeOverlayComponent as da, TableSelectionService as db, TagsCardComponent as dc, Text3DBevelSectionComponent as dd, Text3DPanelComponent as de, TextAdvancedPanelComponent as df, ThemeEditorFieldsComponent as dg, ThemeGalleryComponent as dh, ThemeSelectorCardComponent as di, TitleBarComponent as dj, TitleBarSearchComponent as dk, TransitionDirectionPickerComponent as dl, TransitionPreviewComponent as dm, VALIGN_OPTIONS as dn, VIEWER_THEME as dp, VersionHistoryPanelComponent as dq, ViewerCanvasEditingService as dr, ViewerCollabCursorService as ds, ViewerCollaborationSessionService as dt, ViewerCompareService as du, ViewerCustomShowsService as dv, ViewerDialogsService as dw, ViewerDocumentPropertiesService as dx, ViewerExportService as dy, ViewerExtraDialogsComponent as dz, AXIS_LABEL_COLOR as e, buildWaterfallViewModel as e$, annotationMapToInkInserts as e0, applyAcceptedDiff as e1, applyAnimationPreset as e2, applyFindReplacements as e3, applyFormatToElement as e4, applyMove as e5, applyResize as e6, asMediaElement as e7, assignUserColor as e8, attachShowVisibilityPause as e9, buildEquationSegment as eA, buildFallbackViewModel as eB, buildFontFaceRule as eC, buildGradientFillCss as eD, buildGridlinesAndLabels as eE, buildHyperlinkPatch as eF, buildInkContainerStyle as eG, buildInkStrokes as eH, buildLegend as eI, buildMarkTooltip as eJ, buildModel3DContainerStyle as eK, buildModel3DViewModel as eL, buildOleActionModel as eM, buildOleInfoRows as eN, buildPatternFillCss as eO, buildPrintHtmlDocument as eP, buildPropertiesPatch as eQ, buildRegionMapViewModel as eR, buildSaveSlides as eS, buildShareUrl as eT, buildSmartArtInsertElement as eU, buildSmartArtNodes as eV, buildStockViewModel as eW, buildSurfaceViewModel as eX, buildTableViewModel as eY, buildTreemapViewModel as eZ, buildTrimFragment as e_, attachTouchGestures as ea, axisTickValues as eb, beginNodeEdit as ec, bevelSizePatch as ed, boolFromEvent as ee, bringForward as ef, bringToFront as eg, buildBarActions as eh, buildBroadcastConfig as ei, buildBroadcastViewerUrl as ej, buildCategoryLabels as ek, buildCellParagraphs as el, buildChartViewModel as em, buildChatLogExport as en, buildChatLogMarkdown as eo, buildChromeStyle as ep, buildClearHyperlinkPatch as eq, buildClickGroups as er, buildColStyles as es, buildCollaborationConfig as et, buildComboViewModel as eu, buildCssGradientFromShapeStyle as ev, buildDuotoneFilter as ew, buildDuotoneFilterId as ex, buildEmbeddedFontStyles as ey, buildEquationElement as ez, AccessibilityPanelComponent as f, computeScatterXDomain as f$, buildZeroLine as f0, buildZoomContainerStyle as f1, buildZoomViewModel as f2, bulletIndentPx as f3, canAddTopLevelNode as f4, canGroupSelection as f5, canRemoveTopLevelNode as f6, canSetStrokeWidth as f7, canStartBroadcast as f8, canStartShare as f9, commitNodeText as fA, computeAlign as fB, computeAxisTitlePrimitives as fC, computeBarRects as fD, computeBubbleRadius as fE, computeCornerHandle as fF, computeDataTablePrimitives as fG, computeDistribute as fH, computeDrawingViewBox as fI, computeErrorBarPrimitives as fJ, computeFocusTargets as fK, computeHandleBoxes as fL, computeHandoutLayout as fM, computeIsMobile as fN, computeIsTablet as fO, computeLinePoints as fP, computeLinearRegression as fQ, computePageCount as fR, computePieLayout as fS, computePieSlicePath as fT, computePieSlices as fU, computePlotLayout as fV, computeRSquared as fW, computeRadarPoints as fX, computeResizeHandleBoxes as fY, computeRotateHandleBox as fZ, computeScatterDots as f_, canUngroupSelection as fa, canUseClipboard as fb, captionDisplayText as fc, cellRunStyle as fd, cellStyleToStyleMap as fe, cellTdStyle as ff, changeCountLabel as fg, changeIcon as fh, characterSpacingPatch as fi, chartPreserveAspectRatio as fj, checkFontAvailable as fk, clampCursorPosition as fl, clampGifDimensions as fm, clampIndex as fn, clampNotesFontSize as fo, clampScale as fp, clampStep as fq, clearAllLocalViewerData as fr, clearAudienceContent as fs, cn as ft, collectAccessibilityIssues as fu, collectElementText as fv, collectSlideText as fw, collectStoredChats as fx, collectUsedFontFamilies as fy, columnWidthStyle as fz, AccessibilityService as g, formatCursorLabel as g$, computeSelectionBoxes as g0, computeSingleSelected as g1, computeSlideIndices as g2, computeSnap as g3, computeStackedBarRects as g4, computeStackedValueRange as g5, computeTrendlinePrimitives as g6, computeValueRange as g7, convertOmmlToMathMl as g8, copyFormatFromElement as g9, durationOf as gA, effectsStateOf as gB, enableGlowPatch as gC, enableInnerShadowPatch as gD, enableOuterShadowPatch as gE, enableReflectionPatch as gF, enableSoftEdgePatch as gG, encodeGif as gH, endShowMediaCleanup as gI, estimatePageCount as gJ, exitPresentationFullscreen as gK, exportAiChatLogs as gL, extractPathPoints as gM, eyedropperAvailable as gN, fillColorOf$1 as gO, findInSlides as gP, findOwningSlideIndex as gQ, findSlideIndexByElementId as gR, firstVisibleIndex as gS, fitPolynomial as gT, fitZoom as gU, focusTargetChips as gV, fontMimeForFormat as gW, fontSizeOf as gX, forgetSessionDeck as gY, formatAxisValue as gZ, formatBytes as g_, countAccessibilityIssues as ga, countAnnotationStrokes as gb, createAngularAiBridge as gc, createCustomShow as gd, createSwipeDismissDrag as ge, createWebrtcBundle as gf, createWebsocketBundle as gg, cssObjectToStyleMap as gh, currentColorScheme as gi, currentLayout as gj, currentStyle as gk, defaultCssVars as gl, defaultRadius as gm, defaultThemeColors as gn, deleteElementsByIds as go, deleteVersion as gp, demoteNode as gq, deriveModel3DBlobUrl as gr, derivePresenceList as gs, describeSmartArtBounds as gt, disableGlowPatch as gu, disableInnerShadowPatch as gv, disableOuterShadowPatch as gw, disableReflectionPatch as gx, disableSoftEdgePatch as gy, duplicateElementById as gz, AccountPageComponent as h, isLegacyBinaryPresentation as h$, formatElapsed as h0, formatFileSize as h1, formatPropertyDate as h2, formatTime as h3, fpsToFrameIntervalMs as h4, generateBroadcastRoomId as h5, generateCommentId as h6, generateCustomShowId as h7, generatePressureCircles as h8, generateTicks as h9, getWarpCategory as hA, getWarpPath as hB, gradientStateFromStyle as hC, gradientStateOf as hD, gradientStatePatch as hE, gridColumns as hF, groupIssuesBySeverity as hG, hasAnimation as hH, hasCopyableFormat as hI, hasExistingLink as hJ, hasExitedFullscreen as hK, hasGradientFill as hL, hasPressureVariation as hM, hasVisibleSlideAfter as hN, headerLabel as hO, imageDimensions as hP, inkViewBox as hQ, insertTableElementColumn as hR, insertTableElementRow as hS, interpolateWidth as hT, isAudienceTab as hU, isBold as hV, isBrowserOpenableMime as hW, isChildNode as hX, isElementInteractive as hY, isInjectableUrl as hZ, isItalic as h_, getClrChangeParams as ha, getContainerStyle as hb, getDuotoneFilterDef as hc, getImageSrc as hd, getLocalStorageUsageSummary as he, getOleAriaLabel as hf, getOleBadgeLabel as hg, getOleDisplayName as hh, getOleDownloadFileName as hi, getOleTypeColor as hj, getOleTypeLabel as hk, getPasswordStrength as hl, getPatternSvg as hm, getPlaceholderStyle as hn, getVersions as ho, getResolvedShapeClipPath as hp, getResolvedShapeClipPathFor as hq, getSessionTabId as hr, getShapeFillStrokeStyle as hs, getSlideBackgroundStyle as ht, getSlideTransitionAnimations as hu, getSmartArtNodeBounds as hv, getSpeechRecognitionCtor as hw, getTextBlockStyle as hx, getTextWarp as hy, getTouchDistance as hz, ActionSettingsPanelComponent as i, partitionSlides as i$, isPpactionUrl as i0, isPresenterMessage as i1, isSigned as i2, isSupportedPresentationFile as i3, isTextElement as i4, isTwoTableFocus as i5, isUnderline as i6, isUrlSafe as i7, isValidRoomId as i8, isViewportBackgroundPressTarget as i9, narrowToRect as iA, newChartElement as iB, newEquationElement as iC, newPresetShapeElement as iD, newShapeElement as iE, newSmartArtElement as iF, newTableElement as iG, newTextElement as iH, nextVisibleIndex as iI, nodeBold as iJ, nodeEditBox as iK, nodeFillColor as iL, nodeFontColor as iM, nodeIdFromKey as iN, nodeItalic as iO, nodeStyle as iP, normalizeFontFormat as iQ, normalizeSlidesPerPage as iR, normalizeValue as iS, numFromEvent as iT, ommlToMathml as iU, ooxmlDashToCssBorderStyle as iV, openNativeEyeDropper as iW, overallStatus as iX, paletteColor as iY, parseAudienceNonce as iZ, parseNodeTextarea as i_, isZoomActivationKey as ia, issueTrackKey as ib, issueTypeLabel as ic, keyToLabel as id, lastVisibleIndex as ie, latexToMathml as ig, layoutConnectorPaints as ih, layoutNodeLabels as ii, linePointsToSvgString as ij, lineSpacingPatch as ik, loadAudienceContent as il, loadSessionDeck as im, mediaFallbackFor as io, mediaSurfaceFor as ip, mergeCaptionResults as iq, mergeDown as ir, mergeRight as is, mergeSelection as it, moveElementBy as iu, moveNodeDown as iv, moveNodeUp as iw, msToFrameDelayCs as ix, narrowToCircle as iy, narrowToPolygon as iz, AdvancedChartEditorComponent as j, rowStyle as j$, patchChartData as j0, patchChartStyle as j1, patchTableData as j2, patchTextStyle as j3, patternPresetOptions as j4, pendingElementStyles as j5, pickColorByClickFallback as j6, pickFile as j7, pickSupportedMimeType as j8, planGifFrames as j9, removeTableElementRow as jA, removeSeries as jB, renderToCanvas as jC, reorderAnimationDown as jD, reorderAnimationUp as jE, replaceInSlides as jF, replaceMatch as jG, requestPresentationFullscreen as jH, resizeElement as jI, resolveCaptionTracks as jJ, resolveChartKind as jK, resolveFontVariant as jL, resolveHyperlinkHref as jM, resolveInteractiveElementId as jN, resolveMediaSrc as jO, resolveOleType as jP, resolveParagraphBullet as jQ, resolvePresenterNotes as jR, resolveProfileInitial as jS, resolveRegionCode as jT, resolveSlideAutoAdvanceMs as jU, resolvePalette as jV, resolveThemeCatalogEntry as jW, resolveTransitionDuration as jX, restoreSessionDeck as jY, revealedElementStyles as jZ, routeOrthogonalConnector as j_, planVideoSegments as ja, pointsToSvgPathD as jb, presenceToCursors as jc, presentationBaseName as jd, presentationStageStyle as je, presenterTimerProgress as jf, presetByLayout as jg, presetsForCategory as jh, pressuresToWidths as ji, prevVisibleIndex as jj, projectDrawingShapes as jk, promoteNode as jl, provideViewerTheme as jm, radarAngle as jn, radarRingPoints as jo, readAsDataUrl as jp, recordWebm as jq, registerCrossSlideAudio as jr, rememberSessionDeck as js, removeAnimation as jt, removeCategory as ju, removeTableElementColumn as jv, removeCommentFromList as jw, removeElementAnimation as jx, removeGradientStopPatch as jy, removeNode as jz, AiChangeOverlayComponent as k, shouldUseSvgWarp as k$, rulerDragToGuidePosition as k0, rulerHighlight as k1, rulerStripTicks as k2, sampleColorFromSlide as k3, sanitizeColor as k4, sanitizeSlideIndex as k5, sanitizeUserName as k6, saveViewerProfile as k7, savedPresentationFileName as k8, scanAvailableFonts as k9, setDelay as kA, setDirection as kB, setDuration as kC, setElementPosition as kD, setGridlineStyle as kE, setLayout as kF, setLegend as kG, setNodeStyle as kH, setNodeText as kI, setRepeatCount as kJ, setRepeatMode as kK, setSequence as kL, setSeriesChartType as kM, setSeriesColor as kN, setSeriesErrorBars as kO, setSeriesMarker as kP, setSeriesName as kQ, setSeriesTrendline as kR, setSeriesValue as kS, setStyle as kT, setTimingCurve as kU, setTitle as kV, setTrigger as kW, setTriggerShapeId as kX, shapeStylePatch$1 as kY, sheetAfterNavigate as kZ, shouldBlockClickAdvance as k_, searchSlides as ka, seedBroadcastFields as kb, seedHyperlinkDraft as kc, seedPropertiesDraft as kd, seedShareFields as ke, segmentFrameCount as kf, selectValue$2 as kg, sendBackward as kh, sendToBack as ki, sequentialColorScale as kj, serializeWriteBack as kk, seriesColor as kl, setAnimationEmphasis as km, setAnimationEntrance as kn, setAnimationExit as ko, setAxis as kp, setAxisLogScale as kq, setAxisTitleStyle as kr, setCategoryLabel as ks, setCellText as kt, setColorScheme as ku, setDataLabels as kv, setDataPointExplosion as kw, setDataPointFill as kx, setDataPointLabel as ky, setDataPointMarker as kz, AiChatPanelComponent as l, showDirectionPicker as l0, showsTemplateAffordance as l1, signatureCountLabel as l2, signatureKey as l3, signatureTimestamp as l4, signerName as l5, statusLabel as l6, slideNumberOf as l7, slidesWithReappliedLayout as l8, smartArtNodes as l9, toggleSheet as lA, topLevelNodeCount as lB, transformSelectedTextCase as lC, translationsEn as lD, updateElementById as lE, updateGlowPatch as lF, updateGradientStopPatch as lG, updateInnerShadowPatch as lH, updateOuterShadowPatch as lI, updateReflectionPatch as lJ, vAlignPatch as lK, validatePassword as lL, validatePrintSettings as lM, validateRoomId as lN, valueToY as lO, vermilionDarkColors as lP, vermilionDarkTheme as lQ, vermilionLightColors as lR, vermilionLightTheme as lS, vermilionRadius as lT, waypointsToPathD as lU, worstStatus as lV, zoomTargetSlideIndex as lW, paletteColour as la, snapToGridStep as lb, splitCursorCell as lc, splitMergedCell as ld, statusKind as le, statusLabel$1 as lf, storeAudienceContent as lg, stringFromEvent$5 as lh, strokeColorOf as li, strokeToInkElement as lj, strokeWidthOf as lk, styleShadowFilter as ll, textAdvancedPatch as lm, textAdvancedStateFromStyle as ln, textAdvancedStateOf as lo, textColorOf as lp, textDirectionPatch as lq, textStyleOf as lr, textStylePatch as ls, themeStyle as lt, themeToCssVars as lu, thumbnailHeight as lv, thumbnailZoom as lw, toggleCommentResolvedInList as lx, toggleNodeBold as ly, toggleNodeItalic as lz, AiChatService as m, AiComposerComponent as n, AiFocusBarComponent as o, AiFocusHighlightOverlayComponent as p, AiHistoryMenuComponent as q, AiHistoryService as r, AiMessageListComponent as s, toChatSummary as t, AiPanelStore as u, AiProposalCardComponent as v, AiSettingsSectionComponent as w, AiToolCallCardComponent as x, AnimationAuthorPanelComponent as y, AnimationPanelComponent as z };
|
|
137989
|
-
//# sourceMappingURL=pptx-angular-viewer-pptx-angular-viewer-
|
|
138134
|
+
//# sourceMappingURL=pptx-angular-viewer-pptx-angular-viewer-B9V8UhEb.mjs.map
|