pptx-angular-viewer 2.19.2 → 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 +7 -0
- package/fesm2022/{pptx-angular-viewer-chat-history-idb-Dhq4bg3C.mjs → pptx-angular-viewer-chat-history-idb-CsK-I05g.mjs} +2 -2
- package/fesm2022/{pptx-angular-viewer-chat-history-idb-Dhq4bg3C.mjs.map → pptx-angular-viewer-chat-history-idb-CsK-I05g.mjs.map} +1 -1
- package/fesm2022/{pptx-angular-viewer-pptx-angular-viewer-Dp3kBdl8.mjs → pptx-angular-viewer-pptx-angular-viewer-B9V8UhEb.mjs} +203 -63
- package/fesm2022/{pptx-angular-viewer-pptx-angular-viewer-Dp3kBdl8.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
|
@@ -71285,7 +71285,7 @@ function createLocalStorageBackend(namespace) {
|
|
|
71285
71285
|
/** Try IndexedDB first; fall back to localStorage on any failure. */
|
|
71286
71286
|
async function resolveBackend(dbName, namespace) {
|
|
71287
71287
|
try {
|
|
71288
|
-
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');
|
|
71289
71289
|
const db = await openChatDb(dbName);
|
|
71290
71290
|
return createIdbBackend(db);
|
|
71291
71291
|
}
|
|
@@ -88982,11 +88982,22 @@ class MasterViewSidebarComponent {
|
|
|
88982
88982
|
<aside class="master-sidebar" [attr.aria-label]="'pptx.view.masterViews' | translate">
|
|
88983
88983
|
<header>
|
|
88984
88984
|
<strong>{{ titleKey() | translate }}</strong>
|
|
88985
|
-
<button
|
|
88985
|
+
<button
|
|
88986
|
+
type="button"
|
|
88987
|
+
(click)="close.emit()"
|
|
88988
|
+
[attr.aria-label]="'pptx.mode.closeMasterViewTooltip' | translate"
|
|
88989
|
+
>
|
|
88990
|
+
×
|
|
88991
|
+
</button>
|
|
88986
88992
|
</header>
|
|
88987
88993
|
<div class="tabs" role="tablist" [attr.aria-label]="'pptx.mode.masterView' | translate">
|
|
88988
88994
|
@for (item of tabs; track item.tab) {
|
|
88989
|
-
<button
|
|
88995
|
+
<button
|
|
88996
|
+
type="button"
|
|
88997
|
+
role="tab"
|
|
88998
|
+
[attr.aria-selected]="tab() === item.tab"
|
|
88999
|
+
(click)="tabChange.emit(item.tab)"
|
|
89000
|
+
>
|
|
88990
89001
|
{{ item.key | translate }}
|
|
88991
89002
|
</button>
|
|
88992
89003
|
}
|
|
@@ -88995,35 +89006,71 @@ class MasterViewSidebarComponent {
|
|
|
88995
89006
|
@if (tab() === 'slides') {
|
|
88996
89007
|
@if (editable()) {
|
|
88997
89008
|
<!-- Format Background for the selected master or layout. -->
|
|
88998
|
-
<ng-container
|
|
89009
|
+
<ng-container
|
|
89010
|
+
[ngTemplateOutlet]="backgroundEditor"
|
|
89011
|
+
[ngTemplateOutletContext]="{ color: slidesBackground() ?? '#ffffff' }"
|
|
89012
|
+
/>
|
|
88999
89013
|
}
|
|
89000
89014
|
@for (master of slideMasters(); track master.path; let masterIndex = $index) {
|
|
89001
|
-
<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
|
+
>
|
|
89002
89023
|
{{ master.name || ('pptx.master.master' | translate) }}
|
|
89003
89024
|
</button>
|
|
89004
89025
|
@for (layout of master.layouts ?? []; track layout.path; let layoutIndex = $index) {
|
|
89005
|
-
<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
|
+
>
|
|
89006
89034
|
{{ layout.name || ('pptx.master.layout' | translate) }}
|
|
89007
89035
|
</button>
|
|
89008
89036
|
}
|
|
89009
89037
|
}
|
|
89010
89038
|
} @else if (tab() === 'notes') {
|
|
89011
89039
|
@if (notesMaster()) {
|
|
89012
|
-
<ng-container
|
|
89013
|
-
|
|
89014
|
-
|
|
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
|
+
}
|
|
89015
89051
|
} @else {
|
|
89016
89052
|
@if (handoutMaster()) {
|
|
89017
89053
|
<section>
|
|
89018
89054
|
<strong>{{ 'pptx.master.handoutSlidesPerPage' | translate }}</strong>
|
|
89019
89055
|
<div class="counts">
|
|
89020
89056
|
@for (count of handoutCounts; track count) {
|
|
89021
|
-
<button
|
|
89057
|
+
<button
|
|
89058
|
+
type="button"
|
|
89059
|
+
[attr.aria-pressed]="handoutSlidesPerPage() === count"
|
|
89060
|
+
(click)="slidesPerPageChange.emit(count)"
|
|
89061
|
+
>
|
|
89062
|
+
{{ count }}
|
|
89063
|
+
</button>
|
|
89022
89064
|
}
|
|
89023
89065
|
</div>
|
|
89024
89066
|
</section>
|
|
89025
|
-
<ng-container
|
|
89026
|
-
|
|
89067
|
+
<ng-container
|
|
89068
|
+
[ngTemplateOutlet]="backgroundEditor"
|
|
89069
|
+
[ngTemplateOutletContext]="{ color: handoutMaster()!.backgroundColor || '#ffffff' }"
|
|
89070
|
+
/>
|
|
89071
|
+
} @else {
|
|
89072
|
+
<p>{{ 'pptx.master.noHandoutMaster' | translate }}</p>
|
|
89073
|
+
}
|
|
89027
89074
|
}
|
|
89028
89075
|
</div>
|
|
89029
89076
|
</aside>
|
|
@@ -89031,7 +89078,12 @@ class MasterViewSidebarComponent {
|
|
|
89031
89078
|
<ng-template #backgroundEditor let-color="color">
|
|
89032
89079
|
<label class="background-editor">
|
|
89033
89080
|
<span>{{ 'pptx.master.notesMasterBackground' | translate }}</span>
|
|
89034
|
-
<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
|
+
/>
|
|
89035
89087
|
</label>
|
|
89036
89088
|
</ng-template>
|
|
89037
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 }); }
|
|
@@ -89042,11 +89094,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.2", ngImpor
|
|
|
89042
89094
|
<aside class="master-sidebar" [attr.aria-label]="'pptx.view.masterViews' | translate">
|
|
89043
89095
|
<header>
|
|
89044
89096
|
<strong>{{ titleKey() | translate }}</strong>
|
|
89045
|
-
<button
|
|
89097
|
+
<button
|
|
89098
|
+
type="button"
|
|
89099
|
+
(click)="close.emit()"
|
|
89100
|
+
[attr.aria-label]="'pptx.mode.closeMasterViewTooltip' | translate"
|
|
89101
|
+
>
|
|
89102
|
+
×
|
|
89103
|
+
</button>
|
|
89046
89104
|
</header>
|
|
89047
89105
|
<div class="tabs" role="tablist" [attr.aria-label]="'pptx.mode.masterView' | translate">
|
|
89048
89106
|
@for (item of tabs; track item.tab) {
|
|
89049
|
-
<button
|
|
89107
|
+
<button
|
|
89108
|
+
type="button"
|
|
89109
|
+
role="tab"
|
|
89110
|
+
[attr.aria-selected]="tab() === item.tab"
|
|
89111
|
+
(click)="tabChange.emit(item.tab)"
|
|
89112
|
+
>
|
|
89050
89113
|
{{ item.key | translate }}
|
|
89051
89114
|
</button>
|
|
89052
89115
|
}
|
|
@@ -89055,35 +89118,71 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.2", ngImpor
|
|
|
89055
89118
|
@if (tab() === 'slides') {
|
|
89056
89119
|
@if (editable()) {
|
|
89057
89120
|
<!-- Format Background for the selected master or layout. -->
|
|
89058
|
-
<ng-container
|
|
89121
|
+
<ng-container
|
|
89122
|
+
[ngTemplateOutlet]="backgroundEditor"
|
|
89123
|
+
[ngTemplateOutletContext]="{ color: slidesBackground() ?? '#ffffff' }"
|
|
89124
|
+
/>
|
|
89059
89125
|
}
|
|
89060
89126
|
@for (master of slideMasters(); track master.path; let masterIndex = $index) {
|
|
89061
|
-
<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
|
+
>
|
|
89062
89135
|
{{ master.name || ('pptx.master.master' | translate) }}
|
|
89063
89136
|
</button>
|
|
89064
89137
|
@for (layout of master.layouts ?? []; track layout.path; let layoutIndex = $index) {
|
|
89065
|
-
<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
|
+
>
|
|
89066
89146
|
{{ layout.name || ('pptx.master.layout' | translate) }}
|
|
89067
89147
|
</button>
|
|
89068
89148
|
}
|
|
89069
89149
|
}
|
|
89070
89150
|
} @else if (tab() === 'notes') {
|
|
89071
89151
|
@if (notesMaster()) {
|
|
89072
|
-
<ng-container
|
|
89073
|
-
|
|
89074
|
-
|
|
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
|
+
}
|
|
89075
89163
|
} @else {
|
|
89076
89164
|
@if (handoutMaster()) {
|
|
89077
89165
|
<section>
|
|
89078
89166
|
<strong>{{ 'pptx.master.handoutSlidesPerPage' | translate }}</strong>
|
|
89079
89167
|
<div class="counts">
|
|
89080
89168
|
@for (count of handoutCounts; track count) {
|
|
89081
|
-
<button
|
|
89169
|
+
<button
|
|
89170
|
+
type="button"
|
|
89171
|
+
[attr.aria-pressed]="handoutSlidesPerPage() === count"
|
|
89172
|
+
(click)="slidesPerPageChange.emit(count)"
|
|
89173
|
+
>
|
|
89174
|
+
{{ count }}
|
|
89175
|
+
</button>
|
|
89082
89176
|
}
|
|
89083
89177
|
</div>
|
|
89084
89178
|
</section>
|
|
89085
|
-
<ng-container
|
|
89086
|
-
|
|
89179
|
+
<ng-container
|
|
89180
|
+
[ngTemplateOutlet]="backgroundEditor"
|
|
89181
|
+
[ngTemplateOutletContext]="{ color: handoutMaster()!.backgroundColor || '#ffffff' }"
|
|
89182
|
+
/>
|
|
89183
|
+
} @else {
|
|
89184
|
+
<p>{{ 'pptx.master.noHandoutMaster' | translate }}</p>
|
|
89185
|
+
}
|
|
89087
89186
|
}
|
|
89088
89187
|
</div>
|
|
89089
89188
|
</aside>
|
|
@@ -89091,7 +89190,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.2", ngImpor
|
|
|
89091
89190
|
<ng-template #backgroundEditor let-color="color">
|
|
89092
89191
|
<label class="background-editor">
|
|
89093
89192
|
<span>{{ 'pptx.master.notesMasterBackground' | translate }}</span>
|
|
89094
|
-
<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
|
+
/>
|
|
89095
89199
|
</label>
|
|
89096
89200
|
</ng-template>
|
|
89097
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"] }]
|
|
@@ -99430,7 +99534,9 @@ class PrintSettingsPanelComponent {
|
|
|
99430
99534
|
<div class="pptx-ng-print-settings">
|
|
99431
99535
|
<!-- Print What -->
|
|
99432
99536
|
<fieldset class="pptx-ng-print-settings__group">
|
|
99433
|
-
<legend class="pptx-ng-print-settings__legend">
|
|
99537
|
+
<legend class="pptx-ng-print-settings__legend">
|
|
99538
|
+
{{ 'pptx.print.printWhat' | translate }}
|
|
99539
|
+
</legend>
|
|
99434
99540
|
<div class="pptx-ng-print-settings__grid2">
|
|
99435
99541
|
@for (opt of printWhatOptions; track opt.value) {
|
|
99436
99542
|
<button
|
|
@@ -99468,7 +99574,9 @@ class PrintSettingsPanelComponent {
|
|
|
99468
99574
|
|
|
99469
99575
|
<!-- Slide range -->
|
|
99470
99576
|
<fieldset class="pptx-ng-print-settings__group">
|
|
99471
|
-
<legend class="pptx-ng-print-settings__legend">
|
|
99577
|
+
<legend class="pptx-ng-print-settings__legend">
|
|
99578
|
+
{{ 'pptx.print.slideRange' | translate }}
|
|
99579
|
+
</legend>
|
|
99472
99580
|
<div class="pptx-ng-print-settings__stack">
|
|
99473
99581
|
<button
|
|
99474
99582
|
type="button"
|
|
@@ -99496,7 +99604,9 @@ class PrintSettingsPanelComponent {
|
|
|
99496
99604
|
</button>
|
|
99497
99605
|
@if (settings().slideRange === 'custom') {
|
|
99498
99606
|
<div class="pptx-ng-print-settings__range">
|
|
99499
|
-
<span class="pptx-ng-print-settings__range-label">{{
|
|
99607
|
+
<span class="pptx-ng-print-settings__range-label">{{
|
|
99608
|
+
'pptx.print.from' | translate
|
|
99609
|
+
}}</span>
|
|
99500
99610
|
<input
|
|
99501
99611
|
class="pptx-ng-print-settings__number"
|
|
99502
99612
|
type="number"
|
|
@@ -99505,7 +99615,9 @@ class PrintSettingsPanelComponent {
|
|
|
99505
99615
|
[value]="settings().customRangeFrom"
|
|
99506
99616
|
(change)="onRangeChange($event, 'from')"
|
|
99507
99617
|
/>
|
|
99508
|
-
<span class="pptx-ng-print-settings__range-label">{{
|
|
99618
|
+
<span class="pptx-ng-print-settings__range-label">{{
|
|
99619
|
+
'pptx.print.to' | translate
|
|
99620
|
+
}}</span>
|
|
99509
99621
|
<input
|
|
99510
99622
|
class="pptx-ng-print-settings__number"
|
|
99511
99623
|
type="number"
|
|
@@ -99522,7 +99634,9 @@ class PrintSettingsPanelComponent {
|
|
|
99522
99634
|
<!-- Orientation (full-page slides only) -->
|
|
99523
99635
|
@if (settings().printWhat === 'slides') {
|
|
99524
99636
|
<fieldset class="pptx-ng-print-settings__group">
|
|
99525
|
-
<legend class="pptx-ng-print-settings__legend">
|
|
99637
|
+
<legend class="pptx-ng-print-settings__legend">
|
|
99638
|
+
{{ 'pptx.print.orientation' | translate }}
|
|
99639
|
+
</legend>
|
|
99526
99640
|
<div class="pptx-ng-print-settings__chips">
|
|
99527
99641
|
@for (o of orientationOptions; track o.value) {
|
|
99528
99642
|
<button
|
|
@@ -99540,7 +99654,9 @@ class PrintSettingsPanelComponent {
|
|
|
99540
99654
|
|
|
99541
99655
|
<!-- Colour mode -->
|
|
99542
99656
|
<fieldset class="pptx-ng-print-settings__group">
|
|
99543
|
-
<legend class="pptx-ng-print-settings__legend">
|
|
99657
|
+
<legend class="pptx-ng-print-settings__legend">
|
|
99658
|
+
{{ 'pptx.print.colorMode' | translate }}
|
|
99659
|
+
</legend>
|
|
99544
99660
|
<div class="pptx-ng-print-settings__chips">
|
|
99545
99661
|
@for (c of colorModeOptions; track c.value) {
|
|
99546
99662
|
<button
|
|
@@ -99573,7 +99689,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.2", ngImpor
|
|
|
99573
99689
|
<div class="pptx-ng-print-settings">
|
|
99574
99690
|
<!-- Print What -->
|
|
99575
99691
|
<fieldset class="pptx-ng-print-settings__group">
|
|
99576
|
-
<legend class="pptx-ng-print-settings__legend">
|
|
99692
|
+
<legend class="pptx-ng-print-settings__legend">
|
|
99693
|
+
{{ 'pptx.print.printWhat' | translate }}
|
|
99694
|
+
</legend>
|
|
99577
99695
|
<div class="pptx-ng-print-settings__grid2">
|
|
99578
99696
|
@for (opt of printWhatOptions; track opt.value) {
|
|
99579
99697
|
<button
|
|
@@ -99611,7 +99729,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.2", ngImpor
|
|
|
99611
99729
|
|
|
99612
99730
|
<!-- Slide range -->
|
|
99613
99731
|
<fieldset class="pptx-ng-print-settings__group">
|
|
99614
|
-
<legend class="pptx-ng-print-settings__legend">
|
|
99732
|
+
<legend class="pptx-ng-print-settings__legend">
|
|
99733
|
+
{{ 'pptx.print.slideRange' | translate }}
|
|
99734
|
+
</legend>
|
|
99615
99735
|
<div class="pptx-ng-print-settings__stack">
|
|
99616
99736
|
<button
|
|
99617
99737
|
type="button"
|
|
@@ -99639,7 +99759,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.2", ngImpor
|
|
|
99639
99759
|
</button>
|
|
99640
99760
|
@if (settings().slideRange === 'custom') {
|
|
99641
99761
|
<div class="pptx-ng-print-settings__range">
|
|
99642
|
-
<span class="pptx-ng-print-settings__range-label">{{
|
|
99762
|
+
<span class="pptx-ng-print-settings__range-label">{{
|
|
99763
|
+
'pptx.print.from' | translate
|
|
99764
|
+
}}</span>
|
|
99643
99765
|
<input
|
|
99644
99766
|
class="pptx-ng-print-settings__number"
|
|
99645
99767
|
type="number"
|
|
@@ -99648,7 +99770,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.2", ngImpor
|
|
|
99648
99770
|
[value]="settings().customRangeFrom"
|
|
99649
99771
|
(change)="onRangeChange($event, 'from')"
|
|
99650
99772
|
/>
|
|
99651
|
-
<span class="pptx-ng-print-settings__range-label">{{
|
|
99773
|
+
<span class="pptx-ng-print-settings__range-label">{{
|
|
99774
|
+
'pptx.print.to' | translate
|
|
99775
|
+
}}</span>
|
|
99652
99776
|
<input
|
|
99653
99777
|
class="pptx-ng-print-settings__number"
|
|
99654
99778
|
type="number"
|
|
@@ -99665,7 +99789,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.2", ngImpor
|
|
|
99665
99789
|
<!-- Orientation (full-page slides only) -->
|
|
99666
99790
|
@if (settings().printWhat === 'slides') {
|
|
99667
99791
|
<fieldset class="pptx-ng-print-settings__group">
|
|
99668
|
-
<legend class="pptx-ng-print-settings__legend">
|
|
99792
|
+
<legend class="pptx-ng-print-settings__legend">
|
|
99793
|
+
{{ 'pptx.print.orientation' | translate }}
|
|
99794
|
+
</legend>
|
|
99669
99795
|
<div class="pptx-ng-print-settings__chips">
|
|
99670
99796
|
@for (o of orientationOptions; track o.value) {
|
|
99671
99797
|
<button
|
|
@@ -99683,7 +99809,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.2", ngImpor
|
|
|
99683
99809
|
|
|
99684
99810
|
<!-- Colour mode -->
|
|
99685
99811
|
<fieldset class="pptx-ng-print-settings__group">
|
|
99686
|
-
<legend class="pptx-ng-print-settings__legend">
|
|
99812
|
+
<legend class="pptx-ng-print-settings__legend">
|
|
99813
|
+
{{ 'pptx.print.colorMode' | translate }}
|
|
99814
|
+
</legend>
|
|
99687
99815
|
<div class="pptx-ng-print-settings__chips">
|
|
99688
99816
|
@for (c of colorModeOptions; track c.value) {
|
|
99689
99817
|
<button
|
|
@@ -104998,7 +105126,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.2", ngImpor
|
|
|
104998
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 }] }] } });
|
|
104999
105127
|
|
|
105000
105128
|
// Generated by scripts/inline-shared.mjs from package.json. Do not edit.
|
|
105001
|
-
const PPTX_ANGULAR_VIEWER_VERSION = "2.19.
|
|
105129
|
+
const PPTX_ANGULAR_VIEWER_VERSION = "2.19.2";
|
|
105002
105130
|
|
|
105003
105131
|
/**
|
|
105004
105132
|
* account-page.component.ts: File > Account content.
|
|
@@ -119081,8 +119209,7 @@ class TableCellFormattingComponent {
|
|
|
119081
119209
|
<div class="pptx-tcf">
|
|
119082
119210
|
<div class="pptx-tcf__heading">
|
|
119083
119211
|
{{
|
|
119084
|
-
'pptx.table.cell'
|
|
119085
|
-
| translate: { row: sel()!.rowIndex + 1, col: sel()!.columnIndex + 1 }
|
|
119212
|
+
'pptx.table.cell' | translate: { row: sel()!.rowIndex + 1, col: sel()!.columnIndex + 1 }
|
|
119086
119213
|
}}
|
|
119087
119214
|
</div>
|
|
119088
119215
|
|
|
@@ -119196,10 +119323,20 @@ class TableCellFormattingComponent {
|
|
|
119196
119323
|
</div>
|
|
119197
119324
|
|
|
119198
119325
|
<div class="pptx-tcf__btns">
|
|
119199
|
-
<button
|
|
119326
|
+
<button
|
|
119327
|
+
type="button"
|
|
119328
|
+
class="pptx-tcf__btn"
|
|
119329
|
+
[disabled]="!canEdit()"
|
|
119330
|
+
(click)="onMergeRight()"
|
|
119331
|
+
>
|
|
119200
119332
|
{{ 'pptx.table.mergeRight' | translate }}
|
|
119201
119333
|
</button>
|
|
119202
|
-
<button
|
|
119334
|
+
<button
|
|
119335
|
+
type="button"
|
|
119336
|
+
class="pptx-tcf__btn"
|
|
119337
|
+
[disabled]="!canEdit()"
|
|
119338
|
+
(click)="onMergeDown()"
|
|
119339
|
+
>
|
|
119203
119340
|
{{ 'pptx.table.mergeDown' | translate }}
|
|
119204
119341
|
</button>
|
|
119205
119342
|
<button type="button" class="pptx-tcf__btn" [disabled]="!canEdit()" (click)="onSplit()">
|
|
@@ -119227,8 +119364,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.2", ngImpor
|
|
|
119227
119364
|
<div class="pptx-tcf">
|
|
119228
119365
|
<div class="pptx-tcf__heading">
|
|
119229
119366
|
{{
|
|
119230
|
-
'pptx.table.cell'
|
|
119231
|
-
| translate: { row: sel()!.rowIndex + 1, col: sel()!.columnIndex + 1 }
|
|
119367
|
+
'pptx.table.cell' | translate: { row: sel()!.rowIndex + 1, col: sel()!.columnIndex + 1 }
|
|
119232
119368
|
}}
|
|
119233
119369
|
</div>
|
|
119234
119370
|
|
|
@@ -119342,10 +119478,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.2", ngImpor
|
|
|
119342
119478
|
</div>
|
|
119343
119479
|
|
|
119344
119480
|
<div class="pptx-tcf__btns">
|
|
119345
|
-
<button
|
|
119481
|
+
<button
|
|
119482
|
+
type="button"
|
|
119483
|
+
class="pptx-tcf__btn"
|
|
119484
|
+
[disabled]="!canEdit()"
|
|
119485
|
+
(click)="onMergeRight()"
|
|
119486
|
+
>
|
|
119346
119487
|
{{ 'pptx.table.mergeRight' | translate }}
|
|
119347
119488
|
</button>
|
|
119348
|
-
<button
|
|
119489
|
+
<button
|
|
119490
|
+
type="button"
|
|
119491
|
+
class="pptx-tcf__btn"
|
|
119492
|
+
[disabled]="!canEdit()"
|
|
119493
|
+
(click)="onMergeDown()"
|
|
119494
|
+
>
|
|
119349
119495
|
{{ 'pptx.table.mergeDown' | translate }}
|
|
119350
119496
|
</button>
|
|
119351
119497
|
<button type="button" class="pptx-tcf__btn" [disabled]="!canEdit()" (click)="onSplit()">
|
|
@@ -124617,8 +124763,7 @@ class SlideDefaultInspectorComponent {
|
|
|
124617
124763
|
[attr.placeholder]="'pptx.viewer.speakerNotesPlaceholder' | translate"
|
|
124618
124764
|
(change)="canvasEditing.onSlideNotes($event)"
|
|
124619
124765
|
(blur)="canvasEditing.onSlideNotes($event)"
|
|
124620
|
-
>{{ sl.notes || '' }}</textarea
|
|
124621
|
-
>
|
|
124766
|
+
>{{ sl.notes || '' }}</textarea>
|
|
124622
124767
|
</label>
|
|
124623
124768
|
</section>
|
|
124624
124769
|
}
|
|
@@ -124705,8 +124850,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.2", ngImpor
|
|
|
124705
124850
|
[attr.placeholder]="'pptx.viewer.speakerNotesPlaceholder' | translate"
|
|
124706
124851
|
(change)="canvasEditing.onSlideNotes($event)"
|
|
124707
124852
|
(blur)="canvasEditing.onSlideNotes($event)"
|
|
124708
|
-
>{{ sl.notes || '' }}</textarea
|
|
124709
|
-
>
|
|
124853
|
+
>{{ sl.notes || '' }}</textarea>
|
|
124710
124854
|
</label>
|
|
124711
124855
|
</section>
|
|
124712
124856
|
}
|
|
@@ -129438,7 +129582,9 @@ class SetUpSlideShowDialogComponent {
|
|
|
129438
129582
|
|
|
129439
129583
|
<!-- Advance slides -->
|
|
129440
129584
|
<fieldset class="pptx-ng-sss-fieldset">
|
|
129441
|
-
<legend class="pptx-ng-sss-legend">
|
|
129585
|
+
<legend class="pptx-ng-sss-legend">
|
|
129586
|
+
{{ 'pptx.slideShow.advanceSlides' | translate }}
|
|
129587
|
+
</legend>
|
|
129442
129588
|
<label class="pptx-ng-sss-option">
|
|
129443
129589
|
<input
|
|
129444
129590
|
type="radio"
|
|
@@ -129470,11 +129616,7 @@ class SetUpSlideShowDialogComponent {
|
|
|
129470
129616
|
<button type="button" class="pptx-ng-sss-btn" (click)="onClose()">
|
|
129471
129617
|
{{ 'pptx.common.cancel' | translate }}
|
|
129472
129618
|
</button>
|
|
129473
|
-
<button
|
|
129474
|
-
type="button"
|
|
129475
|
-
class="pptx-ng-sss-btn pptx-ng-sss-btn-primary"
|
|
129476
|
-
(click)="onOk()"
|
|
129477
|
-
>
|
|
129619
|
+
<button type="button" class="pptx-ng-sss-btn pptx-ng-sss-btn-primary" (click)="onOk()">
|
|
129478
129620
|
{{ 'pptx.common.ok' | translate }}
|
|
129479
129621
|
</button>
|
|
129480
129622
|
</div>
|
|
@@ -129543,7 +129685,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.2", ngImpor
|
|
|
129543
129685
|
|
|
129544
129686
|
<!-- Advance slides -->
|
|
129545
129687
|
<fieldset class="pptx-ng-sss-fieldset">
|
|
129546
|
-
<legend class="pptx-ng-sss-legend">
|
|
129688
|
+
<legend class="pptx-ng-sss-legend">
|
|
129689
|
+
{{ 'pptx.slideShow.advanceSlides' | translate }}
|
|
129690
|
+
</legend>
|
|
129547
129691
|
<label class="pptx-ng-sss-option">
|
|
129548
129692
|
<input
|
|
129549
129693
|
type="radio"
|
|
@@ -129575,11 +129719,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.2", ngImpor
|
|
|
129575
129719
|
<button type="button" class="pptx-ng-sss-btn" (click)="onClose()">
|
|
129576
129720
|
{{ 'pptx.common.cancel' | translate }}
|
|
129577
129721
|
</button>
|
|
129578
|
-
<button
|
|
129579
|
-
type="button"
|
|
129580
|
-
class="pptx-ng-sss-btn pptx-ng-sss-btn-primary"
|
|
129581
|
-
(click)="onOk()"
|
|
129582
|
-
>
|
|
129722
|
+
<button type="button" class="pptx-ng-sss-btn pptx-ng-sss-btn-primary" (click)="onOk()">
|
|
129583
129723
|
{{ 'pptx.common.ok' | translate }}
|
|
129584
129724
|
</button>
|
|
129585
129725
|
</div>
|
|
@@ -137991,4 +138131,4 @@ function cn(...values) {
|
|
|
137991
138131
|
*/
|
|
137992
138132
|
|
|
137993
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 };
|
|
137994
|
-
//# sourceMappingURL=pptx-angular-viewer-pptx-angular-viewer-
|
|
138134
|
+
//# sourceMappingURL=pptx-angular-viewer-pptx-angular-viewer-B9V8UhEb.mjs.map
|