pptx-angular-viewer 3.6.1 → 3.6.2

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.
@@ -29609,7 +29609,9 @@ function cellStyleToCss(style) {
29609
29609
  css.fontFamily = style.fontFamily;
29610
29610
  }
29611
29611
  if (style.fontSize) {
29612
- css.fontSize = `${style.fontSize}px`;
29612
+ // Table-cell controls and the OOXML save path use PowerPoint points.
29613
+ // Emitting the same number as CSS pixels makes edited cells 25% smaller.
29614
+ css.fontSize = `${style.fontSize}pt`;
29613
29615
  }
29614
29616
  if (style.bold) {
29615
29617
  css.fontWeight = 'bold';
@@ -48194,96 +48196,94 @@ function buildLeaderString(leader, widthPx, fontSizePx = 16) {
48194
48196
  return char.repeat(count);
48195
48197
  }
48196
48198
 
48197
- let pendingRestore = null;
48198
- function setPendingSelectionRestore(sel) {
48199
- pendingRestore = sel;
48200
- }
48201
- /** Read-once: clears the stored value after returning it. */
48202
- function getPendingSelectionRestore() {
48203
- const sel = pendingRestore;
48204
- pendingRestore = null;
48205
- return sel;
48206
- }
48207
48199
  /**
48208
48200
  * Read the current browser selection and, if it falls within an
48209
48201
  * `[data-inline-editor]` element, return the segment-level range.
48210
48202
  *
48211
- * Returns `null` when there is no selection, the selection is collapsed
48212
- * (just a cursor), or the selection is outside the inline editor.
48203
+ * Returns `null` when there is no editable text selected, the selection is
48204
+ * collapsed (just a cursor), or the selection is outside the inline editor.
48213
48205
  */
48214
48206
  function getInlineEditorSelection(segments) {
48215
- if (!segments || segments.length === 0) {
48207
+ if (!segments?.length) {
48216
48208
  return null;
48217
48209
  }
48218
- const sel = window.getSelection();
48219
- if (!sel || sel.rangeCount === 0 || sel.isCollapsed) {
48210
+ const selection = window.getSelection();
48211
+ if (!selection || selection.rangeCount === 0 || selection.isCollapsed) {
48220
48212
  return null;
48221
48213
  }
48222
- const { anchorNode, anchorOffset, focusNode, focusOffset } = sel;
48223
- if (!anchorNode || !focusNode) {
48214
+ // A Range is always in document order, including for a backwards selection.
48215
+ const range = selection.getRangeAt(0);
48216
+ const editor = findEditorContainer(range.startContainer);
48217
+ if (!editor || !editor.contains(range.endContainer) || range.toString().length === 0) {
48224
48218
  return null;
48225
48219
  }
48226
- const editor = findEditorContainer(anchorNode);
48227
- if (!editor || !editor.contains(focusNode)) {
48220
+ const start = getSegmentPosition(editor, range.startContainer, range.startOffset, segments);
48221
+ const end = getSegmentPosition(editor, range.endContainer, range.endOffset, segments);
48222
+ if (!start || !end) {
48228
48223
  return null;
48229
48224
  }
48230
- const anchorInfo = getSegmentPosition(editor, anchorNode, anchorOffset, segments);
48231
- const focusInfo = getSegmentPosition(editor, focusNode, focusOffset, segments);
48232
- if (!anchorInfo || !focusInfo) {
48225
+ const renderedSpans = Array.from(editor.querySelectorAll('[data-seg-idx]'));
48226
+ const startSpanIndex = renderedSpans.indexOf(start.span);
48227
+ const endSpanIndex = renderedSpans.indexOf(end.span);
48228
+ if (startSpanIndex < 0 || endSpanIndex < startSpanIndex) {
48229
+ return null;
48230
+ }
48231
+ const selectedSpans = renderedSpans.slice(startSpanIndex, endSpanIndex + 1);
48232
+ const first = selectedSpans.find((span) => isEditableSpan(span, segments) && (span !== start.span || start.offset < start.textLength));
48233
+ const last = [...selectedSpans]
48234
+ .reverse()
48235
+ .find((span) => isEditableSpan(span, segments) && (span !== end.span || end.offset > 0));
48236
+ if (!first || !last) {
48233
48237
  return null;
48234
48238
  }
48235
- // Normalize so start <= end.
48236
- const [start, end] = anchorInfo.absOffset <= focusInfo.absOffset ? [anchorInfo, focusInfo] : [focusInfo, anchorInfo];
48237
48239
  return {
48238
- startSegIdx: start.segIdx,
48239
- startOffset: start.offsetInSeg,
48240
- endSegIdx: end.segIdx,
48241
- endOffset: end.offsetInSeg,
48240
+ startSegIdx: getSegmentIndex(first),
48241
+ startOffset: first === start.span ? start.offset : 0,
48242
+ endSegIdx: getSegmentIndex(last),
48243
+ endOffset: last === end.span ? end.offset : (last.textContent?.length ?? 0),
48242
48244
  };
48243
48245
  }
48246
+ function isEditableSpan(span, segments) {
48247
+ const segment = segments[getSegmentIndex(span)];
48248
+ return Boolean(segment &&
48249
+ !segment.isParagraphBreak &&
48250
+ segment.text !== '\n' &&
48251
+ !isBulletMarkerSegment(segment) &&
48252
+ (span.textContent?.length ?? 0) > 0);
48253
+ }
48254
+ function getSegmentIndex(span) {
48255
+ return Number(span.getAttribute('data-seg-idx'));
48256
+ }
48244
48257
  function findEditorContainer(node) {
48245
- const el = node.nodeType === Node.ELEMENT_NODE ? node : node.parentElement;
48246
- return el?.closest('[data-inline-editor]') ?? null;
48258
+ const element = node.nodeType === Node.ELEMENT_NODE ? node : node.parentElement;
48259
+ return element?.closest('[data-inline-editor]') ?? null;
48247
48260
  }
48248
48261
  function getSegmentPosition(editor, node, offset, segments) {
48249
- const el = node.nodeType === Node.ELEMENT_NODE ? node : node.parentElement;
48250
- if (!el) {
48251
- return null;
48252
- }
48253
- const segSpan = el.closest('[data-seg-idx]');
48254
- if (!segSpan || !editor.contains(segSpan)) {
48262
+ const element = node.nodeType === Node.ELEMENT_NODE ? node : node.parentElement;
48263
+ const span = element?.closest('[data-seg-idx]');
48264
+ if (!span || !editor.contains(span)) {
48255
48265
  return null;
48256
48266
  }
48257
- const segIdx = parseInt(segSpan.getAttribute('data-seg-idx'), 10);
48258
- if (isNaN(segIdx) || segIdx < 0 || segIdx >= segments.length) {
48267
+ const segIdx = getSegmentIndex(span);
48268
+ if (!Number.isInteger(segIdx) || segIdx < 0 || segIdx >= segments.length) {
48259
48269
  return null;
48260
48270
  }
48261
- const offsetInSeg = getTextOffsetWithin(segSpan, node, offset);
48262
- // Absolute offset = sum of all segment text lengths before this one + offset.
48263
- let absOffset = 0;
48264
- for (let i = 0; i < segIdx; i++) {
48265
- absOffset += segments[i].text.length;
48266
- }
48267
- absOffset += offsetInSeg;
48268
- return { segIdx, offsetInSeg, absOffset };
48271
+ return {
48272
+ segIdx,
48273
+ offset: getTextOffsetWithin(span, node, offset),
48274
+ span,
48275
+ textLength: span.textContent?.length ?? 0,
48276
+ };
48269
48277
  }
48270
- /**
48271
- * Compute the character offset of a DOM position (node + offset) relative to
48272
- * the text content of a container element.
48273
- */
48274
48278
  function getTextOffsetWithin(container, targetNode, targetOffset) {
48275
- // When the target IS the container (or an element child), offset is a
48276
- // child-index count, not a character count.
48277
48279
  if (targetNode === container || targetNode.nodeType === Node.ELEMENT_NODE) {
48278
48280
  const parent = targetNode === container ? container : targetNode;
48279
48281
  let count = 0;
48280
- for (let i = 0; i < targetOffset && i < parent.childNodes.length; i++) {
48281
- count += (parent.childNodes[i].textContent || '').length;
48282
+ for (let index = 0; index < targetOffset && index < parent.childNodes.length; index++) {
48283
+ count += parent.childNodes[index].textContent?.length ?? 0;
48282
48284
  }
48283
48285
  return count;
48284
48286
  }
48285
- // Walk text nodes in document order and accumulate lengths until we hit the
48286
- // target text node.
48287
48287
  const walker = document.createTreeWalker(container, NodeFilter.SHOW_TEXT);
48288
48288
  let charCount = 0;
48289
48289
  let node;
@@ -48295,6 +48295,17 @@ function getTextOffsetWithin(container, targetNode, targetOffset) {
48295
48295
  }
48296
48296
  return charCount;
48297
48297
  }
48298
+
48299
+ let pendingRestore = null;
48300
+ function setPendingSelectionRestore(sel) {
48301
+ pendingRestore = sel;
48302
+ }
48303
+ /** Read-once: clears the stored value after returning it. */
48304
+ function getPendingSelectionRestore() {
48305
+ const sel = pendingRestore;
48306
+ pendingRestore = null;
48307
+ return sel;
48308
+ }
48298
48309
  /**
48299
48310
  * Apply `updates` only to the characters within the selection range. Segments
48300
48311
  * at the boundaries are split; segments outside the range are copied unchanged.
@@ -61264,6 +61275,105 @@ function smartArtNodeLabel(node) {
61264
61275
  };
61265
61276
  }
61266
61277
 
61278
+ /**
61279
+ * Regular-text font sizes are stored in slide/CSS pixels in the shared model,
61280
+ * while PowerPoint's font controls and the preset list below use points.
61281
+ */
61282
+ function textFontSizePxToPt(fontSizePx) {
61283
+ // DrawingML stores regular text sizes in hundredths of a point. Normalising
61284
+ // to that precision removes binary floating-point noise without discarding
61285
+ // valid authored values such as 10.5 pt or 48.1 pt.
61286
+ return Math.round(fontSizePx * (72 / 96) * 100) / 100;
61287
+ }
61288
+ /** Convert a PowerPoint font-control value in points to the model's pixels. */
61289
+ function textFontSizePtToPx(fontSizePt) {
61290
+ return fontSizePt * (96 / 72);
61291
+ }
61292
+ /**
61293
+ * Font families offered by the Home-tab font dropdown, alphabetically.
61294
+ *
61295
+ * Covers the families PowerPoint's own list leads with (the Office UI faces,
61296
+ * the Aptos family that replaced Calibri as the default theme font, and the
61297
+ * classic Windows/Mac core fonts) plus the handful of web faces decks
61298
+ * routinely arrive with. Entries the host cannot resolve simply fall back
61299
+ * through the CSS font stack, so listing a family costs nothing but gives the
61300
+ * user a name to pick when the deck already references it.
61301
+ */
61302
+ const COMMON_FONT_FAMILIES = [
61303
+ 'Abadi',
61304
+ 'Aptos',
61305
+ 'Aptos Display',
61306
+ 'Arial',
61307
+ 'Arial Black',
61308
+ 'Arial Narrow',
61309
+ 'Bahnschrift',
61310
+ 'Book Antiqua',
61311
+ 'Bookman Old Style',
61312
+ 'Calibri',
61313
+ 'Calibri Light',
61314
+ 'Cambria',
61315
+ 'Candara',
61316
+ 'Century Gothic',
61317
+ 'Comic Sans MS',
61318
+ 'Consolas',
61319
+ 'Corbel',
61320
+ 'Courier New',
61321
+ 'Franklin Gothic Book',
61322
+ 'Franklin Gothic Medium',
61323
+ 'Garamond',
61324
+ 'Georgia',
61325
+ 'Gill Sans MT',
61326
+ 'Helvetica',
61327
+ 'Impact',
61328
+ 'Inter',
61329
+ 'Lucida Console',
61330
+ 'Lucida Sans Unicode',
61331
+ 'Microsoft Sans Serif',
61332
+ 'Montserrat',
61333
+ 'Noto Sans',
61334
+ 'Open Sans',
61335
+ 'Palatino Linotype',
61336
+ 'Poppins',
61337
+ 'Roboto',
61338
+ 'Rockwell',
61339
+ 'Segoe UI',
61340
+ 'Source Sans Pro',
61341
+ 'Tahoma',
61342
+ 'Times New Roman',
61343
+ 'Trebuchet MS',
61344
+ 'Tw Cen MT',
61345
+ 'Verdana',
61346
+ ];
61347
+ /** Font sizes (pt) offered by the Home-tab size dropdown. */
61348
+ const COMMON_FONT_SIZES = [
61349
+ 8, 9, 10, 11, 12, 14, 16, 18, 20, 24, 28, 32, 36, 40, 44, 48, 54, 60, 72, 96,
61350
+ ];
61351
+ /** Character-spacing presets for the toolbar dropdown. */
61352
+ const CHARACTER_SPACING_OPTIONS = [
61353
+ { label: 'Very Tight', i18nKey: 'pptx.text.characterSpacingVeryTight', value: -150 },
61354
+ { label: 'Tight', i18nKey: 'pptx.text.characterSpacingTight', value: -75 },
61355
+ { label: 'Normal', i18nKey: 'pptx.text.characterSpacingNormal', value: 0 },
61356
+ { label: 'Loose', i18nKey: 'pptx.text.characterSpacingLoose', value: 75 },
61357
+ { label: 'Very Loose', i18nKey: 'pptx.text.characterSpacingVeryLoose', value: 150 },
61358
+ ];
61359
+ /** Line-spacing presets for the paragraph dropdown. */
61360
+ const LINE_SPACING_OPTIONS$1 = [
61361
+ { label: '1.0', value: 1.0 },
61362
+ { label: '1.15', value: 1.15 },
61363
+ { label: '1.5', value: 1.5 },
61364
+ { label: '2.0', value: 2.0 },
61365
+ { label: '2.5', value: 2.5 },
61366
+ { label: '3.0', value: 3.0 },
61367
+ ];
61368
+ /** Change-case options in menu order (matches PowerPoint's ordering). */
61369
+ const CHANGE_CASE_OPTIONS$1 = [
61370
+ { value: 'sentence', i18nKey: 'pptx.text.changeCaseSentence' },
61371
+ { value: 'lower', i18nKey: 'pptx.text.changeCaseLower' },
61372
+ { value: 'upper', i18nKey: 'pptx.text.changeCaseUpper' },
61373
+ { value: 'capitalize', i18nKey: 'pptx.text.changeCaseCapitalize' },
61374
+ { value: 'toggle', i18nKey: 'pptx.text.changeCaseToggle' },
61375
+ ];
61376
+
61267
61377
  /**
61268
61378
  * inspector-helpers.ts: Pure (no framework) helpers for the inspector panel.
61269
61379
  *
@@ -61321,10 +61431,10 @@ function textColorOf(el) {
61321
61431
  */
61322
61432
  function fontSizeOf(el, presentationDefault) {
61323
61433
  if (hasTextProperties(el) && el.textStyle?.fontSize !== undefined) {
61324
- return el.textStyle.fontSize;
61434
+ return textFontSizePxToPt(el.textStyle.fontSize);
61325
61435
  }
61326
61436
  const deckDefault = presentationDefault?.levelStyles?.[0]?.fontSize;
61327
- return deckDefault ?? DEFAULT_FONT_SIZE$1;
61437
+ return deckDefault === undefined ? DEFAULT_FONT_SIZE$1 : textFontSizePxToPt(deckDefault);
61328
61438
  }
61329
61439
  /** Returns whether the element's text is bold (false when absent). */
61330
61440
  function isBold(el) {
@@ -61373,6 +61483,20 @@ function textStylePatch(el, changes) {
61373
61483
  },
61374
61484
  };
61375
61485
  }
61486
+ /** Apply an ordinary-text model pixel size to the element and all of its runs. */
61487
+ function textFontSizePatch(el, fontSize) {
61488
+ const patch = textStylePatch(el, { fontSize });
61489
+ if (!hasTextProperties(el) || !el.textSegments) {
61490
+ return patch;
61491
+ }
61492
+ return {
61493
+ ...patch,
61494
+ textSegments: el.textSegments.map((segment) => ({
61495
+ ...segment,
61496
+ style: { ...segment.style, fontSize },
61497
+ })),
61498
+ };
61499
+ }
61376
61500
 
61377
61501
  /**
61378
61502
  * effects-shadow-helpers.ts: Pure (no framework) outer/inner shadow helpers
@@ -75453,91 +75577,6 @@ const SHAPE_PRESET_DEFS = [
75453
75577
  },
75454
75578
  ];
75455
75579
 
75456
- /**
75457
- * Font families offered by the Home-tab font dropdown, alphabetically.
75458
- *
75459
- * Covers the families PowerPoint's own list leads with (the Office UI faces,
75460
- * the Aptos family that replaced Calibri as the default theme font, and the
75461
- * classic Windows/Mac core fonts) plus the handful of web faces decks
75462
- * routinely arrive with. Entries the host cannot resolve simply fall back
75463
- * through the CSS font stack, so listing a family costs nothing but gives the
75464
- * user a name to pick when the deck already references it.
75465
- */
75466
- const COMMON_FONT_FAMILIES = [
75467
- 'Abadi',
75468
- 'Aptos',
75469
- 'Aptos Display',
75470
- 'Arial',
75471
- 'Arial Black',
75472
- 'Arial Narrow',
75473
- 'Bahnschrift',
75474
- 'Book Antiqua',
75475
- 'Bookman Old Style',
75476
- 'Calibri',
75477
- 'Calibri Light',
75478
- 'Cambria',
75479
- 'Candara',
75480
- 'Century Gothic',
75481
- 'Comic Sans MS',
75482
- 'Consolas',
75483
- 'Corbel',
75484
- 'Courier New',
75485
- 'Franklin Gothic Book',
75486
- 'Franklin Gothic Medium',
75487
- 'Garamond',
75488
- 'Georgia',
75489
- 'Gill Sans MT',
75490
- 'Helvetica',
75491
- 'Impact',
75492
- 'Inter',
75493
- 'Lucida Console',
75494
- 'Lucida Sans Unicode',
75495
- 'Microsoft Sans Serif',
75496
- 'Montserrat',
75497
- 'Noto Sans',
75498
- 'Open Sans',
75499
- 'Palatino Linotype',
75500
- 'Poppins',
75501
- 'Roboto',
75502
- 'Rockwell',
75503
- 'Segoe UI',
75504
- 'Source Sans Pro',
75505
- 'Tahoma',
75506
- 'Times New Roman',
75507
- 'Trebuchet MS',
75508
- 'Tw Cen MT',
75509
- 'Verdana',
75510
- ];
75511
- /** Font sizes (pt) offered by the Home-tab size dropdown. */
75512
- const COMMON_FONT_SIZES = [
75513
- 8, 9, 10, 11, 12, 14, 16, 18, 20, 24, 28, 32, 36, 40, 44, 48, 54, 60, 72, 96,
75514
- ];
75515
- /** Character-spacing presets for the toolbar dropdown. */
75516
- const CHARACTER_SPACING_OPTIONS = [
75517
- { label: 'Very Tight', i18nKey: 'pptx.text.characterSpacingVeryTight', value: -150 },
75518
- { label: 'Tight', i18nKey: 'pptx.text.characterSpacingTight', value: -75 },
75519
- { label: 'Normal', i18nKey: 'pptx.text.characterSpacingNormal', value: 0 },
75520
- { label: 'Loose', i18nKey: 'pptx.text.characterSpacingLoose', value: 75 },
75521
- { label: 'Very Loose', i18nKey: 'pptx.text.characterSpacingVeryLoose', value: 150 },
75522
- ];
75523
- /** Line-spacing presets for the paragraph dropdown. */
75524
- const LINE_SPACING_OPTIONS$1 = [
75525
- { label: '1.0', value: 1.0 },
75526
- { label: '1.15', value: 1.15 },
75527
- { label: '1.5', value: 1.5 },
75528
- { label: '2.0', value: 2.0 },
75529
- { label: '2.5', value: 2.5 },
75530
- { label: '3.0', value: 3.0 },
75531
- ];
75532
- /** Change-case options in menu order (matches PowerPoint's ordering). */
75533
- const CHANGE_CASE_OPTIONS$1 = [
75534
- { value: 'sentence', i18nKey: 'pptx.text.changeCaseSentence' },
75535
- { value: 'lower', i18nKey: 'pptx.text.changeCaseLower' },
75536
- { value: 'upper', i18nKey: 'pptx.text.changeCaseUpper' },
75537
- { value: 'capitalize', i18nKey: 'pptx.text.changeCaseCapitalize' },
75538
- { value: 'toggle', i18nKey: 'pptx.text.changeCaseToggle' },
75539
- ];
75540
-
75541
75580
  /**
75542
75581
  * font-catalog.ts: grouping for the Home-tab font dropdown.
75543
75582
  *
@@ -86069,7 +86108,7 @@ function createLocalStorageBackend(namespace) {
86069
86108
  /** Try IndexedDB first; fall back to localStorage on any failure. */
86070
86109
  async function resolveBackend(dbName, namespace) {
86071
86110
  try {
86072
- const { openChatDb, createIdbBackend } = await import('./pptx-angular-viewer-chat-history-idb-CGGwWINo.mjs');
86111
+ const { openChatDb, createIdbBackend } = await import('./pptx-angular-viewer-chat-history-idb-DEXWS41y.mjs');
86073
86112
  const db = await openChatDb(dbName);
86074
86113
  return createIdbBackend(db);
86075
86114
  }
@@ -99667,8 +99706,7 @@ function cellRunStyle(style) {
99667
99706
  }
99668
99707
  const map = {};
99669
99708
  if (style.fontSize) {
99670
- // PptxTableCellStyle.fontSize is already in px (converted from EMU).
99671
- map['font-size'] = `${style.fontSize}px`;
99709
+ map['font-size'] = `${style.fontSize}pt`;
99672
99710
  }
99673
99711
  if (style.bold) {
99674
99712
  map['font-weight'] = 'bold';
@@ -123133,7 +123171,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.3", ngImpor
123133
123171
  }], 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 }] }] } });
123134
123172
 
123135
123173
  // Generated by scripts/inline-shared.mjs from package.json. Do not edit.
123136
- const PPTX_ANGULAR_VIEWER_VERSION = "3.6.0";
123174
+ const PPTX_ANGULAR_VIEWER_VERSION = "3.6.1";
123137
123175
 
123138
123176
  /**
123139
123177
  * account-page.component.ts: File > Account content.
@@ -123494,6 +123532,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.3", ngImpor
123494
123532
  * so it cannot drift from the other bindings' Font control group.
123495
123533
  */
123496
123534
  const FONT_SIZES = COMMON_FONT_SIZES;
123535
+ /** Next PowerPoint point-size preset in the requested direction. */
123536
+ function steppedFontSizePt(current, direction) {
123537
+ const next = direction === 1
123538
+ ? FONT_SIZES.find((size) => size > current)
123539
+ : [...FONT_SIZES].reverse().find((size) => size < current);
123540
+ return next ?? (direction === 1 ? FONT_SIZES[FONT_SIZES.length - 1] : FONT_SIZES[0]) ?? current;
123541
+ }
123497
123542
  /** Font-colour swatches in the Home/Text colour popover (mirrors React/Vue). */
123498
123543
  const FONT_COLOR_PRESETS = [
123499
123544
  '#000000',
@@ -123586,7 +123631,8 @@ class RibbonFontControlsComponent {
123586
123631
  }
123587
123632
  curFontSize() {
123588
123633
  // Mirror React's HomeSection default (24) shown when nothing is selected.
123589
- return Math.round(this.curStyle()?.fontSize ?? 24);
123634
+ const fontSize = this.curStyle()?.fontSize;
123635
+ return fontSize === undefined ? 24 : textFontSizePxToPt(fontSize);
123590
123636
  }
123591
123637
  /** Current font colour of the selection (for the swatch + active-state ring). */
123592
123638
  curColor() {
@@ -123638,20 +123684,18 @@ class RibbonFontControlsComponent {
123638
123684
  this.patch({ fontFamily: event.target.value });
123639
123685
  }
123640
123686
  setFontSize(event) {
123641
- this.patch({ fontSize: Number(event.target.value) });
123687
+ this.patchFontSize(textFontSizePtToPx(Number(event.target.value)));
123642
123688
  }
123643
123689
  /** Step the selection's font size up or down through the FONT_SIZES ladder. */
123644
123690
  stepFontSize(direction) {
123645
- const current = this.curFontSize();
123646
- const sizes = FONT_SIZES;
123647
- let idx = sizes.findIndex((s) => s >= current);
123648
- if (idx < 0) {
123649
- idx = sizes.length - 1;
123650
- }
123651
- const next = sizes[Math.min(sizes.length - 1, Math.max(0, idx + direction))];
123652
- if (next !== undefined) {
123653
- this.patch({ fontSize: next });
123691
+ this.patchFontSize(textFontSizePtToPx(steppedFontSizePt(this.curFontSize(), direction)));
123692
+ }
123693
+ patchFontSize(fontSize) {
123694
+ const element = this.selectedElement();
123695
+ if (!element || !isTextElement(element)) {
123696
+ return;
123654
123697
  }
123698
+ this.editor.updateElement(this.slideIndex(), element.id, textFontSizePatch(element, fontSize));
123655
123699
  }
123656
123700
  /** Clear character formatting (bold/italic/underline/strikethrough) on the selection. */
123657
123701
  clearFormatting() {
@@ -123692,6 +123736,9 @@ class RibbonFontControlsComponent {
123692
123736
  [attr.aria-label]="'pptx.ribbon.fontSize' | translate"
123693
123737
  (change)="setFontSize($event)"
123694
123738
  >
123739
+ @if (!fontSizes.includes(curFontSize())) {
123740
+ <option [value]="curFontSize()" selected>{{ curFontSize() }}</option>
123741
+ }
123695
123742
  @for (s of fontSizes; track s) {
123696
123743
  <option [value]="s" [selected]="s === curFontSize()">{{ s }}</option>
123697
123744
  }
@@ -123908,6 +123955,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.3", ngImpor
123908
123955
  [attr.aria-label]="'pptx.ribbon.fontSize' | translate"
123909
123956
  (change)="setFontSize($event)"
123910
123957
  >
123958
+ @if (!fontSizes.includes(curFontSize())) {
123959
+ <option [value]="curFontSize()" selected>{{ curFontSize() }}</option>
123960
+ }
123911
123961
  @for (s of fontSizes; track s) {
123912
123962
  <option [value]="s" [selected]="s === curFontSize()">{{ s }}</option>
123913
123963
  }
@@ -141443,7 +141493,7 @@ class InspectorPanelComponent {
141443
141493
  return;
141444
141494
  }
141445
141495
  const cur = this.el();
141446
- this.editor.updateElement(this.slideIndex(), cur.id, textStylePatch(cur, { fontSize: val }));
141496
+ this.editor.updateElement(this.slideIndex(), cur.id, textFontSizePatch(cur, textFontSizePtToPx(val)));
141447
141497
  }
141448
141498
  onBoldToggle() {
141449
141499
  const cur = this.el();
@@ -141636,8 +141686,9 @@ class InspectorPanelComponent {
141636
141686
  id="insp-font-size"
141637
141687
  class="pptx-ng-inspector__input pptx-ng-inspector__input--number"
141638
141688
  type="number"
141639
- inputmode="numeric"
141689
+ inputmode="decimal"
141640
141690
  min="1"
141691
+ step="any"
141641
141692
  [value]="seed().fontSize"
141642
141693
  (change)="onFontSizeChange($event)"
141643
141694
  />
@@ -142126,8 +142177,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.1.3", ngImpor
142126
142177
  id="insp-font-size"
142127
142178
  class="pptx-ng-inspector__input pptx-ng-inspector__input--number"
142128
142179
  type="number"
142129
- inputmode="numeric"
142180
+ inputmode="decimal"
142130
142181
  min="1"
142182
+ step="any"
142131
142183
  [value]="seed().fontSize"
142132
142184
  (change)="onFontSizeChange($event)"
142133
142185
  />
@@ -158704,5 +158756,5 @@ function cn(...values) {
158704
158756
  * Generated bundle index. Do not edit.
158705
158757
  */
158706
158758
 
158707
- export { ColorChangedImageComponent as $, AFTER_ANIMATION_VALUES as A, AnimationPanelComponent as B, AnimationPlaybackService as C, AutosaveRecoveryDialogComponent as D, AutosaveService as E, BroadcastDialogComponent as F, CHART_EDITOR_STYLES as G, CURSOR_PALETTE as H, CanvasFitService as I, ChartAxisOptionsComponent as J, ChartAxisStyleOptionsComponent as K, ChartComboTypeOptionsComponent as L, ChartDataEditorComponent as M, ChartDataLabelOptionsComponent as N, ChartDatapointMarkerOptionsComponent as O, ChartDatapointOptionsComponent as P, ChartDisplayOptionsComponent as Q, ChartElementViewComponent as R, ChartErrorBarOptionsComponent as S, ChartMarkerOptionsComponent as T, ChartPartSelectionService as U, ChartPrimitivesComponent as V, ChartRendererComponent as W, ChartTrendlineOptionsComponent as X, ChartTypeSelectorComponent as Y, CollaborationCursorsComponent as Z, CollaborationService as _, ALIGN_OPTIONS as a, InspectorPanelComponent as a$, CommentMarkersOverlayComponent as a0, CommentsPanelComponent as a1, CommentsService as a2, ComparePanelComponent as a3, ConnectorRendererComponent as a4, ConnectorTextOverlayComponent as a5, CustomShowsComponent as a6, DEFAULT_BOUNDS as a7, DEFAULT_BROADCAST_SERVER_URL as a8, DEFAULT_CANVAS_HEIGHT as a9, ElementRendererComponent as aA, EmbeddedFontsService as aB, EncryptedFileDialogComponent as aC, EquationEditorDialogComponent as aD, EquationRendererComponent as aE, EquationTemplateGalleryComponent as aF, ExportProgressModalComponent as aG, ExportService as aH, FieldContextService as aI, FindBarComponent as aJ, FindReplaceBarComponent as aK, FollowModeBarComponent as aL, FontEmbeddingListComponent as aM, FontEmbeddingPanelComponent as aN, GALLERY_THEME_PRESETS as aO, GOOGLE_WEBFONTS_LINK_ID as aP, GRIDLINE_COLOR$1 as aQ, GoogleWebfontsService 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_CANVAS_WIDTH as aa, DEFAULT_COLOR_SCHEME as ab, DEFAULT_FILL_COLOR$1 as ac, DEFAULT_LAYOUT as ad, DEFAULT_PALETTE$1 as ae, DEFAULT_PATTERN_FILL_PRESET as af, DEFAULT_PRINT_SETTINGS as ag, DEFAULT_SLIDE_BACKGROUND as ah, DEFAULT_STROKE_COLOR as ai, DEFAULT_STYLE as aj, DEFAULT_TABLE_ROW_HEIGHT as ak, DEFAULT_TEXT_COLOR$2 as al, DEFAULT_VIEWER_PROFILE as am, DIRECTIONAL_PRESETS as an, DIRECTION_OPTIONS as ao, DocumentPropertiesCardComponent as ap, EMBEDDED_FONTS_STYLE_ID as aq, EMPHASIS_PRESETS as ar, ENTRANCE_PRESETS as as, TEMPLATES as at, EXIT_PRESETS as au, EditorContextMenuComponent as av, EditorHistory as aw, EditorStateService as ax, EditorToolbarComponent as ay, EffectsPanelComponent as az, ANIMATION_PRESET_CATEGORIES 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_HASH 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, AUDIENCE_NONCE_KEY 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, AVATAR_COLOR_SWATCHES as e, buildTreemapViewModel 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, buildPieViewModel as eP, buildPrintHtmlDocument as eQ, buildPropertiesPatch as eR, buildRadarViewModel as eS, buildRegionMapViewModel as eT, buildSaveSlides as eU, buildShareUrl as eV, buildSmartArtInsertElement as eW, buildSmartArtNodes as eX, buildStockViewModel as eY, buildSurfaceViewModel as eZ, buildTableViewModel 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, AXIS_LABEL_COLOR as f, computeRotateHandleBox as f$, buildTrimFragment as f0, buildWaterfallViewModel as f1, buildZeroLine as f2, buildZoomContainerStyle as f3, buildZoomViewModel as f4, bulletIndentPx as f5, canAddTopLevelNode as f6, canGroupSelection as f7, canRemoveTopLevelNode as f8, canSetStrokeWidth as f9, collectUsedFontFamilies as fA, columnWidthStyle as fB, commitNodeText as fC, computeAlign as fD, computeAxisTitlePrimitives as fE, computeBarRects as fF, computeBubbleRadius as fG, computeCornerHandle as fH, computeDistribute as fI, computeDrawingViewBox as fJ, computeErrorBarPrimitives as fK, computeFocusTargets as fL, computeGridSpacingPx as fM, computeHandleBoxes as fN, computeHandoutLayout as fO, computeIsMobile as fP, computeIsTablet as fQ, computeLinePoints as fR, computeLinearRegression as fS, computePageCount as fT, computePieLayout as fU, computePieSlicePath as fV, computePieSlices as fW, computePlotLayout as fX, computeRSquared as fY, computeRadarPoints as fZ, computeResizeHandleBoxes as f_, canStartBroadcast as fa, canStartShare as fb, canUngroupSelection as fc, canUseClipboard as fd, captionDisplayText as fe, cellRunStyle as ff, cellStyleToStyleMap as fg, cellTdStyle as fh, changeCountLabel as fi, changeIcon as fj, characterSpacingPatch as fk, chartPreserveAspectRatio as fl, checkFontAvailable as fm, clampCursorPosition as fn, clampGifDimensions as fo, clampIndex as fp, clampNotesFontSize as fq, clampScale as fr, clampStep as fs, clearAllLocalViewerData as ft, clearAudienceContent as fu, cn as fv, collectAccessibilityIssues as fw, collectElementText as fx, collectSlideText as fy, collectStoredChats as fz, AccessibilityPanelComponent as g, formatAxisValue as g$, computeScatterDots as g0, computeScatterXDomain as g1, computeSelectionBoxes as g2, computeSingleSelected as g3, computeSlideIndices as g4, computeSnap as g5, computeStackedBarRects as g6, computeStackedValueRange as g7, computeTrendlinePrimitives as g8, computeValueRange as g9, disableSoftEdgePatch as gA, duplicateElementById as gB, durationOf as gC, effectsStateOf as gD, enableGlowPatch as gE, enableInnerShadowPatch as gF, enableOuterShadowPatch as gG, enableReflectionPatch as gH, enableSoftEdgePatch as gI, encodeGif as gJ, endShowMediaCleanup as gK, estimatePageCount as gL, exitPresentationFullscreen as gM, exportAiChatLogs as gN, extractPathPoints as gO, eyedropperAvailable as gP, fillColorOf$1 as gQ, findInSlides as gR, findOwningSlideIndex as gS, findSlideIndexByElementId as gT, firstVisibleIndex as gU, fitPolynomial as gV, fitZoom as gW, focusTargetChips as gX, fontMimeForFormat as gY, fontSizeOf as gZ, forgetSessionDeck as g_, convertOmmlToMathMl as ga, copyFormatFromElement as gb, countAccessibilityIssues as gc, countAnnotationStrokes as gd, createAngularAiBridge as ge, createCustomShow as gf, createSwipeDismissDrag as gg, createWebrtcBundle as gh, createWebsocketBundle as gi, cssObjectToStyleMap as gj, currentColorScheme as gk, currentLayout as gl, currentStyle as gm, defaultCssVars as gn, defaultRadius as go, defaultThemeColors as gp, deleteElementsByIds as gq, deleteVersion as gr, demoteNode as gs, deriveModel3DBlobUrl as gt, derivePresenceList as gu, describeSmartArtBounds as gv, disableGlowPatch as gw, disableInnerShadowPatch as gx, disableOuterShadowPatch as gy, disableReflectionPatch as gz, AccessibilityService as h, isElementInteractive as h$, formatBytes as h0, formatCursorLabel as h1, formatElapsed as h2, formatFileSize as h3, formatPropertyDate as h4, formatTime as h5, fpsToFrameIntervalMs as h6, generateBroadcastRoomId as h7, generateCommentId as h8, generateCustomShowId as h9, getTextBlockStyle as hA, getTextWarp as hB, getTouchDistance as hC, getWarpCategory as hD, getWarpPath as hE, gradientStateFromStyle as hF, gradientStateOf as hG, gradientStatePatch as hH, gridColumns as hI, groupIssuesBySeverity as hJ, hasAnimation as hK, hasCopyableFormat as hL, hasExistingLink as hM, hasExitedFullscreen as hN, hasGradientFill as hO, hasPressureVariation as hP, hasVisibleSlideAfter as hQ, headerLabel as hR, imageDimensions as hS, inkViewBox as hT, insertTableElementColumn as hU, insertTableElementRow as hV, interpolateWidth as hW, isAudienceTab as hX, isBold as hY, isBrowserOpenableMime as hZ, isChildNode as h_, generatePressureCircles as ha, generateTicks as hb, getClrChangeParams as hc, getContainerStyle as hd, getDuotoneFilterDef as he, getEffectSoundState as hf, getImageSrc as hg, getLocalStorageUsageSummary as hh, getOleAriaLabel as hi, getOleBadgeLabel as hj, getOleDisplayName as hk, getOleDownloadFileName as hl, getOleTypeColor as hm, getOleTypeLabel as hn, getPasswordStrength as ho, getPatternSvg as hp, getPlaceholderStyle as hq, getVersions as hr, getResolvedShapeClipPath as hs, getResolvedShapeClipPathFor as ht, getSessionTabId as hu, getShapeFillStrokeStyle as hv, getSlideBackgroundStyle as hw, getSlideTransitionAnimations as hx, getSmartArtNodeBounds as hy, getSpeechRecognitionCtor as hz, AccountPageComponent as i, overallStatus as i$, isInjectableUrl as i0, isItalic as i1, isLegacyBinaryPresentation as i2, isPpactionUrl as i3, isPresenterMessage as i4, isSigned as i5, isSupportedPresentationFile as i6, isTextElement as i7, isTwoTableFocus as i8, isUnderline as i9, moveNodeUp as iA, msToFrameDelayCs as iB, narrowToCircle as iC, narrowToPolygon as iD, narrowToRect as iE, newChartElement as iF, newEquationElement as iG, newPresetShapeElement as iH, newShapeElement as iI, newSmartArtElement as iJ, newTableElement as iK, newTextElement as iL, nextVisibleIndex as iM, nodeBold as iN, nodeEditBox as iO, nodeFillColor as iP, nodeFontColor as iQ, nodeIdFromKey as iR, nodeItalic as iS, nodeStyle as iT, normalizeFontFormat as iU, normalizeSlidesPerPage as iV, normalizeValue as iW, numFromEvent as iX, ommlToMathml as iY, ooxmlDashToCssBorderStyle as iZ, openNativeEyeDropper as i_, isUrlSafe as ia, isValidRoomId as ib, isViewportBackgroundPressTarget as ic, isZoomActivationKey as id, issueTrackKey as ie, issueTypeLabel as ig, keyToLabel as ih, lastVisibleIndex as ii, latexToMathml as ij, layoutConnectorPaints as ik, layoutNodeLabels as il, linePointsToSvgString as im, lineSpacingPatch as io, loadAudienceContent as ip, loadSessionDeck as iq, mediaFallbackFor as ir, mediaSurfaceFor as is, mergeCaptionResults as it, mergeDown as iu, mergeRight as iv, mergeSelection as iw, mergeTablesDirective as ix, moveElementBy as iy, moveNodeDown as iz, ActionSettingsPanelComponent as j, resolveTransitionDuration as j$, paletteColor as j0, parseAudienceNonce as j1, parseNodeTextarea as j2, partitionSlides as j3, patchChartData as j4, patchChartStyle as j5, patchTableData as j6, patchTextStyle as j7, patternPresetOptions as j8, pendingElementStyles as j9, removeCommentFromList as jA, removeElementAnimation as jB, removeGradientStopPatch as jC, removeNode as jD, removeTableElementRow as jE, removeSeries as jF, renderToCanvas as jG, reorderAnimationDown as jH, reorderAnimationUp as jI, replaceInSlides as jJ, replaceMatch as jK, requestPresentationFullscreen as jL, resizeElement as jM, resolveCaptionTracks as jN, resolveChartKind as jO, resolveFontVariant as jP, resolveHyperlinkHref as jQ, resolveInteractiveElementId as jR, resolveMediaSrc as jS, resolveOleType as jT, resolveParagraphBullet as jU, resolvePresenterNotes as jV, resolveProfileInitial as jW, resolveRegionCode as jX, resolveSlideAutoAdvanceMs as jY, resolvePalette as jZ, resolveThemeCatalogEntry as j_, pickColorByClickFallback as ja, pickFile as jb, pickSupportedMimeType as jc, planGifFrames as jd, planVideoSegments as je, pointsToSvgPathD as jf, presenceToCursors as jg, presentationBaseName as jh, presentationStageStyle as ji, presenterTimerProgress as jj, presetByLayout as jk, presetsForCategory as jl, pressuresToWidths as jm, prevVisibleIndex as jn, projectDrawingShapes as jo, promoteNode as jp, provideViewerTheme as jq, radarAngle as jr, radarRingPoints as js, readAsDataUrl as jt, recordWebm as ju, registerCrossSlideAudio as jv, rememberSessionDeck as jw, removeAnimation as jx, removeCategory as jy, removeTableElementColumn as jz, AdvancedChartEditorComponent as k, setTimingCurve as k$, restoreSessionDeck as k0, revealedElementStyles as k1, routeOrthogonalConnector as k2, rowStyle as k3, rulerDragToGuidePosition as k4, rulerHighlight as k5, rulerStripTicks as k6, sampleColorFromSlide as k7, sanitizeColor as k8, sanitizeSlideIndex as k9, setColorScheme as kA, setDataLabels as kB, setDataPointExplosion as kC, setDataPointFill as kD, setDataPointLabel as kE, setDataPointMarker as kF, setDelay as kG, setDirection as kH, setDuration as kI, setEffectSound as kJ, setElementPosition as kK, setGridlineStyle as kL, setLayout as kM, setLegend as kN, setNodeStyle as kO, setNodeText as kP, setRepeatCount as kQ, setRepeatMode as kR, setSequence as kS, setSeriesChartType as kT, setSeriesColor as kU, setSeriesErrorBars as kV, setSeriesMarker as kW, setSeriesName as kX, setSeriesTrendline as kY, setSeriesValue as kZ, setStyle as k_, sanitizeUserName as ka, saveViewerProfile as kb, savedPresentationFileName as kc, scanAvailableFonts as kd, searchSlides as ke, seedBroadcastFields as kf, seedHyperlinkDraft as kg, seedPropertiesDraft as kh, seedShareFields as ki, segmentFrameCount as kj, selectValue$3 as kk, sendBackward as kl, sendToBack as km, sequentialColorScale as kn, serializeWriteBack as ko, seriesColor as kp, setAfterAnimation as kq, setAfterAnimationColor as kr, setAnimationEmphasis as ks, setAnimationEntrance as kt, setAnimationExit as ku, setAxis as kv, setAxisLogScale as kw, setAxisTitleStyle as kx, setCategoryLabel as ky, setCellText as kz, AiChangeOverlayComponent as l, vermilionRadius as l$, setTitle as l0, setTrigger as l1, setTriggerShapeId as l2, shapeStylePatch$1 as l3, sheetAfterNavigate as l4, shouldBlockClickAdvance as l5, shouldUseSvgWarp as l6, showDirectionPicker as l7, showsTemplateAffordance as l8, signatureCountLabel as l9, textStylePatch as lA, themeStyle as lB, themeToCssVars as lC, thumbnailHeight as lD, thumbnailZoom as lE, toggleCommentResolvedInList as lF, toggleNodeBold as lG, toggleNodeItalic as lH, toggleSheet as lI, topLevelNodeCount as lJ, transformSelectedTextCase as lK, translationsEn as lL, updateElementById as lM, updateGlowPatch as lN, updateGradientStopPatch as lO, updateInnerShadowPatch as lP, updateOuterShadowPatch as lQ, updateReflectionPatch as lR, vAlignPatch as lS, validatePassword as lT, validatePrintSettings as lU, validateRoomId as lV, valueToY as lW, vermilionDarkColors as lX, vermilionDarkTheme as lY, vermilionLightColors as lZ, vermilionLightTheme as l_, signatureKey as la, signatureTimestamp as lb, signerName as lc, statusLabel as ld, slideNumberOf as le, slidesWithReappliedLayout as lf, smartArtNodes as lg, paletteColour as lh, snapToGridStep as li, splitCursorCell as lj, splitMergedCell as lk, statusKind as ll, statusLabel$1 as lm, storeAudienceContent as ln, stringFromEvent$5 as lo, strokeColorOf as lp, strokeToInkElement as lq, strokeWidthOf as lr, styleShadowFilter as ls, surfaceColor as lt, textAdvancedPatch as lu, textAdvancedStateFromStyle as lv, textAdvancedStateOf as lw, textColorOf as lx, textDirectionPatch as ly, textStyleOf as lz, AiChatPanelComponent as m, waypointsToPathD as m0, withManualLayouts as m1, worstStatus as m2, zoomTargetSlideIndex as m3, AiChatService as n, AiComposerComponent as o, AiFocusBarComponent as p, AiFocusHighlightOverlayComponent as q, AiHistoryMenuComponent as r, AiHistoryService as s, toChatSummary as t, AiMessageListComponent as u, AiPanelStore as v, AiProposalCardComponent as w, AiSettingsSectionComponent as x, AiToolCallCardComponent as y, AnimationAuthorPanelComponent as z };
158708
- //# sourceMappingURL=pptx-angular-viewer-pptx-angular-viewer-DYmBNrLg.mjs.map
158759
+ export { ColorChangedImageComponent as $, AFTER_ANIMATION_VALUES as A, AnimationPanelComponent as B, AnimationPlaybackService as C, AutosaveRecoveryDialogComponent as D, AutosaveService as E, BroadcastDialogComponent as F, CHART_EDITOR_STYLES as G, CURSOR_PALETTE as H, CanvasFitService as I, ChartAxisOptionsComponent as J, ChartAxisStyleOptionsComponent as K, ChartComboTypeOptionsComponent as L, ChartDataEditorComponent as M, ChartDataLabelOptionsComponent as N, ChartDatapointMarkerOptionsComponent as O, ChartDatapointOptionsComponent as P, ChartDisplayOptionsComponent as Q, ChartElementViewComponent as R, ChartErrorBarOptionsComponent as S, ChartMarkerOptionsComponent as T, ChartPartSelectionService as U, ChartPrimitivesComponent as V, ChartRendererComponent as W, ChartTrendlineOptionsComponent as X, ChartTypeSelectorComponent as Y, CollaborationCursorsComponent as Z, CollaborationService as _, ALIGN_OPTIONS as a, InspectorPanelComponent as a$, CommentMarkersOverlayComponent as a0, CommentsPanelComponent as a1, CommentsService as a2, ComparePanelComponent as a3, ConnectorRendererComponent as a4, ConnectorTextOverlayComponent as a5, CustomShowsComponent as a6, DEFAULT_BOUNDS as a7, DEFAULT_BROADCAST_SERVER_URL as a8, DEFAULT_CANVAS_HEIGHT as a9, ElementRendererComponent as aA, EmbeddedFontsService as aB, EncryptedFileDialogComponent as aC, EquationEditorDialogComponent as aD, EquationRendererComponent as aE, EquationTemplateGalleryComponent as aF, ExportProgressModalComponent as aG, ExportService as aH, FieldContextService as aI, FindBarComponent as aJ, FindReplaceBarComponent as aK, FollowModeBarComponent as aL, FontEmbeddingListComponent as aM, FontEmbeddingPanelComponent as aN, GALLERY_THEME_PRESETS as aO, GOOGLE_WEBFONTS_LINK_ID as aP, GRIDLINE_COLOR$1 as aQ, GoogleWebfontsService 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_CANVAS_WIDTH as aa, DEFAULT_COLOR_SCHEME as ab, DEFAULT_FILL_COLOR$1 as ac, DEFAULT_LAYOUT as ad, DEFAULT_PALETTE$1 as ae, DEFAULT_PATTERN_FILL_PRESET as af, DEFAULT_PRINT_SETTINGS as ag, DEFAULT_SLIDE_BACKGROUND as ah, DEFAULT_STROKE_COLOR as ai, DEFAULT_STYLE as aj, DEFAULT_TABLE_ROW_HEIGHT as ak, DEFAULT_TEXT_COLOR$2 as al, DEFAULT_VIEWER_PROFILE as am, DIRECTIONAL_PRESETS as an, DIRECTION_OPTIONS as ao, DocumentPropertiesCardComponent as ap, EMBEDDED_FONTS_STYLE_ID as aq, EMPHASIS_PRESETS as ar, ENTRANCE_PRESETS as as, TEMPLATES as at, EXIT_PRESETS as au, EditorContextMenuComponent as av, EditorHistory as aw, EditorStateService as ax, EditorToolbarComponent as ay, EffectsPanelComponent as az, ANIMATION_PRESET_CATEGORIES 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_HASH 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, AUDIENCE_NONCE_KEY 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, AVATAR_COLOR_SWATCHES as e, buildTreemapViewModel 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, buildPieViewModel as eP, buildPrintHtmlDocument as eQ, buildPropertiesPatch as eR, buildRadarViewModel as eS, buildRegionMapViewModel as eT, buildSaveSlides as eU, buildShareUrl as eV, buildSmartArtInsertElement as eW, buildSmartArtNodes as eX, buildStockViewModel as eY, buildSurfaceViewModel as eZ, buildTableViewModel 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, AXIS_LABEL_COLOR as f, computeRotateHandleBox as f$, buildTrimFragment as f0, buildWaterfallViewModel as f1, buildZeroLine as f2, buildZoomContainerStyle as f3, buildZoomViewModel as f4, bulletIndentPx as f5, canAddTopLevelNode as f6, canGroupSelection as f7, canRemoveTopLevelNode as f8, canSetStrokeWidth as f9, collectUsedFontFamilies as fA, columnWidthStyle as fB, commitNodeText as fC, computeAlign as fD, computeAxisTitlePrimitives as fE, computeBarRects as fF, computeBubbleRadius as fG, computeCornerHandle as fH, computeDistribute as fI, computeDrawingViewBox as fJ, computeErrorBarPrimitives as fK, computeFocusTargets as fL, computeGridSpacingPx as fM, computeHandleBoxes as fN, computeHandoutLayout as fO, computeIsMobile as fP, computeIsTablet as fQ, computeLinePoints as fR, computeLinearRegression as fS, computePageCount as fT, computePieLayout as fU, computePieSlicePath as fV, computePieSlices as fW, computePlotLayout as fX, computeRSquared as fY, computeRadarPoints as fZ, computeResizeHandleBoxes as f_, canStartBroadcast as fa, canStartShare as fb, canUngroupSelection as fc, canUseClipboard as fd, captionDisplayText as fe, cellRunStyle as ff, cellStyleToStyleMap as fg, cellTdStyle as fh, changeCountLabel as fi, changeIcon as fj, characterSpacingPatch as fk, chartPreserveAspectRatio as fl, checkFontAvailable as fm, clampCursorPosition as fn, clampGifDimensions as fo, clampIndex as fp, clampNotesFontSize as fq, clampScale as fr, clampStep as fs, clearAllLocalViewerData as ft, clearAudienceContent as fu, cn as fv, collectAccessibilityIssues as fw, collectElementText as fx, collectSlideText as fy, collectStoredChats as fz, AccessibilityPanelComponent as g, formatAxisValue as g$, computeScatterDots as g0, computeScatterXDomain as g1, computeSelectionBoxes as g2, computeSingleSelected as g3, computeSlideIndices as g4, computeSnap as g5, computeStackedBarRects as g6, computeStackedValueRange as g7, computeTrendlinePrimitives as g8, computeValueRange as g9, disableSoftEdgePatch as gA, duplicateElementById as gB, durationOf as gC, effectsStateOf as gD, enableGlowPatch as gE, enableInnerShadowPatch as gF, enableOuterShadowPatch as gG, enableReflectionPatch as gH, enableSoftEdgePatch as gI, encodeGif as gJ, endShowMediaCleanup as gK, estimatePageCount as gL, exitPresentationFullscreen as gM, exportAiChatLogs as gN, extractPathPoints as gO, eyedropperAvailable as gP, fillColorOf$1 as gQ, findInSlides as gR, findOwningSlideIndex as gS, findSlideIndexByElementId as gT, firstVisibleIndex as gU, fitPolynomial as gV, fitZoom as gW, focusTargetChips as gX, fontMimeForFormat as gY, fontSizeOf as gZ, forgetSessionDeck as g_, convertOmmlToMathMl as ga, copyFormatFromElement as gb, countAccessibilityIssues as gc, countAnnotationStrokes as gd, createAngularAiBridge as ge, createCustomShow as gf, createSwipeDismissDrag as gg, createWebrtcBundle as gh, createWebsocketBundle as gi, cssObjectToStyleMap as gj, currentColorScheme as gk, currentLayout as gl, currentStyle as gm, defaultCssVars as gn, defaultRadius as go, defaultThemeColors as gp, deleteElementsByIds as gq, deleteVersion as gr, demoteNode as gs, deriveModel3DBlobUrl as gt, derivePresenceList as gu, describeSmartArtBounds as gv, disableGlowPatch as gw, disableInnerShadowPatch as gx, disableOuterShadowPatch as gy, disableReflectionPatch as gz, AccessibilityService as h, isElementInteractive as h$, formatBytes as h0, formatCursorLabel as h1, formatElapsed as h2, formatFileSize as h3, formatPropertyDate as h4, formatTime as h5, fpsToFrameIntervalMs as h6, generateBroadcastRoomId as h7, generateCommentId as h8, generateCustomShowId as h9, getTextBlockStyle as hA, getTextWarp as hB, getTouchDistance as hC, getWarpCategory as hD, getWarpPath as hE, gradientStateFromStyle as hF, gradientStateOf as hG, gradientStatePatch as hH, gridColumns as hI, groupIssuesBySeverity as hJ, hasAnimation as hK, hasCopyableFormat as hL, hasExistingLink as hM, hasExitedFullscreen as hN, hasGradientFill as hO, hasPressureVariation as hP, hasVisibleSlideAfter as hQ, headerLabel as hR, imageDimensions as hS, inkViewBox as hT, insertTableElementColumn as hU, insertTableElementRow as hV, interpolateWidth as hW, isAudienceTab as hX, isBold as hY, isBrowserOpenableMime as hZ, isChildNode as h_, generatePressureCircles as ha, generateTicks as hb, getClrChangeParams as hc, getContainerStyle as hd, getDuotoneFilterDef as he, getEffectSoundState as hf, getImageSrc as hg, getLocalStorageUsageSummary as hh, getOleAriaLabel as hi, getOleBadgeLabel as hj, getOleDisplayName as hk, getOleDownloadFileName as hl, getOleTypeColor as hm, getOleTypeLabel as hn, getPasswordStrength as ho, getPatternSvg as hp, getPlaceholderStyle as hq, getVersions as hr, getResolvedShapeClipPath as hs, getResolvedShapeClipPathFor as ht, getSessionTabId as hu, getShapeFillStrokeStyle as hv, getSlideBackgroundStyle as hw, getSlideTransitionAnimations as hx, getSmartArtNodeBounds as hy, getSpeechRecognitionCtor as hz, AccountPageComponent as i, overallStatus as i$, isInjectableUrl as i0, isItalic as i1, isLegacyBinaryPresentation as i2, isPpactionUrl as i3, isPresenterMessage as i4, isSigned as i5, isSupportedPresentationFile as i6, isTextElement as i7, isTwoTableFocus as i8, isUnderline as i9, moveNodeUp as iA, msToFrameDelayCs as iB, narrowToCircle as iC, narrowToPolygon as iD, narrowToRect as iE, newChartElement as iF, newEquationElement as iG, newPresetShapeElement as iH, newShapeElement as iI, newSmartArtElement as iJ, newTableElement as iK, newTextElement as iL, nextVisibleIndex as iM, nodeBold as iN, nodeEditBox as iO, nodeFillColor as iP, nodeFontColor as iQ, nodeIdFromKey as iR, nodeItalic as iS, nodeStyle as iT, normalizeFontFormat as iU, normalizeSlidesPerPage as iV, normalizeValue as iW, numFromEvent as iX, ommlToMathml as iY, ooxmlDashToCssBorderStyle as iZ, openNativeEyeDropper as i_, isUrlSafe as ia, isValidRoomId as ib, isViewportBackgroundPressTarget as ic, isZoomActivationKey as id, issueTrackKey as ie, issueTypeLabel as ig, keyToLabel as ih, lastVisibleIndex as ii, latexToMathml as ij, layoutConnectorPaints as ik, layoutNodeLabels as il, linePointsToSvgString as im, lineSpacingPatch as io, loadAudienceContent as ip, loadSessionDeck as iq, mediaFallbackFor as ir, mediaSurfaceFor as is, mergeCaptionResults as it, mergeDown as iu, mergeRight as iv, mergeSelection as iw, mergeTablesDirective as ix, moveElementBy as iy, moveNodeDown as iz, ActionSettingsPanelComponent as j, resolveTransitionDuration as j$, paletteColor as j0, parseAudienceNonce as j1, parseNodeTextarea as j2, partitionSlides as j3, patchChartData as j4, patchChartStyle as j5, patchTableData as j6, patchTextStyle as j7, patternPresetOptions as j8, pendingElementStyles as j9, removeCommentFromList as jA, removeElementAnimation as jB, removeGradientStopPatch as jC, removeNode as jD, removeTableElementRow as jE, removeSeries as jF, renderToCanvas as jG, reorderAnimationDown as jH, reorderAnimationUp as jI, replaceInSlides as jJ, replaceMatch as jK, requestPresentationFullscreen as jL, resizeElement as jM, resolveCaptionTracks as jN, resolveChartKind as jO, resolveFontVariant as jP, resolveHyperlinkHref as jQ, resolveInteractiveElementId as jR, resolveMediaSrc as jS, resolveOleType as jT, resolveParagraphBullet as jU, resolvePresenterNotes as jV, resolveProfileInitial as jW, resolveRegionCode as jX, resolveSlideAutoAdvanceMs as jY, resolvePalette as jZ, resolveThemeCatalogEntry as j_, pickColorByClickFallback as ja, pickFile as jb, pickSupportedMimeType as jc, planGifFrames as jd, planVideoSegments as je, pointsToSvgPathD as jf, presenceToCursors as jg, presentationBaseName as jh, presentationStageStyle as ji, presenterTimerProgress as jj, presetByLayout as jk, presetsForCategory as jl, pressuresToWidths as jm, prevVisibleIndex as jn, projectDrawingShapes as jo, promoteNode as jp, provideViewerTheme as jq, radarAngle as jr, radarRingPoints as js, readAsDataUrl as jt, recordWebm as ju, registerCrossSlideAudio as jv, rememberSessionDeck as jw, removeAnimation as jx, removeCategory as jy, removeTableElementColumn as jz, AdvancedChartEditorComponent as k, setTimingCurve as k$, restoreSessionDeck as k0, revealedElementStyles as k1, routeOrthogonalConnector as k2, rowStyle as k3, rulerDragToGuidePosition as k4, rulerHighlight as k5, rulerStripTicks as k6, sampleColorFromSlide as k7, sanitizeColor as k8, sanitizeSlideIndex as k9, setColorScheme as kA, setDataLabels as kB, setDataPointExplosion as kC, setDataPointFill as kD, setDataPointLabel as kE, setDataPointMarker as kF, setDelay as kG, setDirection as kH, setDuration as kI, setEffectSound as kJ, setElementPosition as kK, setGridlineStyle as kL, setLayout as kM, setLegend as kN, setNodeStyle as kO, setNodeText as kP, setRepeatCount as kQ, setRepeatMode as kR, setSequence as kS, setSeriesChartType as kT, setSeriesColor as kU, setSeriesErrorBars as kV, setSeriesMarker as kW, setSeriesName as kX, setSeriesTrendline as kY, setSeriesValue as kZ, setStyle as k_, sanitizeUserName as ka, saveViewerProfile as kb, savedPresentationFileName as kc, scanAvailableFonts as kd, searchSlides as ke, seedBroadcastFields as kf, seedHyperlinkDraft as kg, seedPropertiesDraft as kh, seedShareFields as ki, segmentFrameCount as kj, selectValue$3 as kk, sendBackward as kl, sendToBack as km, sequentialColorScale as kn, serializeWriteBack as ko, seriesColor as kp, setAfterAnimation as kq, setAfterAnimationColor as kr, setAnimationEmphasis as ks, setAnimationEntrance as kt, setAnimationExit as ku, setAxis as kv, setAxisLogScale as kw, setAxisTitleStyle as kx, setCategoryLabel as ky, setCellText as kz, AiChangeOverlayComponent as l, vermilionLightTheme as l$, setTitle as l0, setTrigger as l1, setTriggerShapeId as l2, shapeStylePatch$1 as l3, sheetAfterNavigate as l4, shouldBlockClickAdvance as l5, shouldUseSvgWarp as l6, showDirectionPicker as l7, showsTemplateAffordance as l8, signatureCountLabel as l9, textStyleOf as lA, textStylePatch as lB, themeStyle as lC, themeToCssVars as lD, thumbnailHeight as lE, thumbnailZoom as lF, toggleCommentResolvedInList as lG, toggleNodeBold as lH, toggleNodeItalic as lI, toggleSheet as lJ, topLevelNodeCount as lK, transformSelectedTextCase as lL, translationsEn as lM, updateElementById as lN, updateGlowPatch as lO, updateGradientStopPatch as lP, updateInnerShadowPatch as lQ, updateOuterShadowPatch as lR, updateReflectionPatch as lS, vAlignPatch as lT, validatePassword as lU, validatePrintSettings as lV, validateRoomId as lW, valueToY as lX, vermilionDarkColors as lY, vermilionDarkTheme as lZ, vermilionLightColors as l_, signatureKey as la, signatureTimestamp as lb, signerName as lc, statusLabel as ld, slideNumberOf as le, slidesWithReappliedLayout as lf, smartArtNodes as lg, paletteColour as lh, snapToGridStep as li, splitCursorCell as lj, splitMergedCell as lk, statusKind as ll, statusLabel$1 as lm, storeAudienceContent as ln, stringFromEvent$5 as lo, strokeColorOf as lp, strokeToInkElement as lq, strokeWidthOf as lr, styleShadowFilter as ls, surfaceColor as lt, textAdvancedPatch as lu, textAdvancedStateFromStyle as lv, textAdvancedStateOf as lw, textColorOf as lx, textDirectionPatch as ly, textFontSizePatch as lz, AiChatPanelComponent as m, vermilionRadius as m0, waypointsToPathD as m1, withManualLayouts as m2, worstStatus as m3, zoomTargetSlideIndex as m4, AiChatService as n, AiComposerComponent as o, AiFocusBarComponent as p, AiFocusHighlightOverlayComponent as q, AiHistoryMenuComponent as r, AiHistoryService as s, toChatSummary as t, AiMessageListComponent as u, AiPanelStore as v, AiProposalCardComponent as w, AiSettingsSectionComponent as x, AiToolCallCardComponent as y, AnimationAuthorPanelComponent as z };
158760
+ //# sourceMappingURL=pptx-angular-viewer-pptx-angular-viewer-CoBWqWD0.mjs.map