pptx-angular-viewer 1.13.2 → 1.14.1

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.
@@ -21304,6 +21304,72 @@ function findTextPositionInSegment(editor, segIdx, charOffset) {
21304
21304
  return null;
21305
21305
  }
21306
21306
 
21307
+ /** Sentence-ending punctuation that starts a new sentence for `'sentence'` mode. */
21308
+ const SENTENCE_END_RE = /([.!?]\s+)/u;
21309
+ /** Transform a plain-text string per the given Change Case mode. */
21310
+ function transformTextCase(text, mode) {
21311
+ switch (mode) {
21312
+ case 'upper':
21313
+ return text.toUpperCase();
21314
+ case 'lower':
21315
+ return text.toLowerCase();
21316
+ case 'toggle':
21317
+ return Array.from(text)
21318
+ .map((ch) => (ch === ch.toUpperCase() ? ch.toLowerCase() : ch.toUpperCase()))
21319
+ .join('');
21320
+ case 'capitalize':
21321
+ return text.replace(/\p{L}[\p{L}\p{N}'’]*/gu, (word) => word.charAt(0).toUpperCase() + word.slice(1).toLowerCase());
21322
+ case 'sentence':
21323
+ return text
21324
+ .toLowerCase()
21325
+ .split(SENTENCE_END_RE)
21326
+ .map((part) => {
21327
+ const firstLetter = part.search(/\p{L}/u);
21328
+ if (firstLetter === -1) {
21329
+ return part;
21330
+ }
21331
+ return (part.slice(0, firstLetter) +
21332
+ part.charAt(firstLetter).toUpperCase() +
21333
+ part.slice(firstLetter + 1));
21334
+ })
21335
+ .join('');
21336
+ default:
21337
+ return text;
21338
+ }
21339
+ }
21340
+ /**
21341
+ * Apply a Change Case transform to a set of text segments, either within an
21342
+ * inline-editor selection range (mirrors {@link applyStyleToSelectedSegments})
21343
+ * or, when `selection` is `null`, across every segment's text.
21344
+ */
21345
+ function applyCaseTransformToSegments(segments, selection, mode) {
21346
+ if (!selection) {
21347
+ return segments.map((seg) => seg.isParagraphBreak || seg.text === '\n'
21348
+ ? seg
21349
+ : { ...seg, text: transformTextCase(seg.text, mode) });
21350
+ }
21351
+ const { startSegIdx, startOffset, endSegIdx, endOffset } = selection;
21352
+ const result = [];
21353
+ for (let i = 0; i < segments.length; i++) {
21354
+ const seg = segments[i];
21355
+ if (seg.isParagraphBreak || seg.text === '\n' || i < startSegIdx || i > endSegIdx) {
21356
+ result.push(seg);
21357
+ continue;
21358
+ }
21359
+ const from = i === startSegIdx ? startOffset : 0;
21360
+ const to = i === endSegIdx ? endOffset : seg.text.length;
21361
+ if (from >= to) {
21362
+ result.push(seg);
21363
+ continue;
21364
+ }
21365
+ const before = seg.text.slice(0, from);
21366
+ const selected = transformTextCase(seg.text.slice(from, to), mode);
21367
+ const after = seg.text.slice(to);
21368
+ result.push({ ...seg, text: before + selected + after });
21369
+ }
21370
+ return result;
21371
+ }
21372
+
21307
21373
  /**
21308
21374
  * Linked text box overflow utilities.
21309
21375
  *
@@ -32609,6 +32675,419 @@ const MATERIAL_PRESETS = [
32609
32675
  { value: 'translucentPowder', label: 'Translucent Powder' },
32610
32676
  ];
32611
32677
 
32678
+ /** MIME type bindings should use when writing the payload as a custom clipboard format. */
32679
+ const ELEMENT_CLIPBOARD_MIME_TYPE = 'application/x-pptx-viewer-elements+json';
32680
+ /** Marker identifying a serialized element-clipboard payload. */
32681
+ const ELEMENT_CLIPBOARD_MARKER = 'pptx-viewer/elements';
32682
+ /** Current codec version; {@link deserializeElementClipboard} rejects others. */
32683
+ const ELEMENT_CLIPBOARD_VERSION = 1;
32684
+ /** Standard paste/duplicate cascade offset in px (applied to both axes). */
32685
+ const PASTE_OFFSET_PX = 20;
32686
+ /** Generate a unique element id (`el-<timestamp>-<random>`). */
32687
+ function generateElementId() {
32688
+ return `el-${Date.now()}-${Math.random().toString(36).slice(2, 8)}`;
32689
+ }
32690
+ /**
32691
+ * Build the id for a pasted / duplicated clone so that it routes to the same
32692
+ * store it is inserted into.
32693
+ *
32694
+ * In edit-template mode the clone lands in the template store, so it must keep
32695
+ * a template (`master-` / `layout-`) prefix; otherwise later edits (which route
32696
+ * by id prefix) would target the wrong store and be lost. Outside template mode
32697
+ * a normal id is generated.
32698
+ */
32699
+ function makeCloneId(intoTemplate, sourceId) {
32700
+ if (!intoTemplate) {
32701
+ return generateElementId();
32702
+ }
32703
+ if (sourceId.startsWith('master-')) {
32704
+ return `master-${generateElementId()}`;
32705
+ }
32706
+ return `layout-${generateElementId()}`;
32707
+ }
32708
+ /**
32709
+ * Snapshot a copied/cut element into the in-memory clipboard payload.
32710
+ * Deep-clones so later canvas edits never mutate the clipboard content.
32711
+ */
32712
+ function buildElementClipboardPayload(element, isTemplate) {
32713
+ return { element: structuredClone(element), isTemplate };
32714
+ }
32715
+ /**
32716
+ * Produce the clone inserted by paste/duplicate: a deep copy with a fresh
32717
+ * (template-prefix aware) id and the standard cascade offset applied.
32718
+ */
32719
+ function cloneElementForPaste(element, options = {}) {
32720
+ const clone = structuredClone(element);
32721
+ clone.id = makeCloneId(options.intoTemplate ?? false, element.id);
32722
+ clone.x += options.offsetX ?? PASTE_OFFSET_PX;
32723
+ clone.y += options.offsetY ?? PASTE_OFFSET_PX;
32724
+ return clone;
32725
+ }
32726
+ /** Clone every element in decoded clipboard data for insertion (fresh ids + offset). */
32727
+ function prepareElementsForPaste(data, options = {}) {
32728
+ return data.elements.map((element) => cloneElementForPaste(element, options));
32729
+ }
32730
+ /** Tag used to mark base64-encoded binary fields inside the JSON payload. */
32731
+ const BINARY_TAG = '__pptxU8';
32732
+ function uint8ToBase64(bytes) {
32733
+ let binary = '';
32734
+ for (let i = 0; i < bytes.length; i++) {
32735
+ binary += String.fromCharCode(bytes[i]);
32736
+ }
32737
+ return btoa(binary);
32738
+ }
32739
+ function base64ToUint8(base64) {
32740
+ const binary = atob(base64);
32741
+ const bytes = new Uint8Array(binary.length);
32742
+ for (let i = 0; i < binary.length; i++) {
32743
+ bytes[i] = binary.charCodeAt(i);
32744
+ }
32745
+ return bytes;
32746
+ }
32747
+ /**
32748
+ * Serialize elements to the marked, versioned JSON clipboard string.
32749
+ * `Uint8Array` fields anywhere in the element tree (embedded workbooks, raw
32750
+ * part bytes) are base64-tagged so they survive the text round trip.
32751
+ */
32752
+ function serializeElementClipboard(elements, isTemplate = false) {
32753
+ return JSON.stringify({
32754
+ marker: ELEMENT_CLIPBOARD_MARKER,
32755
+ version: ELEMENT_CLIPBOARD_VERSION,
32756
+ isTemplate,
32757
+ elements,
32758
+ }, (_key, value) => {
32759
+ if (value instanceof Uint8Array) {
32760
+ return { [BINARY_TAG]: uint8ToBase64(value) };
32761
+ }
32762
+ return value;
32763
+ });
32764
+ }
32765
+ function isElementLike(value) {
32766
+ if (typeof value !== 'object' || value === null) {
32767
+ return false;
32768
+ }
32769
+ const candidate = value;
32770
+ return (typeof candidate.id === 'string' &&
32771
+ typeof candidate.type === 'string' &&
32772
+ typeof candidate.x === 'number' &&
32773
+ typeof candidate.y === 'number' &&
32774
+ typeof candidate.width === 'number' &&
32775
+ typeof candidate.height === 'number');
32776
+ }
32777
+ /**
32778
+ * Decode a clipboard string produced by {@link serializeElementClipboard}.
32779
+ * Returns `null` for anything else (foreign clipboard text, malformed JSON,
32780
+ * wrong marker/version, or structurally invalid elements), so callers can fall
32781
+ * back to their plain-text paste path.
32782
+ */
32783
+ function deserializeElementClipboard(text) {
32784
+ let parsed;
32785
+ try {
32786
+ parsed = JSON.parse(text, (_key, value) => {
32787
+ if (typeof value === 'object' && value !== null) {
32788
+ const tagged = value[BINARY_TAG];
32789
+ if (typeof tagged === 'string') {
32790
+ return base64ToUint8(tagged);
32791
+ }
32792
+ }
32793
+ return value;
32794
+ });
32795
+ }
32796
+ catch {
32797
+ return null;
32798
+ }
32799
+ if (typeof parsed !== 'object' || parsed === null) {
32800
+ return null;
32801
+ }
32802
+ const candidate = parsed;
32803
+ if (candidate.marker !== ELEMENT_CLIPBOARD_MARKER ||
32804
+ candidate.version !== ELEMENT_CLIPBOARD_VERSION ||
32805
+ !Array.isArray(candidate.elements) ||
32806
+ candidate.elements.length === 0 ||
32807
+ !candidate.elements.every(isElementLike)) {
32808
+ return null;
32809
+ }
32810
+ return {
32811
+ elements: candidate.elements,
32812
+ isTemplate: candidate.isTemplate === true,
32813
+ };
32814
+ }
32815
+
32816
+ /**
32817
+ * shape-preset-catalog.ts: the Insert > Shape picker catalogue shared by every
32818
+ * binding's toolbar/inspector.
32819
+ *
32820
+ * Pure data: each entry carries the preset geometry `type` (OOXML `a:prstGeom`
32821
+ * value the editor can insert), an English fallback `label`, the shared-i18n
32822
+ * `i18nKey`, and a framework-neutral icon descriptor ({@link ShapePresetGlyph}
32823
+ * name + optional utility-class modifier for rotation/skew). Each binding maps
32824
+ * the glyph name onto its own icon component/SVG.
32825
+ *
32826
+ * Order matters: bindings surface the first 12 entries as the quick "top
32827
+ * shapes" row, so new presets should be appended, not inserted.
32828
+ *
32829
+ * @module render/shape-preset-catalog
32830
+ */
32831
+ /** The Insert > Shape picker catalogue (see module docs for ordering rules). */
32832
+ const SHAPE_PRESET_DEFS = [
32833
+ {
32834
+ type: 'rect',
32835
+ label: 'Rectangle',
32836
+ i18nKey: 'pptx.editorToolbar.shapeRectangle',
32837
+ glyph: 'square',
32838
+ glyphClass: '',
32839
+ },
32840
+ {
32841
+ type: 'roundRect',
32842
+ label: 'Rounded',
32843
+ i18nKey: 'pptx.shapePresets.rounded',
32844
+ glyph: 'square',
32845
+ glyphClass: '',
32846
+ },
32847
+ {
32848
+ type: 'ellipse',
32849
+ label: 'Circle',
32850
+ i18nKey: 'pptx.shapePresets.circle',
32851
+ glyph: 'circle',
32852
+ glyphClass: '',
32853
+ },
32854
+ {
32855
+ type: 'cylinder',
32856
+ label: 'Cylinder',
32857
+ i18nKey: 'pptx.shapePresets.cylinder',
32858
+ glyph: 'database',
32859
+ glyphClass: '',
32860
+ },
32861
+ {
32862
+ type: 'rtArrow',
32863
+ label: 'Right Arrow',
32864
+ i18nKey: 'pptx.shapePresets.rightArrow',
32865
+ glyph: 'moveRight',
32866
+ glyphClass: '',
32867
+ },
32868
+ {
32869
+ type: 'leftArrow',
32870
+ label: 'Left Arrow',
32871
+ i18nKey: 'pptx.shapePresets.leftArrow',
32872
+ glyph: 'moveRight',
32873
+ glyphClass: 'rotate-180',
32874
+ },
32875
+ {
32876
+ type: 'upArrow',
32877
+ label: 'Up Arrow',
32878
+ i18nKey: 'pptx.shapePresets.upArrow',
32879
+ glyph: 'moveRight',
32880
+ glyphClass: '-rotate-90',
32881
+ },
32882
+ {
32883
+ type: 'downArrow',
32884
+ label: 'Down Arrow',
32885
+ i18nKey: 'pptx.shapePresets.downArrow',
32886
+ glyph: 'moveRight',
32887
+ glyphClass: 'rotate-90',
32888
+ },
32889
+ {
32890
+ type: 'triangle',
32891
+ label: 'Triangle',
32892
+ i18nKey: 'pptx.editorToolbar.shapeTriangle',
32893
+ glyph: 'triangle',
32894
+ glyphClass: '',
32895
+ },
32896
+ {
32897
+ type: 'rtTriangle',
32898
+ label: 'Right Triangle',
32899
+ i18nKey: 'pptx.shapePresets.rightTriangle',
32900
+ glyph: 'triangle',
32901
+ glyphClass: 'rotate-90',
32902
+ },
32903
+ {
32904
+ type: 'diamond',
32905
+ label: 'Diamond',
32906
+ i18nKey: 'pptx.shapePresets.diamond',
32907
+ glyph: 'diamond',
32908
+ glyphClass: '',
32909
+ },
32910
+ {
32911
+ type: 'parallelogram',
32912
+ label: 'Parallelogram',
32913
+ i18nKey: 'pptx.shapePresets.parallelogram',
32914
+ glyph: 'square',
32915
+ glyphClass: '-skew-x-12',
32916
+ },
32917
+ {
32918
+ type: 'trapezoid',
32919
+ label: 'Trapezoid',
32920
+ i18nKey: 'pptx.shapePresets.trapezoid',
32921
+ glyph: 'square',
32922
+ glyphClass: '',
32923
+ },
32924
+ {
32925
+ type: 'pentagon',
32926
+ label: 'Pentagon',
32927
+ i18nKey: 'pptx.shapePresets.pentagon',
32928
+ glyph: 'diamond',
32929
+ glyphClass: '',
32930
+ },
32931
+ {
32932
+ type: 'hexagon',
32933
+ label: 'Hexagon',
32934
+ i18nKey: 'pptx.shapePresets.hexagon',
32935
+ glyph: 'diamond',
32936
+ glyphClass: '',
32937
+ },
32938
+ {
32939
+ type: 'octagon',
32940
+ label: 'Octagon',
32941
+ i18nKey: 'pptx.shapePresets.octagon',
32942
+ glyph: 'circle',
32943
+ glyphClass: '',
32944
+ },
32945
+ {
32946
+ type: 'chevron',
32947
+ label: 'Chevron',
32948
+ i18nKey: 'pptx.shapePresets.chevron',
32949
+ glyph: 'moveRight',
32950
+ glyphClass: '',
32951
+ },
32952
+ {
32953
+ type: 'star5',
32954
+ label: 'Star',
32955
+ i18nKey: 'pptx.shapePresets.star',
32956
+ glyph: 'diamond',
32957
+ glyphClass: 'rotate-45',
32958
+ },
32959
+ {
32960
+ type: 'star6',
32961
+ label: 'Star 6',
32962
+ i18nKey: 'pptx.shapePresets.star6',
32963
+ glyph: 'diamond',
32964
+ glyphClass: '',
32965
+ },
32966
+ {
32967
+ type: 'star8',
32968
+ label: 'Star 8',
32969
+ i18nKey: 'pptx.shapePresets.star8',
32970
+ glyph: 'diamond',
32971
+ glyphClass: 'rotate-45',
32972
+ },
32973
+ {
32974
+ type: 'plus',
32975
+ label: 'Plus',
32976
+ i18nKey: 'pptx.shapePresets.plus',
32977
+ glyph: 'plus',
32978
+ glyphClass: '',
32979
+ },
32980
+ {
32981
+ type: 'heart',
32982
+ label: 'Heart',
32983
+ i18nKey: 'pptx.shapePresets.heart',
32984
+ glyph: 'circle',
32985
+ glyphClass: '',
32986
+ },
32987
+ {
32988
+ type: 'cloud',
32989
+ label: 'Cloud',
32990
+ i18nKey: 'pptx.shapePresets.cloud',
32991
+ glyph: 'circle',
32992
+ glyphClass: '',
32993
+ },
32994
+ {
32995
+ type: 'sun',
32996
+ label: 'Sun',
32997
+ i18nKey: 'pptx.shapePresets.sun',
32998
+ glyph: 'circle',
32999
+ glyphClass: '',
33000
+ },
33001
+ {
33002
+ type: 'moon',
33003
+ label: 'Moon',
33004
+ i18nKey: 'pptx.shapePresets.moon',
33005
+ glyph: 'circle',
33006
+ glyphClass: '',
33007
+ },
33008
+ {
33009
+ type: 'pie',
33010
+ label: 'Pie',
33011
+ i18nKey: 'pptx.shapePresets.pie',
33012
+ glyph: 'circle',
33013
+ glyphClass: '',
33014
+ },
33015
+ {
33016
+ type: 'plaque',
33017
+ label: 'Plaque',
33018
+ i18nKey: 'pptx.shapePresets.plaque',
33019
+ glyph: 'square',
33020
+ glyphClass: '',
33021
+ },
33022
+ {
33023
+ type: 'teardrop',
33024
+ label: 'Teardrop',
33025
+ i18nKey: 'pptx.shapePresets.teardrop',
33026
+ glyph: 'circle',
33027
+ glyphClass: '',
33028
+ },
33029
+ {
33030
+ type: 'line',
33031
+ label: 'Line',
33032
+ i18nKey: 'pptx.shapePresets.line',
33033
+ glyph: 'minus',
33034
+ glyphClass: '',
33035
+ },
33036
+ {
33037
+ type: 'connector',
33038
+ label: 'Connector',
33039
+ i18nKey: 'pptx.elementType.connector',
33040
+ glyph: 'moveRight',
33041
+ glyphClass: '',
33042
+ },
33043
+ ];
33044
+
33045
+ /** Font families offered by the Home-tab font dropdown. */
33046
+ const COMMON_FONT_FAMILIES = [
33047
+ 'Arial',
33048
+ 'Calibri',
33049
+ 'Cambria',
33050
+ 'Comic Sans MS',
33051
+ 'Courier New',
33052
+ 'Georgia',
33053
+ 'Helvetica',
33054
+ 'Impact',
33055
+ 'Segoe UI',
33056
+ 'Tahoma',
33057
+ 'Times New Roman',
33058
+ 'Trebuchet MS',
33059
+ 'Verdana',
33060
+ ];
33061
+ /** Font sizes (pt) offered by the Home-tab size dropdown. */
33062
+ const COMMON_FONT_SIZES = [
33063
+ 8, 9, 10, 11, 12, 14, 16, 18, 20, 24, 28, 32, 36, 40, 44, 48, 54, 60, 72, 96,
33064
+ ];
33065
+ /** Character-spacing presets for the toolbar dropdown. */
33066
+ const CHARACTER_SPACING_OPTIONS = [
33067
+ { label: 'Very Tight', i18nKey: 'pptx.text.characterSpacingVeryTight', value: -150 },
33068
+ { label: 'Tight', i18nKey: 'pptx.text.characterSpacingTight', value: -75 },
33069
+ { label: 'Normal', i18nKey: 'pptx.text.characterSpacingNormal', value: 0 },
33070
+ { label: 'Loose', i18nKey: 'pptx.text.characterSpacingLoose', value: 75 },
33071
+ { label: 'Very Loose', i18nKey: 'pptx.text.characterSpacingVeryLoose', value: 150 },
33072
+ ];
33073
+ /** Line-spacing presets for the paragraph dropdown. */
33074
+ const LINE_SPACING_OPTIONS$1 = [
33075
+ { label: '1.0', value: 1.0 },
33076
+ { label: '1.15', value: 1.15 },
33077
+ { label: '1.5', value: 1.5 },
33078
+ { label: '2.0', value: 2.0 },
33079
+ { label: '2.5', value: 2.5 },
33080
+ { label: '3.0', value: 3.0 },
33081
+ ];
33082
+ /** Change-case options in menu order (matches PowerPoint's ordering). */
33083
+ const CHANGE_CASE_OPTIONS$1 = [
33084
+ { value: 'sentence', i18nKey: 'pptx.text.changeCaseSentence' },
33085
+ { value: 'lower', i18nKey: 'pptx.text.changeCaseLower' },
33086
+ { value: 'upper', i18nKey: 'pptx.text.changeCaseUpper' },
33087
+ { value: 'capitalize', i18nKey: 'pptx.text.changeCaseCapitalize' },
33088
+ { value: 'toggle', i18nKey: 'pptx.text.changeCaseToggle' },
33089
+ ];
33090
+
32612
33091
  /**
32613
33092
  * PowerPoint-style title bar: shared pure logic + Tailwind class tokens.
32614
33093
  *
@@ -33394,7 +33873,7 @@ function encodeGif(frames, delay = {}) {
33394
33873
  // Graphic Control Extension
33395
33874
  out.push(0x21, 0xf9, 0x04);
33396
33875
  out.push(0x00); // disposal=none, no transparency
33397
- writeU16(out, delayCs);
33876
+ writeU16(out, frame.delayCs ?? delayCs);
33398
33877
  out.push(0x00); // transparent colour index (unused)
33399
33878
  out.push(0x00); // block terminator
33400
33879
  // Image Descriptor
@@ -35952,8 +36431,8 @@ class AccessibilityPanelComponent {
35952
36431
  onSelect(issue) {
35953
36432
  this.selectSlide.emit(issue.slideIndex);
35954
36433
  }
35955
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AccessibilityPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
35956
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: AccessibilityPanelComponent, isStandalone: true, selector: "pptx-accessibility-panel", inputs: { issues: { classPropertyName: "issues", publicName: "issues", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { selectSlide: "selectSlide" }, ngImport: i0, template: `
36434
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: AccessibilityPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
36435
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: AccessibilityPanelComponent, isStandalone: true, selector: "pptx-accessibility-panel", inputs: { issues: { classPropertyName: "issues", publicName: "issues", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { selectSlide: "selectSlide" }, ngImport: i0, template: `
35957
36436
  <section class="pptx-ng-a11y-panel" [attr.aria-label]="'pptx.accessibility.title' | translate">
35958
36437
  <header class="pptx-ng-a11y-panel__header">
35959
36438
  <h2 class="pptx-ng-a11y-panel__title">{{ 'pptx.accessibility.heading' | translate }}</h2>
@@ -36005,7 +36484,7 @@ class AccessibilityPanelComponent {
36005
36484
  </section>
36006
36485
  `, isInline: true, styles: [".pptx-ng-a11y-panel{display:flex;flex-direction:column;gap:.75rem;padding:.75rem;font-family:system-ui,sans-serif;font-size:.875rem;color:#1f2937;background:#fff}.pptx-ng-a11y-panel__header{display:flex;align-items:center;justify-content:space-between;gap:.5rem}.pptx-ng-a11y-panel__title{margin:0;font-size:1rem;font-weight:600}.pptx-ng-a11y-panel__count{min-width:1.5rem;padding:.05rem .4rem;text-align:center;font-size:.75rem;font-weight:600;color:#374151;background:#e5e7eb;border-radius:999px}.pptx-ng-a11y-panel__empty{padding:1.5rem .5rem;text-align:center;color:#047857}.pptx-ng-a11y-panel__empty-title{margin:0 0 .25rem;font-weight:600}.pptx-ng-a11y-panel__empty-hint{margin:0;font-size:.8125rem;color:#6b7280}.pptx-ng-a11y-panel__groups{display:flex;flex-direction:column;gap:1rem}.pptx-ng-a11y-group__label{display:flex;align-items:center;gap:.4rem;margin:0 0 .4rem;font-size:.8125rem;font-weight:600;text-transform:uppercase;letter-spacing:.03em}.pptx-ng-a11y-group[data-severity=error] .pptx-ng-a11y-group__label{color:#b91c1c}.pptx-ng-a11y-group[data-severity=warning] .pptx-ng-a11y-group__label{color:#b45309}.pptx-ng-a11y-group[data-severity=tip] .pptx-ng-a11y-group__label{color:#1d4ed8}.pptx-ng-a11y-group__count{font-size:.6875rem;font-weight:600;color:#6b7280}.pptx-ng-a11y-group__list{display:flex;flex-direction:column;gap:.4rem;margin:0;padding:0;list-style:none}.pptx-ng-a11y-issue__button{display:flex;flex-direction:column;gap:.15rem;width:100%;padding:.5rem .625rem;text-align:left;color:inherit;background:#f9fafb;border:1px solid #e5e7eb;border-left-width:3px;border-radius:.375rem;cursor:pointer}.pptx-ng-a11y-issue__button:hover{background:#f3f4f6}.pptx-ng-a11y-issue__button:focus-visible{outline:2px solid #2563eb;outline-offset:1px}.pptx-ng-a11y-issue[data-severity=error] .pptx-ng-a11y-issue__button{border-left-color:#dc2626}.pptx-ng-a11y-issue[data-severity=warning] .pptx-ng-a11y-issue__button{border-left-color:#d97706}.pptx-ng-a11y-issue[data-severity=tip] .pptx-ng-a11y-issue__button{border-left-color:#2563eb}.pptx-ng-a11y-issue__type{font-weight:600}.pptx-ng-a11y-issue__message{color:#374151}.pptx-ng-a11y-issue__slide{font-size:.75rem;color:#6b7280}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
36007
36486
  }
36008
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AccessibilityPanelComponent, decorators: [{
36487
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: AccessibilityPanelComponent, decorators: [{
36009
36488
  type: Component,
36010
36489
  args: [{ selector: 'pptx-accessibility-panel', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
36011
36490
  <section class="pptx-ng-a11y-panel" [attr.aria-label]="'pptx.accessibility.title' | translate">
@@ -36116,10 +36595,10 @@ class AccessibilityService {
36116
36595
  setOptions(options) {
36117
36596
  this.options.set(options);
36118
36597
  }
36119
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AccessibilityService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
36120
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AccessibilityService });
36598
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: AccessibilityService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
36599
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: AccessibilityService });
36121
36600
  }
36122
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AccessibilityService, decorators: [{
36601
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: AccessibilityService, decorators: [{
36123
36602
  type: Injectable
36124
36603
  }] });
36125
36604
 
@@ -36218,10 +36697,10 @@ class AutosaveService {
36218
36697
  this.timer = null;
36219
36698
  }
36220
36699
  }
36221
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AutosaveService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
36222
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AutosaveService });
36700
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: AutosaveService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
36701
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: AutosaveService });
36223
36702
  }
36224
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AutosaveService, decorators: [{
36703
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: AutosaveService, decorators: [{
36225
36704
  type: Injectable
36226
36705
  }] });
36227
36706
 
@@ -36422,10 +36901,10 @@ class IsMobileService {
36422
36901
  window.scrollBy({ top: delta, behavior: 'smooth' });
36423
36902
  }
36424
36903
  }
36425
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: IsMobileService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
36426
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: IsMobileService });
36904
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: IsMobileService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
36905
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: IsMobileService });
36427
36906
  }
36428
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: IsMobileService, decorators: [{
36907
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: IsMobileService, decorators: [{
36429
36908
  type: Injectable
36430
36909
  }], ctorParameters: () => [] });
36431
36910
 
@@ -36543,8 +37022,8 @@ class ModalDialogComponent {
36543
37022
  }
36544
37023
  this.dragY.set(0);
36545
37024
  }
36546
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ModalDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
36547
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: ModalDialogComponent, isStandalone: true, selector: "pptx-modal-dialog", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, title: { classPropertyName: "title", publicName: "title", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { close: "close" }, host: { listeners: { "document:keydown": "onDocumentKeydown($event)" } }, providers: [IsMobileService], ngImport: i0, template: `
37025
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ModalDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
37026
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: ModalDialogComponent, isStandalone: true, selector: "pptx-modal-dialog", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, title: { classPropertyName: "title", publicName: "title", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { close: "close" }, host: { listeners: { "document:keydown": "onDocumentKeydown($event)" } }, providers: [IsMobileService], ngImport: i0, template: `
36548
37027
  @if (open()) {
36549
37028
  <div
36550
37029
  class="pptx-ng-modal-backdrop"
@@ -36594,7 +37073,7 @@ class ModalDialogComponent {
36594
37073
  }
36595
37074
  `, isInline: true, styles: [".pptx-ng-modal-backdrop{position:fixed;inset:0;z-index:1000;display:flex;align-items:center;justify-content:center;background:#00000073}.pptx-ng-modal-panel{display:flex;flex-direction:column;min-width:320px;max-width:min(92vw,480px);max-height:88vh;overflow:hidden;background:var(--pptx-popover, #ffffff);color:var(--pptx-foreground, #111827);border:1px solid var(--pptx-border, #e5e7eb);border-radius:var(--pptx-radius, 8px);box-shadow:0 10px 40px #00000059}.pptx-ng-modal-header{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px 16px;border-bottom:1px solid var(--pptx-border, #e5e7eb);touch-action:none}.pptx-ng-modal-title{margin:0;font-size:14px;font-weight:600;line-height:1.4}.pptx-ng-modal-close{display:inline-flex;align-items:center;justify-content:center;width:24px;height:24px;padding:0;font-size:18px;line-height:1;color:var(--pptx-muted-foreground, #6b7280);background:transparent;border:none;border-radius:4px;cursor:pointer}.pptx-ng-modal-close:hover{color:var(--pptx-foreground, #111827);background:var(--pptx-muted, #f3f4f6)}.pptx-ng-modal-body{padding:16px;overflow-y:auto}.pptx-ng-modal-footer{display:flex;justify-content:flex-end;gap:8px;padding:12px 16px;border-top:1px solid var(--pptx-border, #e5e7eb)}.pptx-ng-modal-footer:empty{display:none}.pptx-ng-modal-backdrop.is-mobile{align-items:flex-end;justify-content:stretch}.pptx-ng-modal-panel.is-mobile{min-width:0;max-width:none;width:100%;max-height:88dvh;border-left:none;border-right:none;border-bottom:none;border-radius:16px 16px 0 0;padding-bottom:max(env(safe-area-inset-bottom),0px)}@media(max-width:767px),(pointer:coarse){.pptx-ng-modal-backdrop{align-items:flex-end;justify-content:stretch}.pptx-ng-modal-panel{min-width:0;max-width:none;width:100%;max-height:88dvh;border-left:none;border-right:none;border-bottom:none;border-radius:16px 16px 0 0;padding-bottom:max(env(safe-area-inset-bottom),0px)}}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
36596
37075
  }
36597
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ModalDialogComponent, decorators: [{
37076
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ModalDialogComponent, decorators: [{
36598
37077
  type: Component,
36599
37078
  args: [{ selector: 'pptx-modal-dialog', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], providers: [IsMobileService], template: `
36600
37079
  @if (open()) {
@@ -36751,8 +37230,8 @@ class BroadcastDialogComponent {
36751
37230
  return undefined;
36752
37231
  });
36753
37232
  }
36754
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: BroadcastDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
36755
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: BroadcastDialogComponent, isStandalone: true, selector: "pptx-broadcast-dialog", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, defaults: { classPropertyName: "defaults", publicName: "defaults", isSignal: true, isRequired: false, transformFunction: null }, active: { classPropertyName: "active", publicName: "active", isSignal: true, isRequired: false, transformFunction: null }, connected: { classPropertyName: "connected", publicName: "connected", isSignal: true, isRequired: false, transformFunction: null }, viewerCount: { classPropertyName: "viewerCount", publicName: "viewerCount", isSignal: true, isRequired: false, transformFunction: null }, viewerUrl: { classPropertyName: "viewerUrl", publicName: "viewerUrl", isSignal: true, isRequired: false, transformFunction: null }, p2p: { classPropertyName: "p2p", publicName: "p2p", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { start: "start", stop: "stop", close: "close" }, ngImport: i0, template: `
37233
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: BroadcastDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
37234
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: BroadcastDialogComponent, isStandalone: true, selector: "pptx-broadcast-dialog", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, defaults: { classPropertyName: "defaults", publicName: "defaults", isSignal: true, isRequired: false, transformFunction: null }, active: { classPropertyName: "active", publicName: "active", isSignal: true, isRequired: false, transformFunction: null }, connected: { classPropertyName: "connected", publicName: "connected", isSignal: true, isRequired: false, transformFunction: null }, viewerCount: { classPropertyName: "viewerCount", publicName: "viewerCount", isSignal: true, isRequired: false, transformFunction: null }, viewerUrl: { classPropertyName: "viewerUrl", publicName: "viewerUrl", isSignal: true, isRequired: false, transformFunction: null }, p2p: { classPropertyName: "p2p", publicName: "p2p", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { start: "start", stop: "stop", close: "close" }, ngImport: i0, template: `
36756
37235
  <pptx-modal-dialog [open]="open()" [title]="dialogTitle()" (close)="onClose()">
36757
37236
  @if (active()) {
36758
37237
  <!-- Active: share the follow link + stop control -->
@@ -36867,7 +37346,7 @@ class BroadcastDialogComponent {
36867
37346
  </pptx-modal-dialog>
36868
37347
  `, isInline: true, styles: [".pptx-ng-broadcast{display:flex;flex-direction:column;gap:1rem}.pptx-ng-broadcast-desc{margin:0;font-size:.8125rem;line-height:1.5;color:var(--pptx-muted-foreground, #9ca3af)}.pptx-ng-broadcast-field{display:flex;flex-direction:column;gap:.375rem}.pptx-ng-broadcast-label{font-size:.75rem;font-weight:500;color:var(--pptx-foreground, #f3f4f6)}.pptx-ng-broadcast-input{width:100%;padding:.375rem .75rem;border:1px solid var(--pptx-border, #374151);border-radius:.375rem;background:var(--pptx-background, #030712);color:var(--pptx-foreground, #f3f4f6);font-size:.8125rem}.pptx-ng-broadcast-input:focus{outline:none;border-color:var(--pptx-primary, #6366f1)}.pptx-ng-broadcast-link-row{display:flex;align-items:center;gap:.5rem}.pptx-ng-broadcast-hint{margin:0;font-size:.6875rem;color:var(--pptx-muted-foreground, #9ca3af)}.pptx-ng-broadcast-btn{padding:.375rem .75rem;border:1px solid var(--pptx-border, #374151);border-radius:.375rem;background:var(--pptx-card, #111827);color:var(--pptx-foreground, #f3f4f6);font-size:.75rem;cursor:pointer;white-space:nowrap;transition:background .15s ease}.pptx-ng-broadcast-btn:hover:not(:disabled){background:var(--pptx-border, #374151)}.pptx-ng-broadcast-btn:disabled{opacity:.4;cursor:not-allowed}.pptx-ng-broadcast-btn-primary{border-color:var(--pptx-primary, #6366f1);background:var(--pptx-primary, #6366f1);color:#fff}.pptx-ng-broadcast-btn-primary:hover:not(:disabled){background:var(--pptx-primary, #6366f1);filter:brightness(1.1)}.pptx-ng-broadcast-stop{width:100%;padding:.5rem .75rem;border:1px solid rgba(239,68,68,.3);border-radius:.375rem;background:#ef44441a;color:#f87171;font-size:.75rem;font-weight:500;cursor:pointer;transition:background .15s ease}.pptx-ng-broadcast-stop:hover{background:#ef444433}.pptx-ng-broadcast-status-row{display:flex;align-items:center;gap:.5rem;font-size:.8125rem}.pptx-ng-broadcast-status-dot{width:.5rem;height:.5rem;border-radius:9999px;background:var(--pptx-muted-foreground, #9ca3af)}.pptx-ng-broadcast-status-dot.is-on{background:#22c55e}.pptx-ng-broadcast-status-text{font-weight:500;color:var(--pptx-foreground, #f3f4f6)}.pptx-ng-broadcast-count{margin-left:auto;color:var(--pptx-muted-foreground, #9ca3af)}\n"], dependencies: [{ kind: "component", type: ModalDialogComponent, selector: "pptx-modal-dialog", inputs: ["open", "title"], outputs: ["close"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
36869
37348
  }
36870
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: BroadcastDialogComponent, decorators: [{
37349
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: BroadcastDialogComponent, decorators: [{
36871
37350
  type: Component,
36872
37351
  args: [{ selector: 'pptx-broadcast-dialog', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [ModalDialogComponent, TranslatePipe], template: `
36873
37352
  <pptx-modal-dialog [open]="open()" [title]="dialogTitle()" (close)="onClose()">
@@ -37013,10 +37492,10 @@ class ChartPartSelectionService {
37013
37492
  this.selection.set(null);
37014
37493
  }
37015
37494
  }
37016
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartPartSelectionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
37017
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartPartSelectionService });
37495
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartPartSelectionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
37496
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartPartSelectionService });
37018
37497
  }
37019
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartPartSelectionService, decorators: [{
37498
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartPartSelectionService, decorators: [{
37020
37499
  type: Injectable
37021
37500
  }] });
37022
37501
 
@@ -37090,8 +37569,8 @@ class CollaborationCursorsComponent {
37090
37569
  }));
37091
37570
  }, /* @ts-ignore */
37092
37571
  ...(ngDevMode ? [{ debugName: "positioned" }] : /* istanbul ignore next */ []));
37093
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CollaborationCursorsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
37094
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: CollaborationCursorsComponent, isStandalone: true, selector: "pptx-collaboration-cursors", inputs: { cursors: { classPropertyName: "cursors", publicName: "cursors", isSignal: true, isRequired: false, transformFunction: null }, zoom: { classPropertyName: "zoom", publicName: "zoom", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
37572
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: CollaborationCursorsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
37573
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: CollaborationCursorsComponent, isStandalone: true, selector: "pptx-collaboration-cursors", inputs: { cursors: { classPropertyName: "cursors", publicName: "cursors", isSignal: true, isRequired: false, transformFunction: null }, zoom: { classPropertyName: "zoom", publicName: "zoom", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
37095
37574
  <div class="pptx-ng-collab-cursors" aria-hidden="true" data-export-ignore="true">
37096
37575
  @for (cursor of positioned(); track cursor.clientId) {
37097
37576
  <div
@@ -37121,7 +37600,7 @@ class CollaborationCursorsComponent {
37121
37600
  </div>
37122
37601
  `, isInline: true, styles: [":host{position:absolute;inset:0;pointer-events:none;overflow:visible;z-index:9999}.pptx-ng-collab-cursor{position:absolute;top:0;left:0;pointer-events:none;will-change:transform;transition:transform 90ms linear}.pptx-ng-collab-pointer{display:block;filter:drop-shadow(0 1px 1px rgba(0,0,0,.35))}.pptx-ng-collab-label{position:absolute;top:16px;left:12px;max-width:150px;padding:2px 6px;border-radius:4px;color:#fff;font-family:system-ui,sans-serif;font-size:10px;font-weight:500;line-height:1.2;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;box-shadow:0 1px 2px #0000004d}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
37123
37602
  }
37124
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CollaborationCursorsComponent, decorators: [{
37603
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: CollaborationCursorsComponent, decorators: [{
37125
37604
  type: Component,
37126
37605
  args: [{ selector: 'pptx-collaboration-cursors', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, template: `
37127
37606
  <div class="pptx-ng-collab-cursors" aria-hidden="true" data-export-ignore="true">
@@ -37707,10 +38186,10 @@ class CollaborationService {
37707
38186
  scheduleWriteBack() {
37708
38187
  this.writeBack.schedule(this.currentConfig, this.ydoc, this.getSourceBytes, this.getTemplateElements);
37709
38188
  }
37710
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CollaborationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
37711
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CollaborationService });
38189
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: CollaborationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
38190
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: CollaborationService });
37712
38191
  }
37713
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CollaborationService, decorators: [{
38192
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: CollaborationService, decorators: [{
37714
38193
  type: Injectable
37715
38194
  }], ctorParameters: () => [] });
37716
38195
 
@@ -37791,8 +38270,8 @@ class CommentsPanelComponent {
37791
38270
  formatTimestamp(value) {
37792
38271
  return formatCommentTimestamp$1(value);
37793
38272
  }
37794
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CommentsPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
37795
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: CommentsPanelComponent, isStandalone: true, selector: "pptx-comments-panel", inputs: { comments: { classPropertyName: "comments", publicName: "comments", isSignal: true, isRequired: false, transformFunction: null }, authorName: { classPropertyName: "authorName", publicName: "authorName", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { add: "add", remove: "remove", resolve: "resolve" }, ngImport: i0, template: `
38273
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: CommentsPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
38274
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: CommentsPanelComponent, isStandalone: true, selector: "pptx-comments-panel", inputs: { comments: { classPropertyName: "comments", publicName: "comments", isSignal: true, isRequired: false, transformFunction: null }, authorName: { classPropertyName: "authorName", publicName: "authorName", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { add: "add", remove: "remove", resolve: "resolve" }, ngImport: i0, template: `
37796
38275
  <aside class="pptx-ng-comments" [attr.aria-label]="'pptx.comments.slideComments' | translate">
37797
38276
  <header class="pptx-ng-comments__header">
37798
38277
  <h2 class="pptx-ng-comments__title">{{ 'pptx.toolbar.comments' | translate }}</h2>
@@ -37877,7 +38356,7 @@ class CommentsPanelComponent {
37877
38356
  </aside>
37878
38357
  `, isInline: true, styles: [":host{display:block;height:100%;width:100%}.pptx-ng-comments{display:flex;flex-direction:column;min-height:0;height:100%;width:100%;background:var(--pptx-card, #111827);color:var(--pptx-foreground, #f3f4f6);border-left:1px solid var(--pptx-border, #374151);font-family:system-ui,sans-serif}.pptx-ng-comments__header{display:flex;align-items:center;justify-content:space-between;padding:12px 16px;border-bottom:1px solid var(--pptx-border, #374151)}.pptx-ng-comments__title{margin:0;font-size:14px;font-weight:600}.pptx-ng-comments__count{font-size:12px;color:var(--pptx-muted-foreground, #9ca3af)}.pptx-ng-comments__list{list-style:none;margin:0;padding:8px;overflow-y:auto;flex:1 1 auto;min-height:0}.pptx-ng-comments__item{padding:10px 12px;border:1px solid var(--pptx-border, #374151);border-radius:8px;margin-bottom:8px}.pptx-ng-comments__item--resolved{opacity:.6}.pptx-ng-comments__meta{display:flex;align-items:baseline;justify-content:space-between;gap:8px;margin-bottom:4px}.pptx-ng-comments__author{font-size:13px;font-weight:600}.pptx-ng-comments__time{font-size:11px;color:var(--pptx-muted-foreground, #9ca3af)}.pptx-ng-comments__text{margin:0 0 8px;font-size:13px;white-space:pre-wrap;word-break:break-word}.pptx-ng-comments__actions{display:flex;gap:8px}.pptx-ng-comments__action{font-size:12px;padding:4px 8px;border-radius:6px;border:1px solid var(--pptx-border, #374151);background:transparent;color:inherit;cursor:pointer}.pptx-ng-comments__action--danger{color:#f87171}.pptx-ng-comments__empty{padding:16px;font-size:13px;color:var(--pptx-muted-foreground, #9ca3af);flex:1 1 auto}.pptx-ng-comments__compose{display:flex;flex-direction:column;gap:8px;padding:12px 16px;border-top:1px solid var(--pptx-border, #374151)}.pptx-ng-comments__compose-label{font-size:12px;font-weight:600}.pptx-ng-comments__textarea{resize:vertical;width:100%;padding:8px;border-radius:6px;border:1px solid var(--pptx-border, #374151);background:var(--pptx-background, #030712);color:inherit;font:inherit;font-size:13px}.pptx-ng-comments__submit{align-self:flex-end;font-size:13px;padding:6px 14px;border-radius:6px;border:none;background:var(--pptx-primary, #6366f1);color:#fff;cursor:pointer}.pptx-ng-comments__submit:disabled{opacity:.5;cursor:not-allowed}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
37879
38358
  }
37880
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CommentsPanelComponent, decorators: [{
38359
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: CommentsPanelComponent, decorators: [{
37881
38360
  type: Component,
37882
38361
  args: [{ selector: 'pptx-comments-panel', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
37883
38362
  <aside class="pptx-ng-comments" [attr.aria-label]="'pptx.comments.slideComments' | translate">
@@ -38071,8 +38550,8 @@ class CustomShowsComponent {
38071
38550
  onToggleActive(id) {
38072
38551
  this.setActive.emit(this.activeCustomShowId() === id ? null : id);
38073
38552
  }
38074
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CustomShowsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
38075
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: CustomShowsComponent, isStandalone: true, selector: "pptx-custom-shows", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, slides: { classPropertyName: "slides", publicName: "slides", isSignal: true, isRequired: false, transformFunction: null }, customShows: { classPropertyName: "customShows", publicName: "customShows", isSignal: true, isRequired: false, transformFunction: null }, activeCustomShowId: { classPropertyName: "activeCustomShowId", publicName: "activeCustomShowId", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { create: "create", remove: "remove", update: "update", setActive: "setActive", close: "close" }, ngImport: i0, template: `
38553
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: CustomShowsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
38554
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: CustomShowsComponent, isStandalone: true, selector: "pptx-custom-shows", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, slides: { classPropertyName: "slides", publicName: "slides", isSignal: true, isRequired: false, transformFunction: null }, customShows: { classPropertyName: "customShows", publicName: "customShows", isSignal: true, isRequired: false, transformFunction: null }, activeCustomShowId: { classPropertyName: "activeCustomShowId", publicName: "activeCustomShowId", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { create: "create", remove: "remove", update: "update", setActive: "setActive", close: "close" }, ngImport: i0, template: `
38076
38555
  @if (open()) {
38077
38556
  <!-- Backdrop -->
38078
38557
  <div class="pptx-ng-cs-backdrop" aria-hidden="true" (click)="close.emit()"></div>
@@ -38259,7 +38738,7 @@ class CustomShowsComponent {
38259
38738
  }
38260
38739
  `, isInline: true, styles: [":host{display:contents}.pptx-ng-cs-backdrop{position:fixed;inset:0;background:#00000080;z-index:200}.pptx-ng-cs-dialog{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);z-index:201;width:min(540px,94vw);max-height:80vh;display:flex;flex-direction:column;background:var(--pptx-card, #111827);color:var(--pptx-foreground, #f3f4f6);border:1px solid var(--pptx-border, #374151);border-radius:12px;box-shadow:0 20px 60px #0009;font-family:system-ui,sans-serif}.pptx-ng-cs-header{display:flex;align-items:center;justify-content:space-between;padding:16px 20px 12px;border-bottom:1px solid var(--pptx-border, #374151);flex-shrink:0}.pptx-ng-cs-title{margin:0;font-size:15px;font-weight:600}.pptx-ng-cs-close{background:transparent;border:none;color:var(--pptx-muted-foreground, #9ca3af);cursor:pointer;font-size:16px;padding:2px 6px;border-radius:4px}.pptx-ng-cs-close:hover{background:var(--pptx-accent, #1f2937);color:var(--pptx-foreground, #f3f4f6)}.pptx-ng-cs-body{flex:1 1 auto;overflow-y:auto;padding:16px 20px;display:flex;flex-direction:column;gap:20px;min-height:0}.pptx-ng-cs-section{display:flex;flex-direction:column;gap:10px}.pptx-ng-cs-section-title{margin:0;font-size:13px;font-weight:600;color:var(--pptx-muted-foreground, #9ca3af);text-transform:uppercase;letter-spacing:.05em;display:flex;align-items:center;gap:6px}.pptx-ng-cs-badge{background:var(--pptx-primary, #6366f1);color:#fff;border-radius:10px;padding:1px 7px;font-size:11px;font-weight:700}.pptx-ng-cs-show-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:6px}.pptx-ng-cs-show-row{padding:10px 12px;border:1px solid var(--pptx-border, #374151);border-radius:8px;display:flex;flex-direction:column;gap:8px}.pptx-ng-cs-show-row--active{border-color:var(--pptx-primary, #6366f1);background:color-mix(in srgb,var(--pptx-primary, #6366f1) 10%,transparent)}.pptx-ng-cs-show-info{display:flex;align-items:baseline;justify-content:space-between;gap:8px}.pptx-ng-cs-show-name{font-size:13px;font-weight:600}.pptx-ng-cs-show-meta{font-size:11px;color:var(--pptx-muted-foreground, #9ca3af)}.pptx-ng-cs-show-actions{display:flex;gap:6px;flex-wrap:wrap}.pptx-ng-cs-edit-row{display:flex;gap:6px;align-items:center;flex-wrap:wrap}.pptx-ng-cs-input{flex:1 1 auto;min-width:120px;padding:6px 10px;border-radius:6px;border:1px solid var(--pptx-border, #374151);background:var(--pptx-background, #030712);color:inherit;font:inherit;font-size:13px}.pptx-ng-cs-slide-picker{display:flex;flex-direction:column;gap:4px;max-height:160px;overflow-y:auto;padding:6px 8px;border:1px solid var(--pptx-border, #374151);border-radius:6px;background:var(--pptx-background, #030712)}.pptx-ng-cs-slide-option{display:flex;align-items:center;gap:8px;font-size:13px;cursor:pointer;padding:2px 0}.pptx-ng-cs-empty{font-size:13px;color:var(--pptx-muted-foreground, #9ca3af);margin:0}.pptx-ng-cs-create-form{display:flex;flex-direction:column;gap:10px}.pptx-ng-cs-btn{font-size:12px;padding:5px 12px;border-radius:6px;border:1px solid var(--pptx-border, #374151);background:transparent;color:inherit;cursor:pointer;white-space:nowrap}.pptx-ng-cs-btn:hover{background:var(--pptx-accent, #1f2937)}.pptx-ng-cs-btn--primary{background:var(--pptx-primary, #6366f1);border-color:var(--pptx-primary, #6366f1);color:#fff;align-self:flex-start}.pptx-ng-cs-btn--primary:hover:not(:disabled){opacity:.9}.pptx-ng-cs-btn--primary:disabled{opacity:.5;cursor:not-allowed}.pptx-ng-cs-btn--danger{color:#f87171;border-color:#f87171}.pptx-ng-cs-btn--danger:hover{background:#f871711a}.pptx-ng-cs-btn--active{background:color-mix(in srgb,var(--pptx-primary, #6366f1) 20%,transparent);border-color:var(--pptx-primary, #6366f1);color:var(--pptx-primary, #6366f1)}.pptx-ng-cs-btn:disabled{opacity:.5;cursor:not-allowed}.pptx-ng-cs-footer{display:flex;justify-content:flex-end;padding:12px 20px;border-top:1px solid var(--pptx-border, #374151);flex-shrink:0}\n"], dependencies: [{ kind: "component", type: LucideX, selector: "svg[lucideX]" }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
38261
38740
  }
38262
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CustomShowsComponent, decorators: [{
38741
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: CustomShowsComponent, decorators: [{
38263
38742
  type: Component,
38264
38743
  args: [{ selector: 'pptx-custom-shows', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe, LucideX], template: `
38265
38744
  @if (open()) {
@@ -41541,10 +42020,10 @@ class EditorStateService {
41541
42020
  return `el-${this.idCounter}`;
41542
42021
  }
41543
42022
  idCounter = 0;
41544
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EditorStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
41545
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EditorStateService });
42023
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EditorStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
42024
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EditorStateService });
41546
42025
  }
41547
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EditorStateService, decorators: [{
42026
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EditorStateService, decorators: [{
41548
42027
  type: Injectable
41549
42028
  }] });
41550
42029
 
@@ -41738,10 +42217,10 @@ class TableSelectionService {
41738
42217
  this.selection.set(null);
41739
42218
  }
41740
42219
  }
41741
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableSelectionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
41742
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableSelectionService });
42220
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TableSelectionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
42221
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TableSelectionService });
41743
42222
  }
41744
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableSelectionService, decorators: [{
42223
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TableSelectionService, decorators: [{
41745
42224
  type: Injectable
41746
42225
  }] });
41747
42226
 
@@ -41903,8 +42382,8 @@ class EditorContextMenuComponent {
41903
42382
  }
41904
42383
  this.closed.emit();
41905
42384
  }
41906
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EditorContextMenuComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
41907
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: EditorContextMenuComponent, isStandalone: true, selector: "pptx-editor-context-menu", inputs: { x: { classPropertyName: "x", publicName: "x", isSignal: true, isRequired: true, transformFunction: null }, y: { classPropertyName: "y", publicName: "y", isSignal: true, isRequired: true, transformFunction: null }, slideIndex: { classPropertyName: "slideIndex", publicName: "slideIndex", isSignal: true, isRequired: true, transformFunction: null } }, outputs: { closed: "closed" }, host: { listeners: { "document:keydown.escape": "onEscape()", "document:pointerdown": "onDocumentPointerDown($event)" }, properties: { "style.--pptx-ctx-x": "x() + \"px\"", "style.--pptx-ctx-y": "y() + \"px\"" } }, ngImport: i0, template: `
42385
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EditorContextMenuComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
42386
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: EditorContextMenuComponent, isStandalone: true, selector: "pptx-editor-context-menu", inputs: { x: { classPropertyName: "x", publicName: "x", isSignal: true, isRequired: true, transformFunction: null }, y: { classPropertyName: "y", publicName: "y", isSignal: true, isRequired: true, transformFunction: null }, slideIndex: { classPropertyName: "slideIndex", publicName: "slideIndex", isSignal: true, isRequired: true, transformFunction: null } }, outputs: { closed: "closed" }, host: { listeners: { "document:keydown.escape": "onEscape()", "document:pointerdown": "onDocumentPointerDown($event)" }, properties: { "style.--pptx-ctx-x": "x() + \"px\"", "style.--pptx-ctx-y": "y() + \"px\"" } }, ngImport: i0, template: `
41908
42387
  <ul
41909
42388
  class="pptx-ctx__menu"
41910
42389
  role="menu"
@@ -42096,7 +42575,7 @@ class EditorContextMenuComponent {
42096
42575
  </ul>
42097
42576
  `, isInline: true, styles: [":host{position:fixed;left:var(--pptx-ctx-x, 0px);top:var(--pptx-ctx-y, 0px);z-index:9000;display:block}.pptx-ctx__menu{list-style:none;margin:0;padding:4px 0;min-width:160px;background:var(--pptx-ctx-bg, #252526);color:var(--pptx-ctx-fg, #e0e0e0);border:1px solid var(--pptx-ctx-border, #454545);border-radius:4px;box-shadow:0 4px 12px #0006,0 1px 3px #0000004d;font-size:13px;-webkit-user-select:none;user-select:none}.pptx-ctx__item{display:block;width:100%;padding:5px 14px;background:transparent;border:none;color:inherit;text-align:left;cursor:pointer;font-size:inherit;white-space:nowrap}.pptx-ctx__item:hover:not(:disabled){background:var(--pptx-ctx-hover, #094771);color:var(--pptx-ctx-hover-fg, #ffffff)}.pptx-ctx__item:disabled{opacity:.4;pointer-events:none;cursor:default}.pptx-ctx__item--danger{color:var(--pptx-ctx-danger, #f47c7c)}.pptx-ctx__item--danger:hover:not(:disabled){background:var(--pptx-ctx-danger-hover, #4a1a1a);color:var(--pptx-ctx-danger-fg, #ffaaaa)}.pptx-ctx__divider{height:1px;background:var(--pptx-ctx-divider, #454545);margin:3px 0}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
42098
42577
  }
42099
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EditorContextMenuComponent, decorators: [{
42578
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EditorContextMenuComponent, decorators: [{
42100
42579
  type: Component,
42101
42580
  args: [{ selector: 'pptx-editor-context-menu', standalone: true, imports: [TranslatePipe], changeDetection: ChangeDetectionStrategy.OnPush, template: `
42102
42581
  <ul
@@ -42371,8 +42850,8 @@ class EditorToolbarComponent {
42371
42850
  onInsertShape(shapeType) {
42372
42851
  this.editor.addElement(this.slideIndex(), newShapeElement(shapeType));
42373
42852
  }
42374
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EditorToolbarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
42375
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.5", type: EditorToolbarComponent, isStandalone: true, selector: "pptx-editor-toolbar", inputs: { slideIndex: { classPropertyName: "slideIndex", publicName: "slideIndex", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0, template: `
42853
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EditorToolbarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
42854
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.6", type: EditorToolbarComponent, isStandalone: true, selector: "pptx-editor-toolbar", inputs: { slideIndex: { classPropertyName: "slideIndex", publicName: "slideIndex", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0, template: `
42376
42855
  <div
42377
42856
  class="pptx-ng-toolbar"
42378
42857
  role="toolbar"
@@ -42603,7 +43082,7 @@ class EditorToolbarComponent {
42603
43082
  </div>
42604
43083
  `, isInline: true, styles: [".pptx-ng-toolbar{display:flex;flex-direction:row;align-items:center;gap:0;padding:4px 8px;background:var(--pptx-toolbar-bg, #1e1e1e);color:var(--pptx-toolbar-fg, #e0e0e0);border-bottom:1px solid var(--pptx-toolbar-border, #333);min-height:36px;-webkit-user-select:none;user-select:none}.pptx-ng-toolbar__group{display:flex;flex-direction:row;align-items:center;gap:4px}.pptx-ng-toolbar__group-label{font-size:10px;color:var(--pptx-toolbar-muted, #888);text-transform:uppercase;letter-spacing:.05em;padding:0 6px 0 4px;flex-shrink:0}.pptx-ng-toolbar__divider{width:1px;height:20px;background:var(--pptx-toolbar-border, #444);margin:0 4px;flex-shrink:0}.pptx-ng-toolbar__btn{display:inline-flex;align-items:center;justify-content:center;min-width:28px;height:28px;padding:2px 8px;background:transparent;border:1px solid transparent;border-radius:4px;color:inherit;font-size:14px;cursor:pointer;transition:background .1s;flex-shrink:0}.pptx-ng-toolbar__btn:hover:not(:disabled){background:var(--pptx-toolbar-hover, #3a3a3a)}.pptx-ng-toolbar__btn:active:not(:disabled){background:var(--pptx-toolbar-active-bg, #2a2a2a);transform:scale(.95);opacity:.8}.pptx-ng-toolbar__btn:disabled{opacity:.4;cursor:not-allowed}.pptx-ng-toolbar__btn--danger:not(:disabled){color:var(--pptx-toolbar-danger, #f47c7c)}.pptx-ng-toolbar__btn--danger:hover:not(:disabled){background:var(--pptx-toolbar-danger-hover, #4a1a1a)}\n"], dependencies: [{ kind: "component", type: LucideSquare, selector: "svg[lucideSquare]" }, { kind: "component", type: LucideCircle, selector: "svg[lucideCircle]" }, { kind: "component", type: LucideSlash, selector: "svg[lucideSlash]" }, { kind: "component", type: LucideCopy, selector: "svg[lucideCopy]" }, { kind: "component", type: LucideTrash2, selector: "svg[lucideTrash2]" }, { kind: "component", type: LucideChevronsUp, selector: "svg[lucideChevronsUp]" }, { kind: "component", type: LucideChevronsDown, selector: "svg[lucideChevronsDown]" }, { kind: "component", type: LucideArrowUp, selector: "svg[lucideArrowUp]" }, { kind: "component", type: LucideArrowDown, selector: "svg[lucideArrowDown]" }, { kind: "component", type: LucideGroup, selector: "svg[lucideGroup]" }, { kind: "component", type: LucideUngroup, selector: "svg[lucideUngroup]" }, { kind: "component", type: LucideTextAlignStart, selector: "svg[lucideTextAlignStart], svg[lucideText], svg[lucideAlignLeft]" }, { kind: "component", type: LucideTextAlignCenter, selector: "svg[lucideTextAlignCenter], svg[lucideAlignCenter]" }, { kind: "component", type: LucideTextAlignEnd, selector: "svg[lucideTextAlignEnd], svg[lucideAlignRight]" }, { kind: "component", type: LucideChevronUp, selector: "svg[lucideChevronUp]" }, { kind: "component", type: LucideChevronDown, selector: "svg[lucideChevronDown]" }, { kind: "component", type: LucideAlignHorizontalSpaceAround, selector: "svg[lucideAlignHorizontalSpaceAround]" }, { kind: "component", type: LucideAlignVerticalSpaceAround, selector: "svg[lucideAlignVerticalSpaceAround]" }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
42605
43084
  }
42606
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EditorToolbarComponent, decorators: [{
43085
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EditorToolbarComponent, decorators: [{
42607
43086
  type: Component,
42608
43087
  args: [{ selector: 'pptx-editor-toolbar', standalone: true, imports: [
42609
43088
  TranslatePipe,
@@ -42992,10 +43471,10 @@ class EmbeddedFontsService {
42992
43471
  URL.revokeObjectURL(url);
42993
43472
  }
42994
43473
  }
42995
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EmbeddedFontsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
42996
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EmbeddedFontsService });
43474
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EmbeddedFontsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
43475
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EmbeddedFontsService });
42997
43476
  }
42998
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EmbeddedFontsService, decorators: [{
43477
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EmbeddedFontsService, decorators: [{
42999
43478
  type: Injectable
43000
43479
  }], ctorParameters: () => [] });
43001
43480
 
@@ -43041,8 +43520,8 @@ class ExportProgressModalComponent {
43041
43520
  /** Progress clamped to the inclusive `[0, 100]` integer range for display. */
43042
43521
  clampedProgress = computed(() => clampPercent(this.progress()), /* @ts-ignore */
43043
43522
  ...(ngDevMode ? [{ debugName: "clampedProgress" }] : /* istanbul ignore next */ []));
43044
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ExportProgressModalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
43045
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: ExportProgressModalComponent, isStandalone: true, selector: "pptx-export-progress-modal", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, title: { classPropertyName: "title", publicName: "title", isSignal: true, isRequired: false, transformFunction: null }, progress: { classPropertyName: "progress", publicName: "progress", isSignal: true, isRequired: false, transformFunction: null }, statusMessage: { classPropertyName: "statusMessage", publicName: "statusMessage", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { cancel: "cancel" }, ngImport: i0, template: `
43523
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ExportProgressModalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
43524
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: ExportProgressModalComponent, isStandalone: true, selector: "pptx-export-progress-modal", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, title: { classPropertyName: "title", publicName: "title", isSignal: true, isRequired: false, transformFunction: null }, progress: { classPropertyName: "progress", publicName: "progress", isSignal: true, isRequired: false, transformFunction: null }, statusMessage: { classPropertyName: "statusMessage", publicName: "statusMessage", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { cancel: "cancel" }, ngImport: i0, template: `
43046
43525
  @if (open()) {
43047
43526
  <div
43048
43527
  class="pptx-ng-export-progress__backdrop"
@@ -43072,7 +43551,7 @@ class ExportProgressModalComponent {
43072
43551
  }
43073
43552
  `, isInline: true, styles: [".pptx-ng-export-progress__backdrop{position:fixed;inset:0;z-index:1200;display:flex;align-items:center;justify-content:center;background:#0009;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px)}.pptx-ng-export-progress{display:flex;flex-direction:column;width:min(92vw,384px);padding:1.5rem;border:1px solid rgba(255,255,255,.12);border-radius:.75rem;background:#1e1e1e;color:#e5e5e5;box-shadow:0 20px 60px #0009}.pptx-ng-export-progress__title{margin:0 0 1rem;font-size:.875rem;font-weight:600;color:#fff}.pptx-ng-export-progress__track{width:100%;height:.625rem;margin-bottom:.75rem;overflow:hidden;border-radius:9999px;background:#ffffff1f}.pptx-ng-export-progress__fill{height:100%;border-radius:9999px;background:#2563eb;transition:width .3s ease-out}.pptx-ng-export-progress__status{display:flex;align-items:center;justify-content:space-between;margin-bottom:1rem;font-size:.75rem;color:#fff9}.pptx-ng-export-progress__pct{font-variant-numeric:tabular-nums}.pptx-ng-export-progress__actions{display:flex;justify-content:flex-end}.pptx-ng-export-progress__btn{padding:.375rem 1rem;font-size:.75rem;color:#e5e5e5;border:1px solid rgba(255,255,255,.16);border-radius:.375rem;background:#ffffff0f;cursor:pointer;transition:background .15s ease}.pptx-ng-export-progress__btn:hover{background:#ffffff1f}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
43074
43553
  }
43075
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ExportProgressModalComponent, decorators: [{
43554
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ExportProgressModalComponent, decorators: [{
43076
43555
  type: Component,
43077
43556
  args: [{ selector: 'pptx-export-progress-modal', standalone: true, imports: [TranslatePipe], changeDetection: ChangeDetectionStrategy.OnPush, template: `
43078
43557
  @if (open()) {
@@ -43401,10 +43880,10 @@ class ExportService {
43401
43880
  const blob = await recordWebm(canvases, { slideDurationMs, signal, onProgress });
43402
43881
  downloadBlob(blob, sanitizeFileName(fileName));
43403
43882
  }
43404
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ExportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
43405
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ExportService });
43883
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ExportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
43884
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ExportService });
43406
43885
  }
43407
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ExportService, decorators: [{
43886
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ExportService, decorators: [{
43408
43887
  type: Injectable
43409
43888
  }] });
43410
43889
 
@@ -43691,10 +44170,10 @@ class LoadContentService {
43691
44170
  }
43692
44171
  }
43693
44172
  }
43694
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: LoadContentService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
43695
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: LoadContentService });
44173
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: LoadContentService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
44174
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: LoadContentService });
43696
44175
  }
43697
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: LoadContentService, decorators: [{
44176
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: LoadContentService, decorators: [{
43698
44177
  type: Injectable
43699
44178
  }], ctorParameters: () => [] });
43700
44179
  /**
@@ -43769,10 +44248,10 @@ class FieldContextService {
43769
44248
  slideTitle: resolveSlideTitle(slide),
43770
44249
  };
43771
44250
  }
43772
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FieldContextService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
43773
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FieldContextService });
44251
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: FieldContextService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
44252
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: FieldContextService });
43774
44253
  }
43775
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FieldContextService, decorators: [{
44254
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: FieldContextService, decorators: [{
43776
44255
  type: Injectable
43777
44256
  }] });
43778
44257
  /**
@@ -43933,8 +44412,8 @@ class FindBarComponent {
43933
44412
  const idx = Math.min(this.activeMatchIndex(), ms.length - 1);
43934
44413
  this.navigate.emit(ms[idx].slideIndex);
43935
44414
  }
43936
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FindBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
43937
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: FindBarComponent, isStandalone: true, selector: "pptx-find-bar", inputs: { slides: { classPropertyName: "slides", publicName: "slides", isSignal: true, isRequired: true, transformFunction: null } }, outputs: { navigate: "navigate", closed: "closed" }, host: { listeners: { "document:keydown": "onDocumentKeydown($event)" } }, viewQueries: [{ propertyName: "queryInputRef", first: true, predicate: ["queryInput"], descendants: true, isSignal: true }], ngImport: i0, template: `
44415
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: FindBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
44416
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: FindBarComponent, isStandalone: true, selector: "pptx-find-bar", inputs: { slides: { classPropertyName: "slides", publicName: "slides", isSignal: true, isRequired: true, transformFunction: null } }, outputs: { navigate: "navigate", closed: "closed" }, host: { listeners: { "document:keydown": "onDocumentKeydown($event)" } }, viewQueries: [{ propertyName: "queryInputRef", first: true, predicate: ["queryInput"], descendants: true, isSignal: true }], ngImport: i0, template: `
43938
44417
  <div
43939
44418
  class="pptx-find-bar"
43940
44419
  role="search"
@@ -44013,7 +44492,7 @@ class FindBarComponent {
44013
44492
  </div>
44014
44493
  `, isInline: true, styles: [":host{display:block;position:fixed;top:3.5rem;right:1rem;z-index:100}.pptx-find-bar{display:flex;flex-direction:column;gap:.25rem;min-width:22rem;padding:.5rem .625rem;border:1px solid rgba(255,255,255,.12);border-radius:.375rem;background:#1e1e1e;color:#e5e5e5;box-shadow:0 8px 24px #00000080;font-size:.8125rem}.pptx-find-bar__row{display:flex;align-items:center;gap:.375rem}.pptx-find-bar__input{flex:1;min-width:0;padding:.3rem .5rem;border:1px solid rgba(255,255,255,.15);border-radius:.25rem;background:#ffffff0f;color:inherit;font-size:inherit;outline:none}.pptx-find-bar__input:focus{border-color:#3b82f6;background:#3b82f614}.pptx-find-bar__input::-webkit-search-cancel-button{display:none}.pptx-find-bar__count{white-space:nowrap;color:#ffffff80;font-size:.75rem;min-width:7rem;text-align:right}.pptx-find-bar__btn{display:inline-flex;align-items:center;justify-content:center;width:1.75rem;height:1.75rem;padding:0;border:1px solid rgba(255,255,255,.1);border-radius:.25rem;background:#ffffff0f;color:inherit;cursor:pointer;transition:background .12s;flex-shrink:0;font-size:.875rem;line-height:1}.pptx-find-bar__btn:hover:not(:disabled){background:#ffffff24}.pptx-find-bar__btn:disabled{opacity:.35;cursor:not-allowed}.pptx-find-bar__btn--close{border-color:transparent;font-size:.75rem}.pptx-find-bar__snippet{padding:.25rem .375rem;border-radius:.25rem;background:#ffffff0a;color:#fff9;font-size:.6875rem;line-height:1.4;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
44015
44494
  }
44016
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FindBarComponent, decorators: [{
44495
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: FindBarComponent, decorators: [{
44017
44496
  type: Component,
44018
44497
  args: [{ selector: 'pptx-find-bar', standalone: true, imports: [TranslatePipe], changeDetection: ChangeDetectionStrategy.OnPush, template: `
44019
44498
  <div
@@ -44256,8 +44735,8 @@ class FindReplaceBarComponent {
44256
44735
  focusFindInput() {
44257
44736
  this.findInputRef()?.nativeElement.focus();
44258
44737
  }
44259
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FindReplaceBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
44260
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: FindReplaceBarComponent, isStandalone: true, selector: "pptx-find-replace-bar", inputs: { matchCount: { classPropertyName: "matchCount", publicName: "matchCount", isSignal: true, isRequired: false, transformFunction: null }, matchIndex: { classPropertyName: "matchIndex", publicName: "matchIndex", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { find: "find", navigate: "navigate", replaceOne: "replaceOne", replaceAll: "replaceAll", close: "close" }, host: { listeners: { "document:keydown": "onDocumentKeydown($event)" } }, viewQueries: [{ propertyName: "findInputRef", first: true, predicate: ["findInput"], descendants: true, isSignal: true }], ngImport: i0, template: `
44738
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: FindReplaceBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
44739
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: FindReplaceBarComponent, isStandalone: true, selector: "pptx-find-replace-bar", inputs: { matchCount: { classPropertyName: "matchCount", publicName: "matchCount", isSignal: true, isRequired: false, transformFunction: null }, matchIndex: { classPropertyName: "matchIndex", publicName: "matchIndex", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { find: "find", navigate: "navigate", replaceOne: "replaceOne", replaceAll: "replaceAll", close: "close" }, host: { listeners: { "document:keydown": "onDocumentKeydown($event)" } }, viewQueries: [{ propertyName: "findInputRef", first: true, predicate: ["findInput"], descendants: true, isSignal: true }], ngImport: i0, template: `
44261
44740
  <div
44262
44741
  class="pptx-frb"
44263
44742
  role="dialog"
@@ -44368,7 +44847,7 @@ class FindReplaceBarComponent {
44368
44847
  </div>
44369
44848
  `, isInline: true, styles: [":host{display:block;position:fixed;top:3.5rem;right:1rem;z-index:100}.pptx-frb{display:flex;flex-direction:column;gap:.375rem;min-width:26rem;padding:.5rem .625rem;border:1px solid rgba(255,255,255,.12);border-radius:.375rem;background:#1e1e1e;color:#e5e5e5;box-shadow:0 8px 24px #00000080;font-size:.8125rem}.pptx-frb__row{display:flex;align-items:center;gap:.375rem}.pptx-frb__row--replace{padding-top:.125rem;border-top:1px solid rgba(255,255,255,.07)}.pptx-frb__input{flex:1;min-width:0;padding:.3rem .5rem;border:1px solid rgba(255,255,255,.15);border-radius:.25rem;background:#ffffff0f;color:inherit;font-size:inherit;outline:none}.pptx-frb__input:focus{border-color:#3b82f6;background:#3b82f614}.pptx-frb__input::-webkit-search-cancel-button{display:none}.pptx-frb__count{white-space:nowrap;color:#ffffff80;font-size:.75rem;min-width:5.5rem;text-align:right}.pptx-frb__btn{display:inline-flex;align-items:center;justify-content:center;width:1.75rem;height:1.75rem;padding:0;border:1px solid rgba(255,255,255,.1);border-radius:.25rem;background:#ffffff0f;color:inherit;cursor:pointer;transition:background .12s;flex-shrink:0;font-size:.875rem;line-height:1}.pptx-frb__btn:hover:not(:disabled){background:#ffffff24}.pptx-frb__btn:disabled{opacity:.35;cursor:not-allowed}.pptx-frb__btn--active{background:#3b82f64d;border-color:#3b82f699;color:#93c5fd}.pptx-frb__btn--close{border-color:transparent;font-size:.75rem}.pptx-frb__action-btn{padding:.25rem .625rem;border:1px solid rgba(255,255,255,.15);border-radius:.25rem;background:#ffffff14;color:inherit;font-size:.75rem;cursor:pointer;white-space:nowrap;transition:background .12s;flex-shrink:0}.pptx-frb__action-btn:hover:not(:disabled){background:#ffffff29}.pptx-frb__action-btn:disabled{opacity:.35;cursor:not-allowed}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
44370
44849
  }
44371
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FindReplaceBarComponent, decorators: [{
44850
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: FindReplaceBarComponent, decorators: [{
44372
44851
  type: Component,
44373
44852
  args: [{ selector: 'pptx-find-replace-bar', standalone: true, imports: [TranslatePipe], changeDetection: ChangeDetectionStrategy.OnPush, template: `
44374
44853
  <div
@@ -44528,8 +45007,8 @@ class FollowModeBarComponent {
44528
45007
  toggle(clientId) {
44529
45008
  this.follow.emit(this.followedClientId() === clientId ? null : clientId);
44530
45009
  }
44531
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FollowModeBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
44532
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: FollowModeBarComponent, isStandalone: true, selector: "pptx-follow-mode-bar", inputs: { presences: { classPropertyName: "presences", publicName: "presences", isSignal: true, isRequired: false, transformFunction: null }, followedClientId: { classPropertyName: "followedClientId", publicName: "followedClientId", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { follow: "follow" }, ngImport: i0, template: `
45010
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: FollowModeBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
45011
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: FollowModeBarComponent, isStandalone: true, selector: "pptx-follow-mode-bar", inputs: { presences: { classPropertyName: "presences", publicName: "presences", isSignal: true, isRequired: false, transformFunction: null }, followedClientId: { classPropertyName: "followedClientId", publicName: "followedClientId", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { follow: "follow" }, ngImport: i0, template: `
44533
45012
  @if (chips().length > 0) {
44534
45013
  <div class="pptx-ng-follow-bar" data-export-ignore="true">
44535
45014
  <span class="pptx-ng-follow-status">
@@ -44571,7 +45050,7 @@ class FollowModeBarComponent {
44571
45050
  }
44572
45051
  `, isInline: true, styles: [":host{display:block}.pptx-ng-follow-bar{display:flex;flex-wrap:wrap;align-items:center;gap:.75rem;border-radius:.5rem;background:var(--pptx-card, rgba(17, 24, 39, .95));padding:.375rem .625rem;font-size:.75rem;color:var(--pptx-foreground, #f3f4f6)}.pptx-ng-follow-status{display:inline-flex;align-items:center;gap:.375rem;white-space:nowrap;color:var(--pptx-muted-foreground, #9ca3af)}.pptx-ng-follow-stop{cursor:pointer;border-radius:.375rem;border:1px solid var(--pptx-border, #374151);background:transparent;padding:.125rem .5rem;font-size:11px;color:var(--pptx-foreground, #f3f4f6)}.pptx-ng-follow-list{display:flex;align-items:center;gap:.375rem;margin:0;padding:0;list-style:none}.pptx-ng-follow-peer{display:inline-flex;cursor:pointer;align-items:center;gap:.375rem;border-radius:9999px;border:1px solid transparent;background:var(--pptx-muted, rgba(55, 65, 81, .6));padding:.125rem .5rem .125rem .125rem;color:var(--pptx-foreground, #f3f4f6)}.pptx-ng-follow-peer.is-following{border-color:var(--pptx-primary, #6366f1);background:color-mix(in srgb,var(--pptx-primary, #6366f1) 30%,transparent)}.pptx-ng-follow-avatar{display:inline-flex;height:22px;width:22px;align-items:center;justify-content:center;border-radius:9999px;font-size:10px;font-weight:600;line-height:1;color:#fff}.pptx-ng-follow-name{max-width:120px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
44573
45052
  }
44574
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FollowModeBarComponent, decorators: [{
45053
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: FollowModeBarComponent, decorators: [{
44575
45054
  type: Component,
44576
45055
  args: [{ selector: 'pptx-follow-mode-bar', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
44577
45056
  @if (chips().length > 0) {
@@ -44693,8 +45172,8 @@ class HyperlinkDialogComponent {
44693
45172
  this.save.emit(buildClearHyperlinkPatch());
44694
45173
  this.onClose();
44695
45174
  }
44696
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: HyperlinkDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
44697
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: HyperlinkDialogComponent, isStandalone: true, selector: "pptx-hyperlink-dialog", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { save: "save", close: "close" }, ngImport: i0, template: `
45175
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: HyperlinkDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
45176
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: HyperlinkDialogComponent, isStandalone: true, selector: "pptx-hyperlink-dialog", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { save: "save", close: "close" }, ngImport: i0, template: `
44698
45177
  <pptx-modal-dialog
44699
45178
  [open]="open()"
44700
45179
  [title]="'pptx.hyperlinkDialog.title' | translate"
@@ -44758,7 +45237,7 @@ class HyperlinkDialogComponent {
44758
45237
  </pptx-modal-dialog>
44759
45238
  `, isInline: true, styles: [".pptx-ng-hyperlink-form{display:flex;flex-direction:column;gap:12px;min-width:280px}.pptx-ng-hyperlink-field{display:flex;flex-direction:column;gap:4px}.pptx-ng-hyperlink-label{font-size:12px;font-weight:500;color:var(--pptx-muted-foreground, #6b7280)}.pptx-ng-hyperlink-input{width:100%;padding:6px 10px;font-size:13px;color:var(--pptx-foreground, #111827);background:var(--pptx-background, #ffffff);border:1px solid var(--pptx-border, #e5e7eb);border-radius:4px;outline:none}.pptx-ng-hyperlink-input:focus{border-color:var(--pptx-primary, #2563eb);box-shadow:0 0 0 1px var(--pptx-primary, #2563eb)}.pptx-ng-hyperlink-btn{padding:6px 12px;font-size:12px;border-radius:4px;border:1px solid transparent;cursor:pointer}.pptx-ng-hyperlink-btn--primary{color:var(--pptx-primary-foreground, #ffffff);background:var(--pptx-primary, #2563eb)}.pptx-ng-hyperlink-btn--secondary{color:var(--pptx-foreground, #111827);background:transparent;border-color:var(--pptx-border, #e5e7eb)}.pptx-ng-hyperlink-btn--ghost{margin-right:auto;color:var(--pptx-destructive, #dc2626);background:transparent}.pptx-ng-hyperlink-btn--secondary:hover,.pptx-ng-hyperlink-btn--ghost:hover{background:var(--pptx-muted, #f3f4f6)}\n"], dependencies: [{ kind: "component", type: ModalDialogComponent, selector: "pptx-modal-dialog", inputs: ["open", "title"], outputs: ["close"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
44760
45239
  }
44761
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: HyperlinkDialogComponent, decorators: [{
45240
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: HyperlinkDialogComponent, decorators: [{
44762
45241
  type: Component,
44763
45242
  args: [{ selector: 'pptx-hyperlink-dialog', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [ModalDialogComponent, TranslatePipe], template: `
44764
45243
  <pptx-modal-dialog
@@ -45926,8 +46405,8 @@ class SmartArtRendererComponent {
45926
46405
  // ── Empty / no-data state ──────────────────────────────────────────────
45927
46406
  isEmpty = computed(() => this.nodes().length === 0 && !this.hasDrawingShapes(), /* @ts-ignore */
45928
46407
  ...(ngDevMode ? [{ debugName: "isEmpty" }] : /* istanbul ignore next */ []));
45929
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SmartArtRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
45930
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: SmartArtRendererComponent, isStandalone: true, selector: "pptx-smart-art-renderer", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, zIndex: { classPropertyName: "zIndex", publicName: "zIndex", isSignal: true, isRequired: false, transformFunction: null }, editable: { classPropertyName: "editable", publicName: "editable", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "nodeEditor", first: true, predicate: ["nodeEditor"], descendants: true, isSignal: true }, { propertyName: "smartartContainer", first: true, predicate: ["smartartContainer"], descendants: true, isSignal: true }, { propertyName: "styleBar", first: true, predicate: ["styleBar"], descendants: true, isSignal: true }], ngImport: i0, template: `
46408
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SmartArtRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
46409
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: SmartArtRendererComponent, isStandalone: true, selector: "pptx-smart-art-renderer", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, zIndex: { classPropertyName: "zIndex", publicName: "zIndex", isSignal: true, isRequired: false, transformFunction: null }, editable: { classPropertyName: "editable", publicName: "editable", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "nodeEditor", first: true, predicate: ["nodeEditor"], descendants: true, isSignal: true }, { propertyName: "smartartContainer", first: true, predicate: ["smartartContainer"], descendants: true, isSignal: true }, { propertyName: "styleBar", first: true, predicate: ["styleBar"], descendants: true, isSignal: true }], ngImport: i0, template: `
45931
46410
  <div
45932
46411
  class="pptx-ng-element pptx-ng-smartart"
45933
46412
  [ngStyle]="containerStyle()"
@@ -46161,7 +46640,7 @@ class SmartArtRendererComponent {
46161
46640
  </div>
46162
46641
  `, isInline: true, styles: [".pptx-ng-smartart-chrome{box-sizing:border-box;overflow:hidden;position:relative}.pptx-ng-smartart-svg{width:100%;height:100%;pointer-events:none}.pptx-ng-smartart-node--editable{pointer-events:auto;cursor:text}.pptx-ng-smartart-node--editable:hover{filter:drop-shadow(0 0 2px rgba(96,165,250,.8))}.pptx-ng-smartart-node-editor{position:absolute;box-sizing:border-box;margin:0;padding:1px 2px;border:1px solid var(--pptx-inspector-active, #0078d4);border-radius:2px;background:#fff;color:#111;font-size:11px;line-height:1.1;text-align:center;resize:none;overflow:hidden;z-index:2}.pptx-ng-smartart-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;font-size:11px;color:#fffc;pointer-events:none}.pptx-ng-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.pptx-ng-smartart-style-bar{position:absolute;pointer-events:auto;display:flex;gap:6px;padding:6px 8px;background:#ffffffe6;border:1px solid var(--border, #e2e8f0);border-radius:9999px;box-shadow:0 1px 2px #0000001a}.pptx-ng-smartart-swatch{width:20px;height:20px;border-radius:50%;border:1px solid rgba(0,0,0,.1);cursor:pointer;transition:transform .1s}.pptx-ng-smartart-swatch:hover{transform:scale(1.25)}\n"], dependencies: [{ kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
46163
46642
  }
46164
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SmartArtRendererComponent, decorators: [{
46643
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SmartArtRendererComponent, decorators: [{
46165
46644
  type: Component,
46166
46645
  args: [{ selector: 'pptx-smart-art-renderer', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [NgStyle, TranslatePipe], template: `
46167
46646
  <div
@@ -46433,8 +46912,8 @@ class SmartArtPreviewComponent {
46433
46912
  };
46434
46913
  }, /* @ts-ignore */
46435
46914
  ...(ngDevMode ? [{ debugName: "previewElement" }] : /* istanbul ignore next */ []));
46436
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SmartArtPreviewComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
46437
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.5", type: SmartArtPreviewComponent, isStandalone: true, selector: "pptx-smart-art-preview", inputs: { layout: { classPropertyName: "layout", publicName: "layout", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0, template: `
46915
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SmartArtPreviewComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
46916
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.6", type: SmartArtPreviewComponent, isStandalone: true, selector: "pptx-smart-art-preview", inputs: { layout: { classPropertyName: "layout", publicName: "layout", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0, template: `
46438
46917
  <div class="pptx-sa-preview" aria-hidden="true">
46439
46918
  <div class="pptx-sa-preview__stage">
46440
46919
  <pptx-smart-art-renderer [element]="previewElement()" />
@@ -46442,7 +46921,7 @@ class SmartArtPreviewComponent {
46442
46921
  </div>
46443
46922
  `, isInline: true, styles: [".pptx-sa-preview{width:64px;height:36px;overflow:hidden;pointer-events:none}.pptx-sa-preview__stage{position:relative;width:600px;height:340px;transform:scale(.10667);transform-origin:top left}\n"], dependencies: [{ kind: "component", type: SmartArtRendererComponent, selector: "pptx-smart-art-renderer", inputs: ["element", "zIndex", "editable"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
46444
46923
  }
46445
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SmartArtPreviewComponent, decorators: [{
46924
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SmartArtPreviewComponent, decorators: [{
46446
46925
  type: Component,
46447
46926
  args: [{ selector: 'pptx-smart-art-preview', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [SmartArtRendererComponent], template: `
46448
46927
  <div class="pptx-sa-preview" aria-hidden="true">
@@ -46535,8 +47014,8 @@ class InsertSmartArtDialogComponent {
46535
47014
  this.insert.emit({ layout, items });
46536
47015
  this.close.emit();
46537
47016
  }
46538
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: InsertSmartArtDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
46539
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: InsertSmartArtDialogComponent, isStandalone: true, selector: "pptx-insert-smart-art-dialog", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { close: "close", insert: "insert" }, ngImport: i0, template: `
47017
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: InsertSmartArtDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
47018
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: InsertSmartArtDialogComponent, isStandalone: true, selector: "pptx-insert-smart-art-dialog", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { close: "close", insert: "insert" }, ngImport: i0, template: `
46540
47019
  <pptx-modal-dialog
46541
47020
  [open]="open()"
46542
47021
  [title]="'pptx.insertSmartArt.title' | translate"
@@ -46618,7 +47097,7 @@ class InsertSmartArtDialogComponent {
46618
47097
  </pptx-modal-dialog>
46619
47098
  `, isInline: true, styles: [".pptx-sa-insert{display:flex;gap:0;min-width:min(86vw,560px)}.pptx-sa-insert__sidebar{display:flex;flex-direction:column;width:9rem;flex-shrink:0;border-right:1px solid var(--pptx-border, #e5e7eb);padding:.25rem 0}.pptx-sa-insert__cat{text-align:left;padding:.35rem .75rem;font-size:12px;background:transparent;border:none;color:inherit;cursor:pointer}.pptx-sa-insert__cat:hover{background:var(--pptx-accent, #f1f5f9)}.pptx-sa-insert__cat.is-active{background:var(--pptx-primary, #2563eb);color:#fff}.pptx-sa-insert__main{flex:1;min-width:0;display:flex;flex-direction:column;gap:.5rem;padding:.5rem}.pptx-sa-insert__gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:.5rem;max-height:16rem;overflow-y:auto}.pptx-sa-insert__cell{display:flex;flex-direction:column;align-items:center;gap:.25rem;padding:.4rem;border:1px solid var(--pptx-border, #e5e7eb);border-radius:4px;background:transparent;color:inherit;cursor:pointer}.pptx-sa-insert__cell:hover{background:var(--pptx-accent, #f1f5f9)}.pptx-sa-insert__cell.is-selected{border-color:var(--pptx-primary, #2563eb);background:color-mix(in srgb,var(--pptx-primary, #2563eb) 18%,transparent)}.pptx-sa-insert__thumb{width:4rem;height:3rem;display:flex;align-items:center;justify-content:center;background:var(--pptx-muted, #f1f5f9);border-radius:4px}.pptx-sa-insert__cell-label{font-size:10px;text-align:center;line-height:1.15}.pptx-sa-insert__text{display:flex;flex-direction:column;gap:.2rem}.pptx-sa-insert__text-label{font-size:10px;color:var(--pptx-muted-foreground, #6b7280)}.pptx-sa-insert__textarea{width:100%;box-sizing:border-box;resize:vertical;font-size:12px;padding:.35rem .5rem;border:1px solid var(--pptx-border, #e5e7eb);border-radius:4px;background:var(--pptx-input, #fff);color:inherit}.pptx-sa-insert__footer{display:flex;gap:.5rem;justify-content:flex-end}.pptx-sa-insert__btn{padding:.35rem .85rem;font-size:12px;border:1px solid var(--pptx-border, #e5e7eb);border-radius:4px;background:var(--pptx-muted, #f1f5f9);color:inherit;cursor:pointer}.pptx-sa-insert__btn--primary{background:var(--pptx-primary, #2563eb);border-color:var(--pptx-primary, #2563eb);color:#fff}.pptx-sa-insert__btn:disabled{opacity:.45;cursor:not-allowed}\n"], dependencies: [{ kind: "component", type: ModalDialogComponent, selector: "pptx-modal-dialog", inputs: ["open", "title"], outputs: ["close"] }, { kind: "component", type: SmartArtPreviewComponent, selector: "pptx-smart-art-preview", inputs: ["layout"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
46620
47099
  }
46621
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: InsertSmartArtDialogComponent, decorators: [{
47100
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: InsertSmartArtDialogComponent, decorators: [{
46622
47101
  type: Component,
46623
47102
  args: [{ selector: 'pptx-insert-smart-art-dialog', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [ModalDialogComponent, SmartArtPreviewComponent, TranslatePipe], template: `
46624
47103
  <pptx-modal-dialog
@@ -47077,8 +47556,8 @@ class AnimationAuthorPanelComponent {
47077
47556
  onRemove() {
47078
47557
  this.emit(removeAnimation(this.animations(), this.element().id));
47079
47558
  }
47080
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AnimationAuthorPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
47081
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: AnimationAuthorPanelComponent, isStandalone: true, selector: "pptx-animation-author-panel", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, slideIndex: { classPropertyName: "slideIndex", publicName: "slideIndex", isSignal: true, isRequired: true, transformFunction: null }, animations: { classPropertyName: "animations", publicName: "animations", isSignal: true, isRequired: true, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { animationsChange: "animationsChange" }, ngImport: i0, template: `
47559
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: AnimationAuthorPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
47560
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: AnimationAuthorPanelComponent, isStandalone: true, selector: "pptx-animation-author-panel", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, slideIndex: { classPropertyName: "slideIndex", publicName: "slideIndex", isSignal: true, isRequired: true, transformFunction: null }, animations: { classPropertyName: "animations", publicName: "animations", isSignal: true, isRequired: true, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { animationsChange: "animationsChange" }, ngImport: i0, template: `
47082
47561
  <aside class="pptx-ng-anim" [attr.aria-label]="'pptx.animations.propertiesLabel' | translate">
47083
47562
  <!-- ── Header ───────────────────────────────────────────────────── -->
47084
47563
  <div class="pptx-ng-anim__header">
@@ -47373,7 +47852,7 @@ class AnimationAuthorPanelComponent {
47373
47852
  </aside>
47374
47853
  `, isInline: true, styles: [".pptx-ng-anim{display:flex;flex-direction:column;gap:0;padding:.5rem;background:var(--pptx-inspector-bg, #1e1e1e);color:var(--pptx-inspector-fg, #e0e0e0);font-size:12px;min-width:220px;overflow-y:auto}.pptx-ng-anim__header{display:flex;align-items:center;justify-content:space-between;padding-bottom:.4rem;border-bottom:1px solid var(--pptx-inspector-border, #333);margin-bottom:.35rem}.pptx-ng-anim__title{font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:var(--pptx-inspector-muted, #888)}.pptx-ng-anim__subheading{font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:var(--pptx-inspector-muted, #888);padding:.4rem 0 .2rem;border-top:1px solid var(--pptx-inspector-border, #333);margin-top:.2rem}.pptx-ng-anim__section{padding:.25rem 0;border-bottom:1px solid var(--pptx-inspector-border, #2a2a2a)}.pptx-ng-anim__section:last-child{border-bottom:none}.pptx-ng-anim__label{display:block;font-size:10px;color:var(--pptx-inspector-muted, #888);margin-bottom:.2rem}.pptx-ng-anim__select,.pptx-ng-anim__input{width:100%;background:var(--pptx-inspector-input-bg, #2d2d2d);border:1px solid var(--pptx-inspector-border, #444);color:inherit;border-radius:3px;padding:3px 6px;font-size:12px;box-sizing:border-box}.pptx-ng-anim__select:disabled,.pptx-ng-anim__input:disabled{opacity:.5;cursor:not-allowed}.pptx-ng-anim__direction-grid{display:flex;flex-wrap:wrap;gap:.25rem}.pptx-ng-anim__dir-btn{width:30px;height:30px;background:var(--pptx-inspector-input-bg, #2d2d2d);border:1px solid var(--pptx-inspector-border, #444);color:inherit;border-radius:3px;cursor:pointer;font-size:14px;display:flex;align-items:center;justify-content:center}.pptx-ng-anim__dir-btn.is-active{background:var(--pptx-inspector-active, #0078d4);border-color:var(--pptx-inspector-active, #0078d4);color:#fff}.pptx-ng-anim__dir-btn:disabled{opacity:.5;cursor:not-allowed}.pptx-ng-anim__row{display:flex;gap:.35rem}.pptx-ng-anim__order-btn{flex:1;padding:3px 6px;background:var(--pptx-inspector-input-bg, #2d2d2d);border:1px solid var(--pptx-inspector-border, #444);color:inherit;border-radius:3px;cursor:pointer;font-size:11px;white-space:nowrap}.pptx-ng-anim__order-btn:hover:not(:disabled){background:var(--pptx-inspector-hover, #3a3a3a)}.pptx-ng-anim__order-btn:disabled{opacity:.5;cursor:not-allowed}.pptx-ng-anim__remove-btn{padding:2px 6px;background:transparent;border:1px solid var(--pptx-inspector-danger-border, #6b2a2a);color:var(--pptx-inspector-danger, #f47c7c);border-radius:3px;cursor:pointer;font-size:10px}.pptx-ng-anim__remove-btn:hover{background:var(--pptx-inspector-danger-hover, #4a1a1a)}@media(pointer:coarse),(max-width:640px){.pptx-ng-anim{width:100%;min-width:0;box-sizing:border-box;font-size:14px}.pptx-ng-anim__select,.pptx-ng-anim__input{min-height:40px;font-size:16px;padding:6px 8px}.pptx-ng-anim__dir-btn{width:40px;height:40px}.pptx-ng-anim__order-btn{min-height:40px;font-size:13px}}\n"], dependencies: [{ kind: "component", type: LucideX, selector: "svg[lucideX]" }, { kind: "component", type: LucideArrowUp, selector: "svg[lucideArrowUp]" }, { kind: "component", type: LucideArrowDown, selector: "svg[lucideArrowDown]" }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
47375
47854
  }
47376
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AnimationAuthorPanelComponent, decorators: [{
47855
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: AnimationAuthorPanelComponent, decorators: [{
47377
47856
  type: Component,
47378
47857
  args: [{ selector: 'pptx-animation-author-panel', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe, LucideX, LucideArrowUp, LucideArrowDown], template: `
47379
47858
  <aside class="pptx-ng-anim" [attr.aria-label]="'pptx.animations.propertiesLabel' | translate">
@@ -48040,8 +48519,8 @@ class ChartAxisOptionsComponent {
48040
48519
  emit(axisType, edit) {
48041
48520
  this.elementChange.emit(setAxis(this.element(), axisType, edit));
48042
48521
  }
48043
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartAxisOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
48044
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: ChartAxisOptionsComponent, isStandalone: true, selector: "pptx-chart-axis-options", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { elementChange: "elementChange" }, ngImport: i0, template: `
48522
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartAxisOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
48523
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: ChartAxisOptionsComponent, isStandalone: true, selector: "pptx-chart-axis-options", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { elementChange: "elementChange" }, ngImport: i0, template: `
48045
48524
  @if (rows().length > 0) {
48046
48525
  <section class="pptx-chart-card" [attr.aria-label]="'pptx.chart.axes' | translate">
48047
48526
  <h4 class="pptx-chart-card__heading">{{ 'pptx.chart.axes' | translate }}</h4>
@@ -48147,7 +48626,7 @@ class ChartAxisOptionsComponent {
48147
48626
  }
48148
48627
  `, isInline: true, styles: [".pptx-chart-card{display:flex;flex-direction:column;gap:.35rem;padding:.5rem 0;border-top:1px solid var(--pptx-inspector-border, #333)}.pptx-chart-card__heading{font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:var(--pptx-inspector-muted, #888);margin:0}.pptx-chart-card__group{display:flex;flex-direction:column;gap:.3rem}.pptx-chart-card__group--indent{margin-left:.5rem}.pptx-chart-card__subhead{font-size:11px;font-weight:600}.pptx-chart-card__row{display:flex;align-items:center;gap:.4rem;font-size:11px}.pptx-chart-card__label{flex:0 0 auto;width:5rem;color:var(--pptx-inspector-muted, #888)}.pptx-chart-card__label--wide{width:6.5rem}.pptx-chart-card__name{flex:1 1 auto;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.pptx-chart-card__check{display:flex;align-items:center;gap:.35rem;font-size:11px;cursor:pointer}.pptx-chart-card__input{flex:1 1 auto;min-width:0;box-sizing:border-box;padding:2px 4px;font-size:11px;background:var(--pptx-inspector-input-bg, #2d2d2d);border:1px solid var(--pptx-inspector-border, #444);border-radius:3px;color:inherit;outline:none}.pptx-chart-card__input--num{flex:0 0 auto;width:4rem;text-align:right}.pptx-chart-card__input:focus{border-color:var(--pptx-inspector-active, #0078d4)}.pptx-chart-card__input:disabled{opacity:.6;cursor:not-allowed}.pptx-chart-card__color{flex:0 0 auto;width:26px;height:20px;padding:0;border:1px solid var(--pptx-inspector-border, #444);border-radius:3px;background:transparent;cursor:pointer}.pptx-chart-card__color:disabled{opacity:.6;cursor:not-allowed}.pptx-chart-card__clear{flex:0 0 auto;padding:0 2px;font-size:12px;line-height:1;background:none;border:none;color:var(--pptx-inspector-muted, #888);cursor:pointer}.pptx-chart-card__clear:hover{color:var(--pptx-inspector-danger, #f47c7c)}.pptx-chart-card__input--num::-webkit-outer-spin-button,.pptx-chart-card__input--num::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
48149
48628
  }
48150
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartAxisOptionsComponent, decorators: [{
48629
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartAxisOptionsComponent, decorators: [{
48151
48630
  type: Component,
48152
48631
  args: [{ selector: 'pptx-chart-axis-options', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
48153
48632
  @if (rows().length > 0) {
@@ -48697,8 +49176,8 @@ class ChartAxisStyleOptionsComponent {
48697
49176
  }
48698
49177
  this.elementChange.emit(setGridlineStyle(this.element(), axisType, which, { dashStyle: value || null }));
48699
49178
  }
48700
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartAxisStyleOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
48701
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: ChartAxisStyleOptionsComponent, isStandalone: true, selector: "pptx-chart-axis-style-options", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { elementChange: "elementChange" }, ngImport: i0, template: `
49179
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartAxisStyleOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
49180
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: ChartAxisStyleOptionsComponent, isStandalone: true, selector: "pptx-chart-axis-style-options", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { elementChange: "elementChange" }, ngImport: i0, template: `
48702
49181
  @if (rows().length > 0) {
48703
49182
  <section class="pptx-chart-card" [attr.aria-label]="'pptx.chart.axisStyling' | translate">
48704
49183
  <h4 class="pptx-chart-card__heading">{{ 'pptx.chart.axisStyling' | translate }}</h4>
@@ -48826,7 +49305,7 @@ class ChartAxisStyleOptionsComponent {
48826
49305
  }
48827
49306
  `, isInline: true, styles: [".pptx-chart-card{display:flex;flex-direction:column;gap:.35rem;padding:.5rem 0;border-top:1px solid var(--pptx-inspector-border, #333)}.pptx-chart-card__heading{font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:var(--pptx-inspector-muted, #888);margin:0}.pptx-chart-card__group{display:flex;flex-direction:column;gap:.3rem}.pptx-chart-card__group--indent{margin-left:.5rem}.pptx-chart-card__subhead{font-size:11px;font-weight:600}.pptx-chart-card__row{display:flex;align-items:center;gap:.4rem;font-size:11px}.pptx-chart-card__label{flex:0 0 auto;width:5rem;color:var(--pptx-inspector-muted, #888)}.pptx-chart-card__label--wide{width:6.5rem}.pptx-chart-card__name{flex:1 1 auto;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.pptx-chart-card__check{display:flex;align-items:center;gap:.35rem;font-size:11px;cursor:pointer}.pptx-chart-card__input{flex:1 1 auto;min-width:0;box-sizing:border-box;padding:2px 4px;font-size:11px;background:var(--pptx-inspector-input-bg, #2d2d2d);border:1px solid var(--pptx-inspector-border, #444);border-radius:3px;color:inherit;outline:none}.pptx-chart-card__input--num{flex:0 0 auto;width:4rem;text-align:right}.pptx-chart-card__input:focus{border-color:var(--pptx-inspector-active, #0078d4)}.pptx-chart-card__input:disabled{opacity:.6;cursor:not-allowed}.pptx-chart-card__color{flex:0 0 auto;width:26px;height:20px;padding:0;border:1px solid var(--pptx-inspector-border, #444);border-radius:3px;background:transparent;cursor:pointer}.pptx-chart-card__color:disabled{opacity:.6;cursor:not-allowed}.pptx-chart-card__clear{flex:0 0 auto;padding:0 2px;font-size:12px;line-height:1;background:none;border:none;color:var(--pptx-inspector-muted, #888);cursor:pointer}.pptx-chart-card__clear:hover{color:var(--pptx-inspector-danger, #f47c7c)}.pptx-chart-card__input--num::-webkit-outer-spin-button,.pptx-chart-card__input--num::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
48828
49307
  }
48829
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartAxisStyleOptionsComponent, decorators: [{
49308
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartAxisStyleOptionsComponent, decorators: [{
48830
49309
  type: Component,
48831
49310
  args: [{ selector: 'pptx-chart-axis-style-options', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
48832
49311
  @if (rows().length > 0) {
@@ -48991,8 +49470,8 @@ class ChartComboTypeOptionsComponent {
48991
49470
  }
48992
49471
  this.elementChange.emit(setSeriesChartType(this.element(), index, value === '' ? null : value));
48993
49472
  }
48994
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartComboTypeOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
48995
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: ChartComboTypeOptionsComponent, isStandalone: true, selector: "pptx-chart-combo-type-options", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { elementChange: "elementChange" }, ngImport: i0, template: `
49473
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartComboTypeOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
49474
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: ChartComboTypeOptionsComponent, isStandalone: true, selector: "pptx-chart-combo-type-options", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { elementChange: "elementChange" }, ngImport: i0, template: `
48996
49475
  @if (supported()) {
48997
49476
  <section class="pptx-chart-card" [attr.aria-label]="'pptx.chart.comboTypes' | translate">
48998
49477
  <h4 class="pptx-chart-card__heading">{{ 'pptx.chart.comboTypes' | translate }}</h4>
@@ -49017,7 +49496,7 @@ class ChartComboTypeOptionsComponent {
49017
49496
  }
49018
49497
  `, isInline: true, styles: [".pptx-chart-card{display:flex;flex-direction:column;gap:.35rem;padding:.5rem 0;border-top:1px solid var(--pptx-inspector-border, #333)}.pptx-chart-card__heading{font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:var(--pptx-inspector-muted, #888);margin:0}.pptx-chart-card__group{display:flex;flex-direction:column;gap:.3rem}.pptx-chart-card__group--indent{margin-left:.5rem}.pptx-chart-card__subhead{font-size:11px;font-weight:600}.pptx-chart-card__row{display:flex;align-items:center;gap:.4rem;font-size:11px}.pptx-chart-card__label{flex:0 0 auto;width:5rem;color:var(--pptx-inspector-muted, #888)}.pptx-chart-card__label--wide{width:6.5rem}.pptx-chart-card__name{flex:1 1 auto;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.pptx-chart-card__check{display:flex;align-items:center;gap:.35rem;font-size:11px;cursor:pointer}.pptx-chart-card__input{flex:1 1 auto;min-width:0;box-sizing:border-box;padding:2px 4px;font-size:11px;background:var(--pptx-inspector-input-bg, #2d2d2d);border:1px solid var(--pptx-inspector-border, #444);border-radius:3px;color:inherit;outline:none}.pptx-chart-card__input--num{flex:0 0 auto;width:4rem;text-align:right}.pptx-chart-card__input:focus{border-color:var(--pptx-inspector-active, #0078d4)}.pptx-chart-card__input:disabled{opacity:.6;cursor:not-allowed}.pptx-chart-card__color{flex:0 0 auto;width:26px;height:20px;padding:0;border:1px solid var(--pptx-inspector-border, #444);border-radius:3px;background:transparent;cursor:pointer}.pptx-chart-card__color:disabled{opacity:.6;cursor:not-allowed}.pptx-chart-card__clear{flex:0 0 auto;padding:0 2px;font-size:12px;line-height:1;background:none;border:none;color:var(--pptx-inspector-muted, #888);cursor:pointer}.pptx-chart-card__clear:hover{color:var(--pptx-inspector-danger, #f47c7c)}.pptx-chart-card__input--num::-webkit-outer-spin-button,.pptx-chart-card__input--num::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
49019
49498
  }
49020
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartComboTypeOptionsComponent, decorators: [{
49499
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartComboTypeOptionsComponent, decorators: [{
49021
49500
  type: Component,
49022
49501
  args: [{ selector: 'pptx-chart-combo-type-options', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
49023
49502
  @if (supported()) {
@@ -49082,8 +49561,8 @@ class ChartDataLabelOptionsComponent {
49082
49561
  position: (value || undefined),
49083
49562
  }));
49084
49563
  }
49085
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartDataLabelOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
49086
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: ChartDataLabelOptionsComponent, isStandalone: true, selector: "pptx-chart-data-label-options", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { elementChange: "elementChange" }, ngImport: i0, template: `
49564
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartDataLabelOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
49565
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: ChartDataLabelOptionsComponent, isStandalone: true, selector: "pptx-chart-data-label-options", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { elementChange: "elementChange" }, ngImport: i0, template: `
49087
49566
  @if (style().hasDataLabels) {
49088
49567
  <section class="pptx-chart-card" [attr.aria-label]="'pptx.chart.dataLabels' | translate">
49089
49568
  <h4 class="pptx-chart-card__heading">{{ 'pptx.chart.dataLabels' | translate }}</h4>
@@ -49118,7 +49597,7 @@ class ChartDataLabelOptionsComponent {
49118
49597
  }
49119
49598
  `, isInline: true, styles: [".pptx-chart-card{display:flex;flex-direction:column;gap:.35rem;padding:.5rem 0;border-top:1px solid var(--pptx-inspector-border, #333)}.pptx-chart-card__heading{font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:var(--pptx-inspector-muted, #888);margin:0}.pptx-chart-card__group{display:flex;flex-direction:column;gap:.3rem}.pptx-chart-card__group--indent{margin-left:.5rem}.pptx-chart-card__subhead{font-size:11px;font-weight:600}.pptx-chart-card__row{display:flex;align-items:center;gap:.4rem;font-size:11px}.pptx-chart-card__label{flex:0 0 auto;width:5rem;color:var(--pptx-inspector-muted, #888)}.pptx-chart-card__label--wide{width:6.5rem}.pptx-chart-card__name{flex:1 1 auto;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.pptx-chart-card__check{display:flex;align-items:center;gap:.35rem;font-size:11px;cursor:pointer}.pptx-chart-card__input{flex:1 1 auto;min-width:0;box-sizing:border-box;padding:2px 4px;font-size:11px;background:var(--pptx-inspector-input-bg, #2d2d2d);border:1px solid var(--pptx-inspector-border, #444);border-radius:3px;color:inherit;outline:none}.pptx-chart-card__input--num{flex:0 0 auto;width:4rem;text-align:right}.pptx-chart-card__input:focus{border-color:var(--pptx-inspector-active, #0078d4)}.pptx-chart-card__input:disabled{opacity:.6;cursor:not-allowed}.pptx-chart-card__color{flex:0 0 auto;width:26px;height:20px;padding:0;border:1px solid var(--pptx-inspector-border, #444);border-radius:3px;background:transparent;cursor:pointer}.pptx-chart-card__color:disabled{opacity:.6;cursor:not-allowed}.pptx-chart-card__clear{flex:0 0 auto;padding:0 2px;font-size:12px;line-height:1;background:none;border:none;color:var(--pptx-inspector-muted, #888);cursor:pointer}.pptx-chart-card__clear:hover{color:var(--pptx-inspector-danger, #f47c7c)}.pptx-chart-card__input--num::-webkit-outer-spin-button,.pptx-chart-card__input--num::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
49120
49599
  }
49121
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartDataLabelOptionsComponent, decorators: [{
49600
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartDataLabelOptionsComponent, decorators: [{
49122
49601
  type: Component,
49123
49602
  args: [{ selector: 'pptx-chart-data-label-options', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
49124
49603
  @if (style().hasDataLabels) {
@@ -49223,8 +49702,8 @@ class ChartDatapointOptionsComponent {
49223
49702
  }
49224
49703
  this.elementChange.emit(setDataPointExplosion(this.element(), this.activeIndex(), pointIndex, num));
49225
49704
  }
49226
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartDatapointOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
49227
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: ChartDatapointOptionsComponent, isStandalone: true, selector: "pptx-chart-datapoint-options", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { elementChange: "elementChange" }, ngImport: i0, template: `
49705
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartDatapointOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
49706
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: ChartDatapointOptionsComponent, isStandalone: true, selector: "pptx-chart-datapoint-options", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { elementChange: "elementChange" }, ngImport: i0, template: `
49228
49707
  @if (categories().length > 0 && series().length > 0) {
49229
49708
  <section class="pptx-chart-card" [attr.aria-label]="'pptx.chart.dataPoints' | translate">
49230
49709
  <h4 class="pptx-chart-card__heading">{{ 'pptx.chart.dataPoints' | translate }}</h4>
@@ -49288,7 +49767,7 @@ class ChartDatapointOptionsComponent {
49288
49767
  }
49289
49768
  `, isInline: true, styles: [".pptx-chart-card{display:flex;flex-direction:column;gap:.35rem;padding:.5rem 0;border-top:1px solid var(--pptx-inspector-border, #333)}.pptx-chart-card__heading{font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:var(--pptx-inspector-muted, #888);margin:0}.pptx-chart-card__group{display:flex;flex-direction:column;gap:.3rem}.pptx-chart-card__group--indent{margin-left:.5rem}.pptx-chart-card__subhead{font-size:11px;font-weight:600}.pptx-chart-card__row{display:flex;align-items:center;gap:.4rem;font-size:11px}.pptx-chart-card__label{flex:0 0 auto;width:5rem;color:var(--pptx-inspector-muted, #888)}.pptx-chart-card__label--wide{width:6.5rem}.pptx-chart-card__name{flex:1 1 auto;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.pptx-chart-card__check{display:flex;align-items:center;gap:.35rem;font-size:11px;cursor:pointer}.pptx-chart-card__input{flex:1 1 auto;min-width:0;box-sizing:border-box;padding:2px 4px;font-size:11px;background:var(--pptx-inspector-input-bg, #2d2d2d);border:1px solid var(--pptx-inspector-border, #444);border-radius:3px;color:inherit;outline:none}.pptx-chart-card__input--num{flex:0 0 auto;width:4rem;text-align:right}.pptx-chart-card__input:focus{border-color:var(--pptx-inspector-active, #0078d4)}.pptx-chart-card__input:disabled{opacity:.6;cursor:not-allowed}.pptx-chart-card__color{flex:0 0 auto;width:26px;height:20px;padding:0;border:1px solid var(--pptx-inspector-border, #444);border-radius:3px;background:transparent;cursor:pointer}.pptx-chart-card__color:disabled{opacity:.6;cursor:not-allowed}.pptx-chart-card__clear{flex:0 0 auto;padding:0 2px;font-size:12px;line-height:1;background:none;border:none;color:var(--pptx-inspector-muted, #888);cursor:pointer}.pptx-chart-card__clear:hover{color:var(--pptx-inspector-danger, #f47c7c)}.pptx-chart-card__input--num::-webkit-outer-spin-button,.pptx-chart-card__input--num::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
49290
49769
  }
49291
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartDatapointOptionsComponent, decorators: [{
49770
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartDatapointOptionsComponent, decorators: [{
49292
49771
  type: Component,
49293
49772
  args: [{ selector: 'pptx-chart-datapoint-options', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
49294
49773
  @if (categories().length > 0 && series().length > 0) {
@@ -49395,8 +49874,8 @@ class ChartDisplayOptionsComponent {
49395
49874
  // Route through the dedicated op so content keys initialise consistently.
49396
49875
  this.elementChange.emit(setDataLabels(this.element(), { show: boolFromEvent(event) }));
49397
49876
  }
49398
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartDisplayOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
49399
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: ChartDisplayOptionsComponent, isStandalone: true, selector: "pptx-chart-display-options", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { elementChange: "elementChange" }, ngImport: i0, template: `
49877
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartDisplayOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
49878
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: ChartDisplayOptionsComponent, isStandalone: true, selector: "pptx-chart-display-options", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { elementChange: "elementChange" }, ngImport: i0, template: `
49400
49879
  <section class="pptx-chart-card" [attr.aria-label]="'pptx.chart.display' | translate">
49401
49880
  <h4 class="pptx-chart-card__heading">{{ 'pptx.chart.display' | translate }}</h4>
49402
49881
  <div class="pptx-chart-card__group">
@@ -49461,7 +49940,7 @@ class ChartDisplayOptionsComponent {
49461
49940
  </section>
49462
49941
  `, isInline: true, styles: [".pptx-chart-card{display:flex;flex-direction:column;gap:.35rem;padding:.5rem 0;border-top:1px solid var(--pptx-inspector-border, #333)}.pptx-chart-card__heading{font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:var(--pptx-inspector-muted, #888);margin:0}.pptx-chart-card__group{display:flex;flex-direction:column;gap:.3rem}.pptx-chart-card__group--indent{margin-left:.5rem}.pptx-chart-card__subhead{font-size:11px;font-weight:600}.pptx-chart-card__row{display:flex;align-items:center;gap:.4rem;font-size:11px}.pptx-chart-card__label{flex:0 0 auto;width:5rem;color:var(--pptx-inspector-muted, #888)}.pptx-chart-card__label--wide{width:6.5rem}.pptx-chart-card__name{flex:1 1 auto;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.pptx-chart-card__check{display:flex;align-items:center;gap:.35rem;font-size:11px;cursor:pointer}.pptx-chart-card__input{flex:1 1 auto;min-width:0;box-sizing:border-box;padding:2px 4px;font-size:11px;background:var(--pptx-inspector-input-bg, #2d2d2d);border:1px solid var(--pptx-inspector-border, #444);border-radius:3px;color:inherit;outline:none}.pptx-chart-card__input--num{flex:0 0 auto;width:4rem;text-align:right}.pptx-chart-card__input:focus{border-color:var(--pptx-inspector-active, #0078d4)}.pptx-chart-card__input:disabled{opacity:.6;cursor:not-allowed}.pptx-chart-card__color{flex:0 0 auto;width:26px;height:20px;padding:0;border:1px solid var(--pptx-inspector-border, #444);border-radius:3px;background:transparent;cursor:pointer}.pptx-chart-card__color:disabled{opacity:.6;cursor:not-allowed}.pptx-chart-card__clear{flex:0 0 auto;padding:0 2px;font-size:12px;line-height:1;background:none;border:none;color:var(--pptx-inspector-muted, #888);cursor:pointer}.pptx-chart-card__clear:hover{color:var(--pptx-inspector-danger, #f47c7c)}.pptx-chart-card__input--num::-webkit-outer-spin-button,.pptx-chart-card__input--num::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
49463
49942
  }
49464
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartDisplayOptionsComponent, decorators: [{
49943
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartDisplayOptionsComponent, decorators: [{
49465
49944
  type: Component,
49466
49945
  args: [{ selector: 'pptx-chart-display-options', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
49467
49946
  <section class="pptx-chart-card" [attr.aria-label]="'pptx.chart.display' | translate">
@@ -49597,8 +50076,8 @@ class ChartErrorBarOptionsComponent {
49597
50076
  }
49598
50077
  this.elementChange.emit(setSeriesErrorBars(this.element(), index, { ...bars, val: num ?? undefined }));
49599
50078
  }
49600
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartErrorBarOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
49601
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: ChartErrorBarOptionsComponent, isStandalone: true, selector: "pptx-chart-error-bar-options", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { elementChange: "elementChange" }, ngImport: i0, template: `
50079
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartErrorBarOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
50080
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: ChartErrorBarOptionsComponent, isStandalone: true, selector: "pptx-chart-error-bar-options", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { elementChange: "elementChange" }, ngImport: i0, template: `
49602
50081
  @if (supported()) {
49603
50082
  <section class="pptx-chart-card" [attr.aria-label]="'pptx.chart.errorBars' | translate">
49604
50083
  <h4 class="pptx-chart-card__heading">{{ 'pptx.chart.errorBars' | translate }}</h4>
@@ -49648,7 +50127,7 @@ class ChartErrorBarOptionsComponent {
49648
50127
  }
49649
50128
  `, isInline: true, styles: [".pptx-chart-card{display:flex;flex-direction:column;gap:.35rem;padding:.5rem 0;border-top:1px solid var(--pptx-inspector-border, #333)}.pptx-chart-card__heading{font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:var(--pptx-inspector-muted, #888);margin:0}.pptx-chart-card__group{display:flex;flex-direction:column;gap:.3rem}.pptx-chart-card__group--indent{margin-left:.5rem}.pptx-chart-card__subhead{font-size:11px;font-weight:600}.pptx-chart-card__row{display:flex;align-items:center;gap:.4rem;font-size:11px}.pptx-chart-card__label{flex:0 0 auto;width:5rem;color:var(--pptx-inspector-muted, #888)}.pptx-chart-card__label--wide{width:6.5rem}.pptx-chart-card__name{flex:1 1 auto;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.pptx-chart-card__check{display:flex;align-items:center;gap:.35rem;font-size:11px;cursor:pointer}.pptx-chart-card__input{flex:1 1 auto;min-width:0;box-sizing:border-box;padding:2px 4px;font-size:11px;background:var(--pptx-inspector-input-bg, #2d2d2d);border:1px solid var(--pptx-inspector-border, #444);border-radius:3px;color:inherit;outline:none}.pptx-chart-card__input--num{flex:0 0 auto;width:4rem;text-align:right}.pptx-chart-card__input:focus{border-color:var(--pptx-inspector-active, #0078d4)}.pptx-chart-card__input:disabled{opacity:.6;cursor:not-allowed}.pptx-chart-card__color{flex:0 0 auto;width:26px;height:20px;padding:0;border:1px solid var(--pptx-inspector-border, #444);border-radius:3px;background:transparent;cursor:pointer}.pptx-chart-card__color:disabled{opacity:.6;cursor:not-allowed}.pptx-chart-card__clear{flex:0 0 auto;padding:0 2px;font-size:12px;line-height:1;background:none;border:none;color:var(--pptx-inspector-muted, #888);cursor:pointer}.pptx-chart-card__clear:hover{color:var(--pptx-inspector-danger, #f47c7c)}.pptx-chart-card__input--num::-webkit-outer-spin-button,.pptx-chart-card__input--num::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
49650
50129
  }
49651
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartErrorBarOptionsComponent, decorators: [{
50130
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartErrorBarOptionsComponent, decorators: [{
49652
50131
  type: Component,
49653
50132
  args: [{ selector: 'pptx-chart-error-bar-options', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
49654
50133
  @if (supported()) {
@@ -49745,8 +50224,8 @@ class ChartMarkerOptionsComponent {
49745
50224
  }
49746
50225
  this.elementChange.emit(setSeriesMarker(this.element(), index, { fillColor: value }));
49747
50226
  }
49748
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartMarkerOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
49749
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: ChartMarkerOptionsComponent, isStandalone: true, selector: "pptx-chart-marker-options", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { elementChange: "elementChange" }, ngImport: i0, template: `
50227
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartMarkerOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
50228
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: ChartMarkerOptionsComponent, isStandalone: true, selector: "pptx-chart-marker-options", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { elementChange: "elementChange" }, ngImport: i0, template: `
49750
50229
  @if (supported()) {
49751
50230
  <section class="pptx-chart-card" [attr.aria-label]="'pptx.chart.markers' | translate">
49752
50231
  <h4 class="pptx-chart-card__heading">{{ 'pptx.chart.markers' | translate }}</h4>
@@ -49799,7 +50278,7 @@ class ChartMarkerOptionsComponent {
49799
50278
  }
49800
50279
  `, isInline: true, styles: [".pptx-chart-card{display:flex;flex-direction:column;gap:.35rem;padding:.5rem 0;border-top:1px solid var(--pptx-inspector-border, #333)}.pptx-chart-card__heading{font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:var(--pptx-inspector-muted, #888);margin:0}.pptx-chart-card__group{display:flex;flex-direction:column;gap:.3rem}.pptx-chart-card__group--indent{margin-left:.5rem}.pptx-chart-card__subhead{font-size:11px;font-weight:600}.pptx-chart-card__row{display:flex;align-items:center;gap:.4rem;font-size:11px}.pptx-chart-card__label{flex:0 0 auto;width:5rem;color:var(--pptx-inspector-muted, #888)}.pptx-chart-card__label--wide{width:6.5rem}.pptx-chart-card__name{flex:1 1 auto;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.pptx-chart-card__check{display:flex;align-items:center;gap:.35rem;font-size:11px;cursor:pointer}.pptx-chart-card__input{flex:1 1 auto;min-width:0;box-sizing:border-box;padding:2px 4px;font-size:11px;background:var(--pptx-inspector-input-bg, #2d2d2d);border:1px solid var(--pptx-inspector-border, #444);border-radius:3px;color:inherit;outline:none}.pptx-chart-card__input--num{flex:0 0 auto;width:4rem;text-align:right}.pptx-chart-card__input:focus{border-color:var(--pptx-inspector-active, #0078d4)}.pptx-chart-card__input:disabled{opacity:.6;cursor:not-allowed}.pptx-chart-card__color{flex:0 0 auto;width:26px;height:20px;padding:0;border:1px solid var(--pptx-inspector-border, #444);border-radius:3px;background:transparent;cursor:pointer}.pptx-chart-card__color:disabled{opacity:.6;cursor:not-allowed}.pptx-chart-card__clear{flex:0 0 auto;padding:0 2px;font-size:12px;line-height:1;background:none;border:none;color:var(--pptx-inspector-muted, #888);cursor:pointer}.pptx-chart-card__clear:hover{color:var(--pptx-inspector-danger, #f47c7c)}.pptx-chart-card__input--num::-webkit-outer-spin-button,.pptx-chart-card__input--num::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
49801
50280
  }
49802
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartMarkerOptionsComponent, decorators: [{
50281
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartMarkerOptionsComponent, decorators: [{
49803
50282
  type: Component,
49804
50283
  args: [{ selector: 'pptx-chart-marker-options', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
49805
50284
  @if (supported()) {
@@ -49905,8 +50384,8 @@ class ChartTrendlineOptionsComponent {
49905
50384
  onToggleRSq(index, tl, event) {
49906
50385
  this.elementChange.emit(setSeriesTrendline(this.element(), index, { ...tl, displayRSq: boolFromEvent(event) }));
49907
50386
  }
49908
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartTrendlineOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
49909
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: ChartTrendlineOptionsComponent, isStandalone: true, selector: "pptx-chart-trendline-options", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { elementChange: "elementChange" }, ngImport: i0, template: `
50387
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartTrendlineOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
50388
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: ChartTrendlineOptionsComponent, isStandalone: true, selector: "pptx-chart-trendline-options", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { elementChange: "elementChange" }, ngImport: i0, template: `
49910
50389
  @if (supported()) {
49911
50390
  <section class="pptx-chart-card" [attr.aria-label]="'pptx.chart.trendlines' | translate">
49912
50391
  <h4 class="pptx-chart-card__heading">{{ 'pptx.chart.trendlines' | translate }}</h4>
@@ -49954,7 +50433,7 @@ class ChartTrendlineOptionsComponent {
49954
50433
  }
49955
50434
  `, isInline: true, styles: [".pptx-chart-card{display:flex;flex-direction:column;gap:.35rem;padding:.5rem 0;border-top:1px solid var(--pptx-inspector-border, #333)}.pptx-chart-card__heading{font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:var(--pptx-inspector-muted, #888);margin:0}.pptx-chart-card__group{display:flex;flex-direction:column;gap:.3rem}.pptx-chart-card__group--indent{margin-left:.5rem}.pptx-chart-card__subhead{font-size:11px;font-weight:600}.pptx-chart-card__row{display:flex;align-items:center;gap:.4rem;font-size:11px}.pptx-chart-card__label{flex:0 0 auto;width:5rem;color:var(--pptx-inspector-muted, #888)}.pptx-chart-card__label--wide{width:6.5rem}.pptx-chart-card__name{flex:1 1 auto;min-width:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.pptx-chart-card__check{display:flex;align-items:center;gap:.35rem;font-size:11px;cursor:pointer}.pptx-chart-card__input{flex:1 1 auto;min-width:0;box-sizing:border-box;padding:2px 4px;font-size:11px;background:var(--pptx-inspector-input-bg, #2d2d2d);border:1px solid var(--pptx-inspector-border, #444);border-radius:3px;color:inherit;outline:none}.pptx-chart-card__input--num{flex:0 0 auto;width:4rem;text-align:right}.pptx-chart-card__input:focus{border-color:var(--pptx-inspector-active, #0078d4)}.pptx-chart-card__input:disabled{opacity:.6;cursor:not-allowed}.pptx-chart-card__color{flex:0 0 auto;width:26px;height:20px;padding:0;border:1px solid var(--pptx-inspector-border, #444);border-radius:3px;background:transparent;cursor:pointer}.pptx-chart-card__color:disabled{opacity:.6;cursor:not-allowed}.pptx-chart-card__clear{flex:0 0 auto;padding:0 2px;font-size:12px;line-height:1;background:none;border:none;color:var(--pptx-inspector-muted, #888);cursor:pointer}.pptx-chart-card__clear:hover{color:var(--pptx-inspector-danger, #f47c7c)}.pptx-chart-card__input--num::-webkit-outer-spin-button,.pptx-chart-card__input--num::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
49956
50435
  }
49957
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartTrendlineOptionsComponent, decorators: [{
50436
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartTrendlineOptionsComponent, decorators: [{
49958
50437
  type: Component,
49959
50438
  args: [{ selector: 'pptx-chart-trendline-options', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
49960
50439
  @if (supported()) {
@@ -50029,8 +50508,8 @@ class AdvancedChartEditorComponent {
50029
50508
  ...(ngDevMode ? [{ debugName: "canEdit" }] : /* istanbul ignore next */ []));
50030
50509
  /** Emits the updated element after any edit operation in any child control. */
50031
50510
  elementChange = output();
50032
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AdvancedChartEditorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
50033
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.5", type: AdvancedChartEditorComponent, isStandalone: true, selector: "pptx-advanced-chart-editor", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { elementChange: "elementChange" }, ngImport: i0, template: `
50511
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: AdvancedChartEditorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
50512
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.6", type: AdvancedChartEditorComponent, isStandalone: true, selector: "pptx-advanced-chart-editor", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { elementChange: "elementChange" }, ngImport: i0, template: `
50034
50513
  <div class="pptx-advanced-chart">
50035
50514
  <pptx-chart-display-options
50036
50515
  [element]="element()"
@@ -50080,7 +50559,7 @@ class AdvancedChartEditorComponent {
50080
50559
  </div>
50081
50560
  `, isInline: true, styles: [".pptx-advanced-chart{display:flex;flex-direction:column}\n"], dependencies: [{ kind: "component", type: ChartDisplayOptionsComponent, selector: "pptx-chart-display-options", inputs: ["element", "canEdit"], outputs: ["elementChange"] }, { kind: "component", type: ChartDataLabelOptionsComponent, selector: "pptx-chart-data-label-options", inputs: ["element", "canEdit"], outputs: ["elementChange"] }, { kind: "component", type: ChartAxisOptionsComponent, selector: "pptx-chart-axis-options", inputs: ["element", "canEdit"], outputs: ["elementChange"] }, { kind: "component", type: ChartAxisStyleOptionsComponent, selector: "pptx-chart-axis-style-options", inputs: ["element", "canEdit"], outputs: ["elementChange"] }, { kind: "component", type: ChartMarkerOptionsComponent, selector: "pptx-chart-marker-options", inputs: ["element", "canEdit"], outputs: ["elementChange"] }, { kind: "component", type: ChartComboTypeOptionsComponent, selector: "pptx-chart-combo-type-options", inputs: ["element", "canEdit"], outputs: ["elementChange"] }, { kind: "component", type: ChartDatapointOptionsComponent, selector: "pptx-chart-datapoint-options", inputs: ["element", "canEdit"], outputs: ["elementChange"] }, { kind: "component", type: ChartTrendlineOptionsComponent, selector: "pptx-chart-trendline-options", inputs: ["element", "canEdit"], outputs: ["elementChange"] }, { kind: "component", type: ChartErrorBarOptionsComponent, selector: "pptx-chart-error-bar-options", inputs: ["element", "canEdit"], outputs: ["elementChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
50082
50561
  }
50083
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AdvancedChartEditorComponent, decorators: [{
50562
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: AdvancedChartEditorComponent, decorators: [{
50084
50563
  type: Component,
50085
50564
  args: [{ selector: 'pptx-advanced-chart-editor', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [
50086
50565
  ChartDisplayOptionsComponent,
@@ -50297,8 +50776,8 @@ class ChartDataEditorComponent {
50297
50776
  onRemoveCategory(catIndex) {
50298
50777
  this.elementChange.emit(removeCategory(this.element(), catIndex));
50299
50778
  }
50300
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartDataEditorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
50301
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: ChartDataEditorComponent, isStandalone: true, selector: "pptx-chart-data-editor", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { elementChange: "elementChange" }, ngImport: i0, template: `
50779
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartDataEditorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
50780
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: ChartDataEditorComponent, isStandalone: true, selector: "pptx-chart-data-editor", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { elementChange: "elementChange" }, ngImport: i0, template: `
50302
50781
  <section class="pptx-chart-editor" [attr.aria-label]="'pptx.chart.data' | translate">
50303
50782
  <header class="pptx-chart-editor__header">
50304
50783
  <h3 class="pptx-chart-editor__heading">{{ 'pptx.chart.data' | translate }}</h3>
@@ -50455,7 +50934,7 @@ class ChartDataEditorComponent {
50455
50934
  </section>
50456
50935
  `, isInline: true, styles: [".pptx-chart-editor{display:flex;flex-direction:column;gap:.35rem;padding:.5rem 0;border-bottom:1px solid var(--pptx-inspector-border, #333)}.pptx-chart-editor__header{display:flex;align-items:center;justify-content:space-between;gap:.35rem;flex-wrap:wrap}.pptx-chart-editor__heading{font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:var(--pptx-inspector-muted, #888);margin:0}.pptx-chart-editor__actions{display:flex;gap:.2rem;flex-wrap:wrap}.pptx-chart-editor__btn{padding:2px 5px;font-size:10px;background:var(--pptx-inspector-input-bg, #2d2d2d);border:1px solid var(--pptx-inspector-border, #444);color:inherit;border-radius:3px;cursor:pointer;white-space:nowrap}.pptx-chart-editor__btn:disabled{opacity:.4;cursor:not-allowed}.pptx-chart-editor__btn--danger{color:var(--pptx-inspector-danger, #f47c7c);border-color:var(--pptx-inspector-danger-border, #6b2a2a)}.pptx-chart-editor__scroll{overflow-x:auto}.pptx-chart-editor__table{border-collapse:collapse;font-size:11px;min-width:100%}.pptx-chart-editor__corner{min-width:64px;background:var(--pptx-inspector-input-bg, #2d2d2d);border:1px solid var(--pptx-inspector-border, #333)}.pptx-chart-editor__series-header{background:var(--pptx-inspector-input-bg, #2d2d2d);border:1px solid var(--pptx-inspector-border, #333);padding:2px 3px;white-space:nowrap;min-width:80px}.pptx-chart-editor__name-input{width:72px;box-sizing:border-box;padding:2px 3px;font-size:11px;background:transparent;border:1px solid transparent;color:inherit;outline:none}.pptx-chart-editor__name-input:focus{border-color:var(--pptx-inspector-active, #0078d4);background:var(--pptx-inspector-active-bg, #1a3a5c)}.pptx-chart-editor__name-input:disabled{opacity:.6}.pptx-chart-editor__remove-btn{padding:0 2px;font-size:11px;line-height:1;background:none;border:none;color:var(--pptx-inspector-danger, #f47c7c);cursor:pointer;vertical-align:middle}.pptx-chart-editor__color-wrap{display:inline-flex;align-items:center;gap:1px;margin-left:2px;vertical-align:middle}.pptx-chart-editor__color-input{width:22px;height:18px;padding:0;border:1px solid var(--pptx-inspector-border, #444);border-radius:3px;background:transparent;cursor:pointer}.pptx-chart-editor__color-input:disabled{opacity:.6;cursor:not-allowed}.pptx-chart-editor__cat-cell{border:1px solid var(--pptx-inspector-border, #333);padding:1px;background:var(--pptx-inspector-input-bg, #2d2d2d)}.pptx-chart-editor__cat-wrap{display:flex;align-items:center;gap:1px}.pptx-chart-editor__cat-input{width:60px;box-sizing:border-box;padding:2px 3px;font-size:11px;background:transparent;border:none;color:var(--pptx-inspector-muted, #aaa);outline:none}.pptx-chart-editor__cat-input:focus{color:inherit;background:var(--pptx-inspector-active-bg, #1a3a5c)}.pptx-chart-editor__cat-input:disabled{opacity:.6}.pptx-chart-editor__value-cell{border:1px solid var(--pptx-inspector-border, #333);padding:1px}.pptx-chart-editor__value-input{width:72px;box-sizing:border-box;padding:2px 3px;font-size:11px;text-align:right;background:var(--pptx-inspector-input-bg, #2d2d2d);border:none;color:inherit;outline:none}.pptx-chart-editor__value-input:focus{background:var(--pptx-inspector-active-bg, #1a3a5c)}.pptx-chart-editor__value-input:disabled{opacity:.6}.pptx-chart-editor__input--highlight{outline:1px solid var(--pptx-inspector-active, #0078d4);outline-offset:-1px;border-radius:2px}.pptx-chart-editor__value-input::-webkit-outer-spin-button,.pptx-chart-editor__value-input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}.pptx-chart-editor__empty{font-size:11px;color:var(--pptx-inspector-muted, #888);margin:.25rem 0}\n"], dependencies: [{ kind: "component", type: AdvancedChartEditorComponent, selector: "pptx-advanced-chart-editor", inputs: ["element", "canEdit"], outputs: ["elementChange"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
50457
50936
  }
50458
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartDataEditorComponent, decorators: [{
50937
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartDataEditorComponent, decorators: [{
50459
50938
  type: Component,
50460
50939
  args: [{ selector: 'pptx-chart-data-editor', standalone: true, imports: [AdvancedChartEditorComponent, TranslatePipe], changeDetection: ChangeDetectionStrategy.OnPush, template: `
50461
50940
  <section class="pptx-chart-editor" [attr.aria-label]="'pptx.chart.data' | translate">
@@ -50776,8 +51255,8 @@ class EffectsPanelComponent {
50776
51255
  emit(p) {
50777
51256
  this.patch.emit(p);
50778
51257
  }
50779
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EffectsPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
50780
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: EffectsPanelComponent, isStandalone: true, selector: "pptx-effects-panel", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null } }, outputs: { patch: "patch" }, ngImport: i0, template: `
51258
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EffectsPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
51259
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: EffectsPanelComponent, isStandalone: true, selector: "pptx-effects-panel", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null } }, outputs: { patch: "patch" }, ngImport: i0, template: `
50781
51260
  <div class="pptx-ng-fx">
50782
51261
  <!-- ── Outer Shadow ─────────────────────────────────────────── -->
50783
51262
  <section class="pptx-ng-fx__section">
@@ -51113,7 +51592,7 @@ class EffectsPanelComponent {
51113
51592
  </div>
51114
51593
  `, isInline: true, styles: [".pptx-ng-fx{display:flex;flex-direction:column;gap:0;padding:.5rem;font-size:12px;color:var(--pptx-inspector-fg, #e0e0e0)}.pptx-ng-fx__section{padding:.35rem 0;border-bottom:1px solid var(--pptx-inspector-border, #333)}.pptx-ng-fx__section:last-child{border-bottom:none}.pptx-ng-fx__section-title{font-size:11px;font-weight:500}.pptx-ng-fx__toggle-row{display:flex;align-items:center;gap:.4rem;cursor:pointer}.pptx-ng-fx__checkbox{cursor:pointer}.pptx-ng-fx__fields{display:flex;flex-wrap:wrap;align-items:center;gap:.3rem;padding:.35rem 0 0 1.25rem}.pptx-ng-fx__label{font-size:10px;color:var(--pptx-inspector-muted, #888);min-width:36px;text-align:right;flex-shrink:0}.pptx-ng-fx__input{background:var(--pptx-inspector-input-bg, #2d2d2d);border:1px solid var(--pptx-inspector-border, #444);color:inherit;border-radius:3px;padding:2px 4px;font-size:12px}.pptx-ng-fx__input--number{width:56px;text-align:right}.pptx-ng-fx__color{width:32px;height:22px;border:1px solid var(--pptx-inspector-border, #444);border-radius:3px;padding:1px;cursor:pointer;background:transparent;flex-shrink:0}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
51115
51594
  }
51116
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EffectsPanelComponent, decorators: [{
51595
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EffectsPanelComponent, decorators: [{
51117
51596
  type: Component,
51118
51597
  args: [{ selector: 'pptx-effects-panel', standalone: true, imports: [TranslatePipe], changeDetection: ChangeDetectionStrategy.OnPush, template: `
51119
51598
  <div class="pptx-ng-fx">
@@ -51573,8 +52052,8 @@ class GradientPickerComponent {
51573
52052
  emit(p) {
51574
52053
  this.patch.emit(p);
51575
52054
  }
51576
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: GradientPickerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
51577
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: GradientPickerComponent, isStandalone: true, selector: "pptx-gradient-picker", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null } }, outputs: { patch: "patch" }, ngImport: i0, template: `
52055
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: GradientPickerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
52056
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: GradientPickerComponent, isStandalone: true, selector: "pptx-gradient-picker", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null } }, outputs: { patch: "patch" }, ngImport: i0, template: `
51578
52057
  <div class="pptx-ng-grad">
51579
52058
  <h4 class="pptx-ng-grad__heading">{{ 'pptx.gradient.heading' | translate }}</h4>
51580
52059
 
@@ -51684,7 +52163,7 @@ class GradientPickerComponent {
51684
52163
  </div>
51685
52164
  `, isInline: true, styles: [".pptx-ng-grad{display:flex;flex-direction:column;gap:.35rem;padding:.5rem;font-size:12px;color:var(--pptx-inspector-fg, #e0e0e0)}.pptx-ng-grad__heading{font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:var(--pptx-inspector-muted, #888);margin:0 0 .25rem}.pptx-ng-grad__row{display:flex;align-items:center;gap:.35rem}.pptx-ng-grad__label{font-size:10px;color:var(--pptx-inspector-muted, #888);min-width:28px;flex-shrink:0}.pptx-ng-grad__select,.pptx-ng-grad__input{background:var(--pptx-inspector-input-bg, #2d2d2d);border:1px solid var(--pptx-inspector-border, #444);color:inherit;border-radius:3px;padding:2px 4px;font-size:12px}.pptx-ng-grad__select{flex:1}.pptx-ng-grad__input--number{width:52px;text-align:right}.pptx-ng-grad__range{flex:1;accent-color:var(--pptx-inspector-active, #0078d4)}.pptx-ng-grad__preview{height:20px;border-radius:4px;border:1px solid var(--pptx-inspector-border, #444);margin:.25rem 0}.pptx-ng-grad__stops-heading{font-size:10px;text-transform:uppercase;letter-spacing:.04em;color:var(--pptx-inspector-muted, #888);margin-top:.25rem}.pptx-ng-grad__stop-row{display:flex;align-items:center;gap:.25rem}.pptx-ng-grad__stop-idx{font-size:10px;color:var(--pptx-inspector-muted, #888);min-width:14px;text-align:center;flex-shrink:0}.pptx-ng-grad__color{width:28px;height:22px;border:1px solid var(--pptx-inspector-border, #444);border-radius:3px;padding:1px;cursor:pointer;background:transparent;flex-shrink:0}.pptx-ng-grad__btn{background:var(--pptx-inspector-input-bg, #2d2d2d);border:1px solid var(--pptx-inspector-border, #444);color:inherit;border-radius:3px;cursor:pointer;font-size:11px;padding:2px 6px}.pptx-ng-grad__btn--add{align-self:flex-start;margin-top:.25rem}.pptx-ng-grad__btn--remove{width:20px;height:20px;padding:0;text-align:center;color:var(--pptx-inspector-danger, #f47c7c);border-color:var(--pptx-inspector-danger-border, #6b2a2a);flex-shrink:0}.pptx-ng-grad__btn:hover{background:var(--pptx-inspector-hover, #3a3a3a)}.pptx-ng-grad__btn--remove:hover{background:var(--pptx-inspector-danger-hover, #4a1a1a)}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
51686
52165
  }
51687
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: GradientPickerComponent, decorators: [{
52166
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: GradientPickerComponent, decorators: [{
51688
52167
  type: Component,
51689
52168
  args: [{ selector: 'pptx-gradient-picker', standalone: true, imports: [TranslatePipe], changeDetection: ChangeDetectionStrategy.OnPush, template: `
51690
52169
  <div class="pptx-ng-grad">
@@ -52223,8 +52702,8 @@ class SmartArtPropertiesComponent {
52223
52702
  }
52224
52703
  this.smartArtDataChange.emit(next);
52225
52704
  }
52226
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SmartArtPropertiesComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
52227
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: SmartArtPropertiesComponent, isStandalone: true, selector: "pptx-smart-art-properties", inputs: { smartArtData: { classPropertyName: "smartArtData", publicName: "smartArtData", isSignal: true, isRequired: true, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { smartArtDataChange: "smartArtDataChange" }, ngImport: i0, template: `
52705
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SmartArtPropertiesComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
52706
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: SmartArtPropertiesComponent, isStandalone: true, selector: "pptx-smart-art-properties", inputs: { smartArtData: { classPropertyName: "smartArtData", publicName: "smartArtData", isSignal: true, isRequired: true, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { smartArtDataChange: "smartArtDataChange" }, ngImport: i0, template: `
52228
52707
  <section class="pptx-sa-props" [attr.aria-label]="'pptx.smartart.title' | translate">
52229
52708
  <h3 class="pptx-sa-props__heading">{{ 'pptx.smartart.title' | translate }}</h3>
52230
52709
 
@@ -52448,7 +52927,7 @@ class SmartArtPropertiesComponent {
52448
52927
  </section>
52449
52928
  `, isInline: true, styles: [".pptx-sa-props{display:flex;flex-direction:column;gap:.4rem;padding:.5rem 0}.pptx-sa-props__heading{font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:var(--pptx-inspector-muted, #888);margin:0}.pptx-sa-props__field{display:flex;flex-direction:column;gap:.2rem}.pptx-sa-props__label{font-size:10px;color:var(--pptx-inspector-muted, #888)}.pptx-sa-props__layouts,.pptx-sa-props__styles{display:flex;flex-wrap:wrap;gap:.25rem}.pptx-sa-props__layout,.pptx-sa-props__style,.pptx-sa-props__btn,.pptx-sa-props__icon{background:var(--pptx-inspector-input-bg, #2d2d2d);border:1px solid var(--pptx-inspector-border, #444);color:inherit;border-radius:3px;cursor:pointer;font-size:10px;padding:2px 6px;white-space:nowrap}.pptx-sa-props__layout,.pptx-sa-props__style{flex:1 0 auto;text-transform:capitalize}.pptx-sa-props__layout.is-active,.pptx-sa-props__style.is-active{background:var(--pptx-inspector-active, #0078d4);border-color:var(--pptx-inspector-active, #0078d4);color:#fff}.pptx-sa-props__select{background:var(--pptx-inspector-input-bg, #2d2d2d);border:1px solid var(--pptx-inspector-border, #444);color:inherit;border-radius:3px;padding:2px 4px;font-size:11px}.pptx-sa-props__pane-header{display:flex;align-items:center;justify-content:space-between;gap:.35rem;margin-top:.2rem}.pptx-sa-props__nodes{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.2rem;max-height:14rem;overflow-y:auto}.pptx-sa-props__node{display:flex;flex-wrap:wrap;align-items:center;gap:.25rem;padding:2px;border:1px solid var(--pptx-inspector-border, #333);border-radius:3px}.pptx-sa-props__node-style{display:flex;align-items:center;gap:.3rem;flex-basis:100%;padding-left:16px}.pptx-sa-props__swatch{display:inline-flex;align-items:center;gap:.15rem}.pptx-sa-props__swatch-label{font-size:9px;color:var(--pptx-inspector-muted, #888)}.pptx-sa-props__color{width:22px;height:18px;padding:0;border:1px solid var(--pptx-inspector-border, #444);border-radius:3px;background:transparent;cursor:pointer}.pptx-sa-props__style-toggle.is-active{background:var(--pptx-inspector-active, #0078d4);border-color:var(--pptx-inspector-active, #0078d4);color:#fff}.pptx-sa-props__hint--bounds{color:var(--pptx-inspector-active, #0078d4)}.pptx-sa-props__node--child{margin-left:1rem;border-color:var(--pptx-inspector-border, #2a2a2a)}.pptx-sa-props__bullet{font-size:9px;color:var(--pptx-inspector-muted, #888);min-width:12px;text-align:center;flex-shrink:0}.pptx-sa-props__node-input{flex:1;min-width:0;background:var(--pptx-inspector-input-bg, #2d2d2d);border:1px solid var(--pptx-inspector-border, #444);color:inherit;border-radius:3px;padding:2px 4px;font-size:11px}.pptx-sa-props__node-actions{display:flex;gap:1px;flex-shrink:0}.pptx-sa-props__icon{padding:1px 3px;font-size:10px;line-height:1.2}.pptx-sa-props__icon--danger{color:var(--pptx-inspector-danger, #f47c7c)}.pptx-sa-props__layout:disabled,.pptx-sa-props__style:disabled,.pptx-sa-props__btn:disabled,.pptx-sa-props__icon:disabled,.pptx-sa-props__select:disabled,.pptx-sa-props__node-input:disabled{opacity:.45;cursor:not-allowed}.pptx-sa-props__hint{font-size:9px;color:var(--pptx-inspector-muted, #888);margin:.1rem 0 0}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
52450
52929
  }
52451
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SmartArtPropertiesComponent, decorators: [{
52930
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SmartArtPropertiesComponent, decorators: [{
52452
52931
  type: Component,
52453
52932
  args: [{ selector: 'pptx-smart-art-properties', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
52454
52933
  <section class="pptx-sa-props" [attr.aria-label]="'pptx.smartart.title' | translate">
@@ -52898,8 +53377,8 @@ class TableCellAdvancedFillComponent {
52898
53377
  gradientFillCss: buildGradientFillCss(stops, type, angle),
52899
53378
  });
52900
53379
  }
52901
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableCellAdvancedFillComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
52902
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: TableCellAdvancedFillComponent, isStandalone: true, selector: "pptx-table-cell-advanced-fill", inputs: { cellStyle: { classPropertyName: "cellStyle", publicName: "cellStyle", isSignal: true, isRequired: true, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { styleChange: "styleChange" }, ngImport: i0, template: `
53380
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TableCellAdvancedFillComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
53381
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: TableCellAdvancedFillComponent, isStandalone: true, selector: "pptx-table-cell-advanced-fill", inputs: { cellStyle: { classPropertyName: "cellStyle", publicName: "cellStyle", isSignal: true, isRequired: true, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { styleChange: "styleChange" }, ngImport: i0, template: `
52903
53382
  <div class="pptx-tcaf">
52904
53383
  <label class="pptx-tcaf__field">
52905
53384
  <span class="pptx-tcaf__lbl">{{ 'pptx.table.fillMode' | translate }}</span>
@@ -53036,7 +53515,7 @@ class TableCellAdvancedFillComponent {
53036
53515
  </div>
53037
53516
  `, isInline: true, styles: [".pptx-tcaf{display:flex;flex-direction:column;gap:.3rem}.pptx-tcaf__group{display:flex;flex-direction:column;gap:.25rem}.pptx-tcaf__field{display:flex;align-items:center;gap:.35rem}.pptx-tcaf__grid2{display:grid;grid-template-columns:1fr 1fr;gap:.3rem}.pptx-tcaf__lbl{font-size:10px;color:var(--pptx-inspector-muted, #888)}.pptx-tcaf__sel,.pptx-tcaf__num{flex:1;min-width:0;background:var(--pptx-inspector-input-bg, #2d2d2d);border:1px solid var(--pptx-inspector-border, #444);color:inherit;border-radius:3px;padding:2px 4px;font-size:11px}.pptx-tcaf__stop{display:flex;align-items:center;gap:.3rem}.pptx-tcaf__color{width:28px;height:22px;padding:0;border:1px solid var(--pptx-inspector-border, #444);border-radius:3px;background:transparent;cursor:pointer}.pptx-tcaf__add{align-self:flex-start;font-size:10px;background:none;border:none;color:var(--pptx-inspector-accent, #4aa3ff);cursor:pointer;padding:0}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
53038
53517
  }
53039
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableCellAdvancedFillComponent, decorators: [{
53518
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TableCellAdvancedFillComponent, decorators: [{
53040
53519
  type: Component,
53041
53520
  args: [{ selector: 'pptx-table-cell-advanced-fill', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
53042
53521
  <div class="pptx-tcaf">
@@ -53326,8 +53805,8 @@ class TableCellFormattingComponent {
53326
53805
  commit(tableData) {
53327
53806
  this.elementChange.emit(patchTableData(this.element(), tableData));
53328
53807
  }
53329
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableCellFormattingComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
53330
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: TableCellFormattingComponent, isStandalone: true, selector: "pptx-table-cell-formatting", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { elementChange: "elementChange" }, ngImport: i0, template: `
53808
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TableCellFormattingComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
53809
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: TableCellFormattingComponent, isStandalone: true, selector: "pptx-table-cell-formatting", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { elementChange: "elementChange" }, ngImport: i0, template: `
53331
53810
  @if (cell(); as c) {
53332
53811
  <div class="pptx-tcf">
53333
53812
  <div class="pptx-tcf__heading">
@@ -53471,7 +53950,7 @@ class TableCellFormattingComponent {
53471
53950
  }
53472
53951
  `, isInline: true, styles: [".pptx-tcf{display:flex;flex-direction:column;gap:.35rem}.pptx-tcf__heading{font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:var(--pptx-inspector-muted, #888)}.pptx-tcf__field{display:flex;align-items:center;gap:.35rem}.pptx-tcf__grid2{display:grid;grid-template-columns:1fr 1fr;gap:.3rem}.pptx-tcf__lbl{font-size:10px;color:var(--pptx-inspector-muted, #888)}.pptx-tcf__num{flex:1;min-width:0;background:var(--pptx-inspector-input-bg, #2d2d2d);border:1px solid var(--pptx-inspector-border, #444);color:inherit;border-radius:3px;padding:2px 4px;font-size:11px}.pptx-tcf__color{width:28px;height:22px;padding:0;border:1px solid var(--pptx-inspector-border, #444);border-radius:3px;background:transparent;cursor:pointer}.pptx-tcf__btns{display:flex;flex-wrap:wrap;gap:.25rem}.pptx-tcf__toggle,.pptx-tcf__btn{padding:2px 8px;font-size:11px;background:var(--pptx-inspector-input-bg, #2d2d2d);border:1px solid var(--pptx-inspector-border, #444);color:inherit;border-radius:3px;cursor:pointer}.pptx-tcf__toggle.is-active{background:var(--pptx-inspector-accent, #2563eb);color:#fff;border-color:var(--pptx-inspector-accent, #2563eb)}.pptx-tcf__toggle:disabled,.pptx-tcf__btn:disabled{opacity:.4;cursor:not-allowed}\n"], dependencies: [{ kind: "component", type: TableCellAdvancedFillComponent, selector: "pptx-table-cell-advanced-fill", inputs: ["cellStyle", "canEdit"], outputs: ["styleChange"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
53473
53952
  }
53474
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableCellFormattingComponent, decorators: [{
53953
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TableCellFormattingComponent, decorators: [{
53475
53954
  type: Component,
53476
53955
  args: [{ selector: 'pptx-table-cell-formatting', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TableCellAdvancedFillComponent, TranslatePipe], template: `
53477
53956
  @if (cell(); as c) {
@@ -53707,8 +54186,8 @@ class TableDataEditorComponent {
53707
54186
  onRemoveColumn(colIndex) {
53708
54187
  this.elementChange.emit(removeColumn(this.element(), colIndex));
53709
54188
  }
53710
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableDataEditorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
53711
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: TableDataEditorComponent, isStandalone: true, selector: "pptx-table-data-editor", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { elementChange: "elementChange" }, ngImport: i0, template: `
54189
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TableDataEditorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
54190
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: TableDataEditorComponent, isStandalone: true, selector: "pptx-table-data-editor", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { elementChange: "elementChange" }, ngImport: i0, template: `
53712
54191
  <section
53713
54192
  class="pptx-tbl-editor"
53714
54193
  [attr.aria-label]="'pptx.tableDataEditor.ariaLabel' | translate"
@@ -53820,7 +54299,7 @@ class TableDataEditorComponent {
53820
54299
  </section>
53821
54300
  `, isInline: true, styles: [".pptx-tbl-editor{display:flex;flex-direction:column;gap:.35rem;padding:.5rem 0;border-bottom:1px solid var(--pptx-inspector-border, #333)}.pptx-tbl-editor__header{display:flex;align-items:center;justify-content:space-between;gap:.35rem}.pptx-tbl-editor__heading{font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:var(--pptx-inspector-muted, #888);margin:0}.pptx-tbl-editor__actions{display:flex;gap:.2rem;flex-wrap:wrap}.pptx-tbl-editor__btn{padding:2px 5px;font-size:10px;background:var(--pptx-inspector-input-bg, #2d2d2d);border:1px solid var(--pptx-inspector-border, #444);color:inherit;border-radius:3px;cursor:pointer;white-space:nowrap}.pptx-tbl-editor__btn:disabled{opacity:.4;cursor:not-allowed}.pptx-tbl-editor__btn--danger{color:var(--pptx-inspector-danger, #f47c7c);border-color:var(--pptx-inspector-danger-border, #6b2a2a)}.pptx-tbl-editor__scroll{overflow-x:auto}.pptx-tbl-editor__grid{display:flex;flex-direction:column;font-size:11px;min-width:100%;width:max-content}.pptx-tbl-editor__row{display:flex}.pptx-tbl-editor__corner,.pptx-tbl-editor__col-header,.pptx-tbl-editor__row-header{display:flex;align-items:center;justify-content:center;background:var(--pptx-inspector-input-bg, #2d2d2d);color:var(--pptx-inspector-muted, #888);font-weight:400;padding:2px 4px;border:1px solid var(--pptx-inspector-border, #333);margin:-.5px;white-space:nowrap}.pptx-tbl-editor__col-header{flex:1 0 60px}.pptx-tbl-editor__corner,.pptx-tbl-editor__row-header{flex:0 0 40px}.pptx-tbl-editor__col-label,.pptx-tbl-editor__row-label{margin-right:2px}.pptx-tbl-editor__remove-btn{padding:0 2px;font-size:11px;line-height:1;background:none;border:none;color:var(--pptx-inspector-danger, #f47c7c);cursor:pointer}.pptx-tbl-editor__cell{display:flex;flex:1 0 60px;padding:1px;border:1px solid var(--pptx-inspector-border, #333);margin:-.5px}.pptx-tbl-editor__input{width:100%;box-sizing:border-box;padding:2px 4px;font-size:11px;background:var(--pptx-inspector-input-bg, #2d2d2d);color:inherit;border:none;outline:none}.pptx-tbl-editor__input:focus{background:var(--pptx-inspector-active-bg, #1a3a5c)}.pptx-tbl-editor__input:disabled{opacity:.6}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
53822
54301
  }
53823
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableDataEditorComponent, decorators: [{
54302
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TableDataEditorComponent, decorators: [{
53824
54303
  type: Component,
53825
54304
  args: [{ selector: 'pptx-table-data-editor', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
53826
54305
  <section
@@ -54023,8 +54502,8 @@ class TablePropertiesComponent {
54023
54502
  emit(patch) {
54024
54503
  this.elementChange.emit(patchTableData(this.element(), patch));
54025
54504
  }
54026
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TablePropertiesComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
54027
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: TablePropertiesComponent, isStandalone: true, selector: "pptx-table-properties", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { elementChange: "elementChange" }, ngImport: i0, template: `
54505
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TablePropertiesComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
54506
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: TablePropertiesComponent, isStandalone: true, selector: "pptx-table-properties", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { elementChange: "elementChange" }, ngImport: i0, template: `
54028
54507
  @if (td(); as data) {
54029
54508
  <div class="pptx-tp">
54030
54509
  <div class="pptx-tp__dims">{{ data.rows.length }} rows × {{ colCount() }} cols</div>
@@ -54146,7 +54625,7 @@ class TablePropertiesComponent {
54146
54625
  }
54147
54626
  `, isInline: true, styles: [".pptx-tp{display:flex;flex-direction:column;gap:.35rem}.pptx-tp__dims{font-size:10px;color:var(--pptx-inspector-muted, #888)}.pptx-tp__toggles{display:flex;flex-direction:column;gap:.2rem}.pptx-tp__check{display:flex;align-items:center;gap:.4rem;font-size:11px;cursor:pointer}.pptx-tp__field{display:flex;align-items:center;gap:.35rem;font-size:11px}.pptx-tp__row-head{display:flex;align-items:center;justify-content:space-between}.pptx-tp__lbl{font-size:10px;color:var(--pptx-inspector-muted, #888)}.pptx-tp__idx{width:1.2rem;text-align:right;color:var(--pptx-inspector-muted, #888)}.pptx-tp__num{width:3.5rem;background:var(--pptx-inspector-input-bg, #2d2d2d);border:1px solid var(--pptx-inspector-border, #444);color:inherit;border-radius:3px;padding:2px 4px;font-size:11px}.pptx-tp__range{flex:1;min-width:0}.pptx-tp__pct{width:2.5rem;text-align:right;color:var(--pptx-inspector-muted, #888)}.pptx-tp__even{font-size:10px;background:var(--pptx-inspector-input-bg, #2d2d2d);border:1px solid var(--pptx-inspector-border, #444);color:inherit;border-radius:3px;padding:1px 6px;cursor:pointer}.pptx-tp__presets{display:grid;grid-template-columns:repeat(3,1fr);gap:.3rem}.pptx-tp__preset{display:flex;flex-direction:column;height:2.5rem;padding:0;border:1px solid var(--pptx-inspector-border, #444);border-radius:3px;overflow:hidden;cursor:pointer}.pptx-tp__preset:disabled{opacity:.4;cursor:not-allowed}.pptx-tp__swatch{flex:1;display:block}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
54148
54627
  }
54149
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TablePropertiesComponent, decorators: [{
54628
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TablePropertiesComponent, decorators: [{
54150
54629
  type: Component,
54151
54630
  args: [{ selector: 'pptx-table-properties', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
54152
54631
  @if (td(); as data) {
@@ -54436,8 +54915,8 @@ class TextAdvancedPanelComponent {
54436
54915
  emit(p) {
54437
54916
  this.patch.emit(p);
54438
54917
  }
54439
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TextAdvancedPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
54440
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: TextAdvancedPanelComponent, isStandalone: true, selector: "pptx-text-advanced-panel", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null } }, outputs: { patch: "patch" }, ngImport: i0, template: `
54918
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TextAdvancedPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
54919
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: TextAdvancedPanelComponent, isStandalone: true, selector: "pptx-text-advanced-panel", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null } }, outputs: { patch: "patch" }, ngImport: i0, template: `
54441
54920
  <div class="pptx-ng-txadv">
54442
54921
  @if (!hasText()) {
54443
54922
  <p class="pptx-ng-txadv__empty">{{ 'pptx.textAdvanced.selectPrompt' | translate }}</p>
@@ -54641,7 +55120,7 @@ class TextAdvancedPanelComponent {
54641
55120
  </div>
54642
55121
  `, isInline: true, styles: [".pptx-ng-txadv{display:flex;flex-direction:column;gap:0;padding:.5rem;font-size:12px;color:var(--pptx-inspector-fg, #e0e0e0)}.pptx-ng-txadv__empty{font-size:11px;color:var(--pptx-inspector-muted, #888);margin:0}.pptx-ng-txadv__section{padding:.4rem 0;border-bottom:1px solid var(--pptx-inspector-border, #333)}.pptx-ng-txadv__section:last-child{border-bottom:none}.pptx-ng-txadv__heading{font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:var(--pptx-inspector-muted, #888);margin:0 0 .3rem}.pptx-ng-txadv__row{display:flex;align-items:center;gap:.35rem;margin-bottom:.3rem}.pptx-ng-txadv__row:last-child{margin-bottom:0}.pptx-ng-txadv__row--wrap{flex-wrap:wrap}.pptx-ng-txadv__grid{display:grid;grid-template-columns:auto 1fr;align-items:center;gap:.3rem .4rem}.pptx-ng-txadv__label{font-size:10px;color:var(--pptx-inspector-muted, #888);text-align:right;flex-shrink:0;display:flex;align-items:center;gap:.25rem}.pptx-ng-txadv__select,.pptx-ng-txadv__input{background:var(--pptx-inspector-input-bg, #2d2d2d);border:1px solid var(--pptx-inspector-border, #444);color:inherit;border-radius:3px;padding:2px 4px;font-size:12px}.pptx-ng-txadv__select{flex:1;min-width:0}.pptx-ng-txadv__input--number{width:72px;text-align:right}.pptx-ng-txadv__checkbox{cursor:pointer}.pptx-ng-txadv__align-btn{height:24px;min-width:36px;padding:0 6px;background:var(--pptx-inspector-input-bg, #2d2d2d);border:1px solid var(--pptx-inspector-border, #444);color:inherit;border-radius:3px;cursor:pointer;font-size:10px;white-space:nowrap}.pptx-ng-txadv__align-btn.is-active{background:var(--pptx-inspector-active, #0078d4);border-color:var(--pptx-inspector-active, #0078d4);color:#fff}.pptx-ng-txadv__align-btn:hover:not(.is-active){background:var(--pptx-inspector-hover, #3a3a3a)}@media(pointer:coarse),(max-width:640px){.pptx-ng-txadv{font-size:14px}.pptx-ng-txadv__input,.pptx-ng-txadv__select{min-height:36px;font-size:16px;padding:4px 8px}.pptx-ng-txadv__align-btn{height:36px;min-width:48px;font-size:12px}}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
54643
55122
  }
54644
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TextAdvancedPanelComponent, decorators: [{
55123
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TextAdvancedPanelComponent, decorators: [{
54645
55124
  type: Component,
54646
55125
  args: [{ selector: 'pptx-text-advanced-panel', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
54647
55126
  <div class="pptx-ng-txadv">
@@ -55110,8 +55589,8 @@ class InspectorPanelComponent {
55110
55589
  const cur = this.el();
55111
55590
  this.editor.updateElement(this.slideIndex(), cur.id, textStylePatch(cur, { underline: !this.currentUnderline() }));
55112
55591
  }
55113
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: InspectorPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
55114
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: InspectorPanelComponent, isStandalone: true, selector: "pptx-inspector-panel", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, slideIndex: { classPropertyName: "slideIndex", publicName: "slideIndex", isSignal: true, isRequired: true, transformFunction: null } }, providers: [IsMobileService], ngImport: i0, template: `
55592
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: InspectorPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
55593
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: InspectorPanelComponent, isStandalone: true, selector: "pptx-inspector-panel", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, slideIndex: { classPropertyName: "slideIndex", publicName: "slideIndex", isSignal: true, isRequired: true, transformFunction: null } }, providers: [IsMobileService], ngImport: i0, template: `
55115
55594
  <!--
55116
55595
  NOTE (mobile-safe inputs): every numeric / colour input is keyed on the
55117
55596
  selected element's id via @if blocks. Angular destroys and recreates the
@@ -55474,7 +55953,7 @@ class InspectorPanelComponent {
55474
55953
  </aside>
55475
55954
  `, isInline: true, styles: [".pptx-ng-inspector{display:flex;flex-direction:column;gap:0;padding:.5rem;background:var(--pptx-inspector-bg, #1e1e1e);color:var(--pptx-inspector-fg, #e0e0e0);font-size:12px;min-width:220px;overflow-y:auto}.pptx-ng-inspector__section{padding:.5rem 0;border-bottom:1px solid var(--pptx-inspector-border, #333)}.pptx-ng-inspector__section:last-child{border-bottom:none}.pptx-ng-inspector__heading{font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:var(--pptx-inspector-muted, #888);margin:0 0 .35rem}.pptx-ng-inspector__details{border-bottom:1px solid var(--pptx-inspector-border, #333)}.pptx-ng-inspector__summary{padding:.5rem 0;font-size:10px;font-weight:600;text-transform:uppercase;letter-spacing:.05em;color:var(--pptx-inspector-muted, #888);cursor:pointer;-webkit-user-select:none;user-select:none}.pptx-ng-inspector__row{display:flex;align-items:center;gap:.35rem;margin-bottom:.35rem}.pptx-ng-inspector__row:last-child{margin-bottom:0}.pptx-ng-inspector__row--toggles{gap:.25rem}.pptx-ng-inspector__label{font-size:10px;color:var(--pptx-inspector-muted, #888);min-width:32px;text-align:right;flex-shrink:0}.pptx-ng-inspector__input{background:var(--pptx-inspector-input-bg, #2d2d2d);border:1px solid var(--pptx-inspector-border, #444);color:inherit;border-radius:3px;padding:2px 4px;font-size:12px}.pptx-ng-inspector__input--number{width:62px;text-align:right}.pptx-ng-inspector__color{width:32px;height:22px;border:1px solid var(--pptx-inspector-border, #444);border-radius:3px;padding:1px;cursor:pointer;background:transparent;flex-shrink:0}.pptx-ng-inspector__toggle{width:26px;height:22px;background:var(--pptx-inspector-input-bg, #2d2d2d);border:1px solid var(--pptx-inspector-border, #444);color:inherit;border-radius:3px;cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:12px}.pptx-ng-inspector.is-mobile{width:100%;min-width:0;box-sizing:border-box;font-size:14px}.pptx-ng-inspector.is-mobile .pptx-ng-inspector__row{flex-wrap:wrap;gap:.5rem}.pptx-ng-inspector.is-mobile .pptx-ng-inspector__label{min-width:28px}.pptx-ng-inspector.is-mobile .pptx-ng-inspector__input{flex:1 1 auto;min-height:40px;font-size:16px;padding:6px 8px}.pptx-ng-inspector.is-mobile .pptx-ng-inspector__input--number{width:auto;min-width:72px}.pptx-ng-inspector.is-mobile .pptx-ng-inspector__color{width:44px;height:40px}.pptx-ng-inspector.is-mobile .pptx-ng-inspector__toggle{min-width:44px;width:auto;flex:1 1 auto;height:40px;font-size:15px}.pptx-ng-inspector.is-mobile .pptx-ng-inspector__btn{min-height:40px;padding:8px 10px;font-size:13px}@media(pointer:coarse),(max-width:767px){.pptx-ng-inspector{width:100%;min-width:0;box-sizing:border-box;font-size:14px}.pptx-ng-inspector__row{flex-wrap:wrap;gap:.5rem}.pptx-ng-inspector__label{min-width:28px}.pptx-ng-inspector__input{flex:1 1 auto;min-height:40px;font-size:16px;padding:6px 8px}.pptx-ng-inspector__input--number{width:auto;min-width:72px}.pptx-ng-inspector__color{width:44px;height:40px}.pptx-ng-inspector__toggle{min-width:44px;width:auto;flex:1 1 auto;height:40px;font-size:15px}.pptx-ng-inspector__btn{min-height:40px;padding:8px 10px;font-size:13px}}.pptx-ng-inspector__toggle.is-active{background:var(--pptx-inspector-active, #0078d4);border-color:var(--pptx-inspector-active, #0078d4);color:#fff}.pptx-ng-inspector__btn{flex:1;padding:3px 6px;background:var(--pptx-inspector-input-bg, #2d2d2d);border:1px solid var(--pptx-inspector-border, #444);color:inherit;border-radius:3px;cursor:pointer;font-size:11px;white-space:nowrap}.pptx-ng-inspector__btn:hover{background:var(--pptx-inspector-hover, #3a3a3a)}.pptx-ng-inspector__btn--danger{color:var(--pptx-inspector-danger, #f47c7c);border-color:var(--pptx-inspector-danger-border, #6b2a2a)}.pptx-ng-inspector__btn--danger:hover{background:var(--pptx-inspector-danger-hover, #4a1a1a)}\n"], dependencies: [{ kind: "component", type: GradientPickerComponent, selector: "pptx-gradient-picker", inputs: ["element"], outputs: ["patch"] }, { kind: "component", type: EffectsPanelComponent, selector: "pptx-effects-panel", inputs: ["element"], outputs: ["patch"] }, { kind: "component", type: TextAdvancedPanelComponent, selector: "pptx-text-advanced-panel", inputs: ["element"], outputs: ["patch"] }, { kind: "component", type: TableDataEditorComponent, selector: "pptx-table-data-editor", inputs: ["element", "canEdit"], outputs: ["elementChange"] }, { kind: "component", type: TablePropertiesComponent, selector: "pptx-table-properties", inputs: ["element", "canEdit"], outputs: ["elementChange"] }, { kind: "component", type: TableCellFormattingComponent, selector: "pptx-table-cell-formatting", inputs: ["element", "canEdit"], outputs: ["elementChange"] }, { kind: "component", type: ChartDataEditorComponent, selector: "pptx-chart-data-editor", inputs: ["element", "canEdit"], outputs: ["elementChange"] }, { kind: "component", type: SmartArtPropertiesComponent, selector: "pptx-smart-art-properties", inputs: ["smartArtData", "canEdit"], outputs: ["smartArtDataChange"] }, { kind: "component", type: AnimationAuthorPanelComponent, selector: "pptx-animation-author-panel", inputs: ["element", "slideIndex", "animations", "canEdit"], outputs: ["animationsChange"] }, { kind: "component", type: LucideArrowUp, selector: "svg[lucideArrowUp]" }, { kind: "component", type: LucideArrowDown, selector: "svg[lucideArrowDown]" }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
55476
55955
  }
55477
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: InspectorPanelComponent, decorators: [{
55956
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: InspectorPanelComponent, decorators: [{
55478
55957
  type: Component,
55479
55958
  args: [{ selector: 'pptx-inspector-panel', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [
55480
55959
  GradientPickerComponent,
@@ -55988,8 +56467,8 @@ class MobileBottomBarComponent {
55988
56467
  ];
55989
56468
  }, /* @ts-ignore */
55990
56469
  ...(ngDevMode ? [{ debugName: "actions" }] : /* istanbul ignore next */ []));
55991
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: MobileBottomBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
55992
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: MobileBottomBarComponent, isStandalone: true, selector: "pptx-mobile-bottom-bar", inputs: { slideCount: { classPropertyName: "slideCount", publicName: "slideCount", isSignal: true, isRequired: false, transformFunction: null }, commentCount: { classPropertyName: "commentCount", publicName: "commentCount", isSignal: true, isRequired: false, transformFunction: null }, activeSheet: { classPropertyName: "activeSheet", publicName: "activeSheet", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { openSlides: "openSlides", insert: "insert", openFormat: "openFormat", openComments: "openComments", notes: "notes" }, ngImport: i0, template: `
56470
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: MobileBottomBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
56471
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: MobileBottomBarComponent, isStandalone: true, selector: "pptx-mobile-bottom-bar", inputs: { slideCount: { classPropertyName: "slideCount", publicName: "slideCount", isSignal: true, isRequired: false, transformFunction: null }, commentCount: { classPropertyName: "commentCount", publicName: "commentCount", isSignal: true, isRequired: false, transformFunction: null }, activeSheet: { classPropertyName: "activeSheet", publicName: "activeSheet", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { openSlides: "openSlides", insert: "insert", openFormat: "openFormat", openComments: "openComments", notes: "notes" }, ngImport: i0, template: `
55993
56472
  <nav class="pptx-ng-mbar" [attr.aria-label]="'pptx.mobileBar.ariaLabel' | translate">
55994
56473
  @for (action of actions(); track action.key) {
55995
56474
  <button
@@ -56028,7 +56507,7 @@ class MobileBottomBarComponent {
56028
56507
  </nav>
56029
56508
  `, isInline: true, styles: [":host{display:block}.pptx-ng-mbar{display:flex;align-items:stretch;justify-content:space-around;background:#1a1a1aeb;border-top:1px solid rgba(255,255,255,.1);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);padding-bottom:max(env(safe-area-inset-bottom,0px),0px)}.pptx-ng-mbar-btn{position:relative;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.125rem;flex:1;min-height:56px;padding:.375rem .25rem;border:none;background:transparent;color:#ffffff8c;font-size:.625rem;font-weight:500;cursor:pointer;touch-action:manipulation;transition:color .12s,transform .08s;-webkit-tap-highlight-color:transparent}.pptx-ng-mbar-btn:active:not([disabled]){transform:scale(.92)}.pptx-ng-mbar-btn.is-active{color:#3b82f6}.pptx-ng-mbar-btn:hover:not([disabled]):not(.is-active){color:#e5e5e5}.pptx-ng-mbar-btn[disabled]{opacity:.35;cursor:not-allowed}.pptx-ng-mbar-icon{width:1.25rem;height:1.25rem;flex-shrink:0}.pptx-ng-mbar-label{line-height:1;white-space:nowrap}.pptx-ng-mbar-badge{position:absolute;top:.25rem;right:calc(50% - 1.25rem);display:flex;align-items:center;justify-content:center;min-width:1rem;height:1rem;padding:0 .25rem;border-radius:9999px;background:#ef4444;color:#fff;font-size:.5625rem;font-weight:600;line-height:1}.pptx-ng-mbar-indicator{position:absolute;top:0;left:50%;transform:translate(-50%);width:2rem;height:.1875rem;border-radius:9999px;background:#3b82f6}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
56030
56509
  }
56031
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: MobileBottomBarComponent, decorators: [{
56510
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: MobileBottomBarComponent, decorators: [{
56032
56511
  type: Component,
56033
56512
  args: [{ selector: 'pptx-mobile-bottom-bar', standalone: true, imports: [TranslatePipe], changeDetection: ChangeDetectionStrategy.OnPush, template: `
56034
56513
  <nav class="pptx-ng-mbar" [attr.aria-label]="'pptx.mobileBar.ariaLabel' | translate">
@@ -56171,8 +56650,8 @@ class MobileSheetComponent {
56171
56650
  this.closed.emit();
56172
56651
  }
56173
56652
  }
56174
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: MobileSheetComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
56175
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: MobileSheetComponent, isStandalone: true, selector: "pptx-mobile-sheet", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, title: { classPropertyName: "title", publicName: "title", isSignal: true, isRequired: false, transformFunction: null }, heightFraction: { classPropertyName: "heightFraction", publicName: "heightFraction", isSignal: true, isRequired: false, transformFunction: null }, fullScreen: { classPropertyName: "fullScreen", publicName: "fullScreen", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { closed: "closed" }, host: { listeners: { "document:keydown": "onDocumentKeydown($event)" } }, ngImport: i0, template: `
56653
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: MobileSheetComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
56654
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: MobileSheetComponent, isStandalone: true, selector: "pptx-mobile-sheet", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, title: { classPropertyName: "title", publicName: "title", isSignal: true, isRequired: false, transformFunction: null }, heightFraction: { classPropertyName: "heightFraction", publicName: "heightFraction", isSignal: true, isRequired: false, transformFunction: null }, fullScreen: { classPropertyName: "fullScreen", publicName: "fullScreen", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { closed: "closed" }, host: { listeners: { "document:keydown": "onDocumentKeydown($event)" } }, ngImport: i0, template: `
56176
56655
  @if (open()) {
56177
56656
  <div
56178
56657
  class="pptx-ng-msheet-root"
@@ -56222,7 +56701,7 @@ class MobileSheetComponent {
56222
56701
  }
56223
56702
  `, isInline: true, styles: [":host{display:contents}.pptx-ng-msheet-root{position:fixed;inset:0;z-index:60;display:flex;flex-direction:column;justify-content:flex-end}.pptx-ng-msheet-backdrop{position:absolute;inset:0;background:#00000073;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px);border:none;cursor:pointer;animation:pptx-msheet-fade-in .15s ease both}@keyframes pptx-msheet-fade-in{0%{opacity:0}to{opacity:1}}.pptx-ng-msheet-panel{position:relative;display:flex;flex-direction:column;background:#1a1a1a;color:#e5e5e5;border-top:1px solid rgba(255,255,255,.1);border-radius:1rem 1rem 0 0;box-shadow:0 -8px 32px #00000080;overflow:hidden;animation:pptx-msheet-slide-up .2s cubic-bezier(.32,.72,0,1) both}@keyframes pptx-msheet-slide-up{0%{transform:translateY(100%)}to{transform:translateY(0)}}.pptx-ng-msheet-grab{cursor:grab;touch-action:none;flex-shrink:0}.pptx-ng-msheet-grab:active{cursor:grabbing}.pptx-ng-msheet-handle-row{display:flex;align-items:center;justify-content:center;padding:.5rem 0 .25rem}.pptx-ng-msheet-handle{width:2.5rem;height:.25rem;border-radius:9999px;background:#ffffff4d}.pptx-ng-msheet-header{display:flex;align-items:center;gap:.5rem;padding:0 1rem .625rem;border-bottom:1px solid rgba(255,255,255,.08);flex-shrink:0}.pptx-ng-msheet-title{font-size:.875rem;font-weight:600;flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.pptx-ng-msheet-body{flex:1;overflow-y:auto;overscroll-behavior:contain}\n"], dependencies: [{ kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
56224
56703
  }
56225
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: MobileSheetComponent, decorators: [{
56704
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: MobileSheetComponent, decorators: [{
56226
56705
  type: Component,
56227
56706
  args: [{ selector: 'pptx-mobile-sheet', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [NgStyle, TranslatePipe], template: `
56228
56707
  @if (open()) {
@@ -56472,8 +56951,8 @@ class MobileMenuSheetComponent {
56472
56951
  this.closed.emit();
56473
56952
  }
56474
56953
  }
56475
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: MobileMenuSheetComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
56476
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: MobileMenuSheetComponent, isStandalone: true, selector: "pptx-mobile-menu-sheet", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, slideCount: { classPropertyName: "slideCount", publicName: "slideCount", isSignal: true, isRequired: false, transformFunction: null }, exporting: { classPropertyName: "exporting", publicName: "exporting", isSignal: true, isRequired: false, transformFunction: null }, showNotes: { classPropertyName: "showNotes", publicName: "showNotes", isSignal: true, isRequired: false, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { closed: "closed", openFind: "openFind", openSorter: "openSorter", toggleNotes: "toggleNotes", insertText: "insertText", present: "present", openFile: "openFile", savePptx: "savePptx", exportPng: "exportPng", exportPdf: "exportPdf", exportGif: "exportGif", exportVideo: "exportVideo", print: "print" }, ngImport: i0, template: `
56954
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: MobileMenuSheetComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
56955
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: MobileMenuSheetComponent, isStandalone: true, selector: "pptx-mobile-menu-sheet", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, slideCount: { classPropertyName: "slideCount", publicName: "slideCount", isSignal: true, isRequired: false, transformFunction: null }, exporting: { classPropertyName: "exporting", publicName: "exporting", isSignal: true, isRequired: false, transformFunction: null }, showNotes: { classPropertyName: "showNotes", publicName: "showNotes", isSignal: true, isRequired: false, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { closed: "closed", openFind: "openFind", openSorter: "openSorter", toggleNotes: "toggleNotes", insertText: "insertText", present: "present", openFile: "openFile", savePptx: "savePptx", exportPng: "exportPng", exportPdf: "exportPdf", exportGif: "exportGif", exportVideo: "exportVideo", print: "print" }, ngImport: i0, template: `
56477
56956
  <pptx-mobile-sheet
56478
56957
  [open]="open()"
56479
56958
  [title]="'pptx.mobileMenu.title' | translate"
@@ -56524,7 +57003,7 @@ class MobileMenuSheetComponent {
56524
57003
  </pptx-mobile-sheet>
56525
57004
  `, isInline: true, styles: [":host{display:contents}.pptx-ng-mmenu-list{list-style:none;margin:0;padding:.5rem 0}.pptx-ng-mmenu-row{display:flex;align-items:center;gap:.875rem;width:100%;padding:.75rem 1.25rem;border:none;background:transparent;color:#e5e5e5;text-align:left;cursor:pointer;touch-action:manipulation;-webkit-tap-highlight-color:transparent;transition:background .1s}.pptx-ng-mmenu-row:hover:not([disabled]){background:#ffffff0f}.pptx-ng-mmenu-row:active:not([disabled]){background:#ffffff1a}.pptx-ng-mmenu-row.is-active{color:#3b82f6}.pptx-ng-mmenu-row.is-danger{color:#ef4444}.pptx-ng-mmenu-row[disabled]{opacity:.35;cursor:not-allowed}.pptx-ng-mmenu-icon{display:flex;align-items:center;justify-content:center;flex-shrink:0;width:1.5rem;opacity:.8}.pptx-ng-mmenu-text{display:flex;flex-direction:column;gap:.125rem;flex:1;min-width:0}.pptx-ng-mmenu-label{font-size:.9375rem;font-weight:500;line-height:1.3}.pptx-ng-mmenu-sublabel{font-size:.75rem;color:#ffffff73;line-height:1.3}.pptx-ng-mmenu-check{color:#3b82f6;font-size:1rem;flex-shrink:0}.pptx-ng-mmenu-divider{height:1px;background:#ffffff14;margin:.375rem 0}\n"], dependencies: [{ kind: "component", type: MobileSheetComponent, selector: "pptx-mobile-sheet", inputs: ["open", "title", "heightFraction", "fullScreen"], outputs: ["closed"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
56526
57005
  }
56527
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: MobileMenuSheetComponent, decorators: [{
57006
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: MobileMenuSheetComponent, decorators: [{
56528
57007
  type: Component,
56529
57008
  args: [{ selector: 'pptx-mobile-menu-sheet', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [MobileSheetComponent, TranslatePipe], template: `
56530
57009
  <pptx-mobile-sheet
@@ -56784,10 +57263,10 @@ class CanvasFitService {
56784
57263
  const fit = Math.min(availW / size.width, availH / size.height, 1);
56785
57264
  this.fitScale.set(fit > 0 ? fit : 1);
56786
57265
  }
56787
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CanvasFitService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
56788
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CanvasFitService });
57266
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: CanvasFitService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
57267
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: CanvasFitService });
56789
57268
  }
56790
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CanvasFitService, decorators: [{
57269
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: CanvasFitService, decorators: [{
56791
57270
  type: Injectable
56792
57271
  }] });
56793
57272
 
@@ -57069,8 +57548,8 @@ class ChartPrimitivesComponent {
57069
57548
  asText(p) {
57070
57549
  return p;
57071
57550
  }
57072
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartPrimitivesComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
57073
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: ChartPrimitivesComponent, isStandalone: true, selector: "g[pptx-chart-primitives]", inputs: { primitives: { classPropertyName: "primitives", publicName: "primitives", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0, template: `
57551
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartPrimitivesComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
57552
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: ChartPrimitivesComponent, isStandalone: true, selector: "g[pptx-chart-primitives]", inputs: { primitives: { classPropertyName: "primitives", publicName: "primitives", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0, template: `
57074
57553
  @for (prim of primitives(); track $index) {
57075
57554
  @switch (prim.kind) {
57076
57555
  @case ('rect') {
@@ -57164,7 +57643,7 @@ class ChartPrimitivesComponent {
57164
57643
  }
57165
57644
  `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
57166
57645
  }
57167
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartPrimitivesComponent, decorators: [{
57646
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartPrimitivesComponent, decorators: [{
57168
57647
  type: Component,
57169
57648
  args: [{
57170
57649
  selector: 'g[pptx-chart-primitives]',
@@ -57310,8 +57789,8 @@ class ChartRendererComponent {
57310
57789
  const y = isVertical ? v.legendY + index * 14 : v.legendY;
57311
57790
  return `translate(${x.toFixed(1)},${y.toFixed(1)})`;
57312
57791
  }
57313
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
57314
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: ChartRendererComponent, isStandalone: true, selector: "pptx-chart-renderer", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0, template: `
57792
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
57793
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: ChartRendererComponent, isStandalone: true, selector: "pptx-chart-renderer", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0, template: `
57315
57794
  <svg
57316
57795
  [attr.width]="vm().svgWidth"
57317
57796
  [attr.height]="vm().svgHeight"
@@ -57465,7 +57944,7 @@ class ChartRendererComponent {
57465
57944
  </svg>
57466
57945
  `, isInline: true, dependencies: [{ kind: "component", type: ChartPrimitivesComponent, selector: "g[pptx-chart-primitives]", inputs: ["primitives"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
57467
57946
  }
57468
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartRendererComponent, decorators: [{
57947
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartRendererComponent, decorators: [{
57469
57948
  type: Component,
57470
57949
  args: [{
57471
57950
  selector: 'pptx-chart-renderer',
@@ -57843,8 +58322,8 @@ class ChartElementViewComponent {
57843
58322
  }
57844
58323
  this.titleDraft.set(null);
57845
58324
  }
57846
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartElementViewComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
57847
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: ChartElementViewComponent, isStandalone: true, selector: "pptx-chart-element-view", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, editable: { classPropertyName: "editable", publicName: "editable", isSignal: true, isRequired: false, transformFunction: null } }, host: { listeners: { "document:keydown.escape": "onEscape()" } }, viewQueries: [{ propertyName: "wrapper", first: true, predicate: ["wrapper"], descendants: true, isSignal: true }, { propertyName: "titleEditor", first: true, predicate: ["titleEditor"], descendants: true, isSignal: true }], ngImport: i0, template: `
58325
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartElementViewComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
58326
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: ChartElementViewComponent, isStandalone: true, selector: "pptx-chart-element-view", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, editable: { classPropertyName: "editable", publicName: "editable", isSignal: true, isRequired: false, transformFunction: null } }, host: { listeners: { "document:keydown.escape": "onEscape()" } }, viewQueries: [{ propertyName: "wrapper", first: true, predicate: ["wrapper"], descendants: true, isSignal: true }, { propertyName: "titleEditor", first: true, predicate: ["titleEditor"], descendants: true, isSignal: true }], ngImport: i0, template: `
57848
58327
  <div
57849
58328
  #wrapper
57850
58329
  class="pptx-ng-chart-view"
@@ -57874,7 +58353,7 @@ class ChartElementViewComponent {
57874
58353
  </div>
57875
58354
  `, isInline: true, dependencies: [{ kind: "component", type: ChartRendererComponent, selector: "pptx-chart-renderer", inputs: ["element"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
57876
58355
  }
57877
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartElementViewComponent, decorators: [{
58356
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartElementViewComponent, decorators: [{
57878
58357
  type: Component,
57879
58358
  args: [{
57880
58359
  selector: 'pptx-chart-element-view',
@@ -58017,8 +58496,8 @@ class ColorChangedImageComponent {
58017
58496
  });
58018
58497
  });
58019
58498
  }
58020
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ColorChangedImageComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
58021
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.5", type: ColorChangedImageComponent, isStandalone: true, selector: "pptx-color-changed-image", inputs: { src: { classPropertyName: "src", publicName: "src", isSignal: true, isRequired: true, transformFunction: null }, clrChange: { classPropertyName: "clrChange", publicName: "clrChange", isSignal: true, isRequired: true, transformFunction: null }, alt: { classPropertyName: "alt", publicName: "alt", isSignal: true, isRequired: false, transformFunction: null }, imgClass: { classPropertyName: "imgClass", publicName: "imgClass", isSignal: true, isRequired: false, transformFunction: null }, imgStyle: { classPropertyName: "imgStyle", publicName: "imgStyle", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "ngSkipHydration": "true" } }, ngImport: i0, template: `
58499
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ColorChangedImageComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
58500
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.6", type: ColorChangedImageComponent, isStandalone: true, selector: "pptx-color-changed-image", inputs: { src: { classPropertyName: "src", publicName: "src", isSignal: true, isRequired: true, transformFunction: null }, clrChange: { classPropertyName: "clrChange", publicName: "clrChange", isSignal: true, isRequired: true, transformFunction: null }, alt: { classPropertyName: "alt", publicName: "alt", isSignal: true, isRequired: false, transformFunction: null }, imgClass: { classPropertyName: "imgClass", publicName: "imgClass", isSignal: true, isRequired: false, transformFunction: null }, imgStyle: { classPropertyName: "imgStyle", publicName: "imgStyle", isSignal: true, isRequired: false, transformFunction: null } }, host: { attributes: { "ngSkipHydration": "true" } }, ngImport: i0, template: `
58022
58501
  <img
58023
58502
  [src]="displaySrc()"
58024
58503
  [alt]="alt()"
@@ -58028,7 +58507,7 @@ class ColorChangedImageComponent {
58028
58507
  />
58029
58508
  `, isInline: true, dependencies: [{ kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
58030
58509
  }
58031
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ColorChangedImageComponent, decorators: [{
58510
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ColorChangedImageComponent, decorators: [{
58032
58511
  type: Component,
58033
58512
  args: [{
58034
58513
  selector: 'pptx-color-changed-image',
@@ -58223,8 +58702,8 @@ class ConnectorTextOverlayComponent {
58223
58702
  .map((s) => ({ text: s.text, style: buildSegmentStyle(s, ts) }));
58224
58703
  }, /* @ts-ignore */
58225
58704
  ...(ngDevMode ? [{ debugName: "styledSegments" }] : /* istanbul ignore next */ []));
58226
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ConnectorTextOverlayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
58227
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: ConnectorTextOverlayComponent, isStandalone: true, selector: "pptx-connector-text-overlay", inputs: { text: { classPropertyName: "text", publicName: "text", isSignal: true, isRequired: false, transformFunction: null }, segments: { classPropertyName: "segments", publicName: "segments", isSignal: true, isRequired: false, transformFunction: null }, textStyle: { classPropertyName: "textStyle", publicName: "textStyle", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
58705
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ConnectorTextOverlayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
58706
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: ConnectorTextOverlayComponent, isStandalone: true, selector: "pptx-connector-text-overlay", inputs: { text: { classPropertyName: "text", publicName: "text", isSignal: true, isRequired: false, transformFunction: null }, segments: { classPropertyName: "segments", publicName: "segments", isSignal: true, isRequired: false, transformFunction: null }, textStyle: { classPropertyName: "textStyle", publicName: "textStyle", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
58228
58707
  @if (hasText()) {
58229
58708
  <div class="pptx-ng-connector-text" [style]="containerStyle()">
58230
58709
  <div class="pptx-ng-connector-text__block" [style]="blockStyle()">
@@ -58236,7 +58715,7 @@ class ConnectorTextOverlayComponent {
58236
58715
  }
58237
58716
  `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
58238
58717
  }
58239
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ConnectorTextOverlayComponent, decorators: [{
58718
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ConnectorTextOverlayComponent, decorators: [{
58240
58719
  type: Component,
58241
58720
  args: [{
58242
58721
  selector: 'pptx-connector-text-overlay',
@@ -58334,8 +58813,8 @@ class ConnectorRendererComponent {
58334
58813
  ...(ngDevMode ? [{ debugName: "connectorSegments" }] : /* istanbul ignore next */ []));
58335
58814
  connectorTextStyle = computed(() => this.textProps().textStyle, /* @ts-ignore */
58336
58815
  ...(ngDevMode ? [{ debugName: "connectorTextStyle" }] : /* istanbul ignore next */ []));
58337
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ConnectorRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
58338
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: ConnectorRendererComponent, isStandalone: true, selector: "pptx-connector-renderer", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, zIndex: { classPropertyName: "zIndex", publicName: "zIndex", isSignal: true, isRequired: false, transformFunction: null }, obstacles: { classPropertyName: "obstacles", publicName: "obstacles", isSignal: true, isRequired: false, transformFunction: null }, canvasWidth: { classPropertyName: "canvasWidth", publicName: "canvasWidth", isSignal: true, isRequired: false, transformFunction: null }, canvasHeight: { classPropertyName: "canvasHeight", publicName: "canvasHeight", isSignal: true, isRequired: false, transformFunction: null }, interactive: { classPropertyName: "interactive", publicName: "interactive", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
58816
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ConnectorRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
58817
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: ConnectorRendererComponent, isStandalone: true, selector: "pptx-connector-renderer", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, zIndex: { classPropertyName: "zIndex", publicName: "zIndex", isSignal: true, isRequired: false, transformFunction: null }, obstacles: { classPropertyName: "obstacles", publicName: "obstacles", isSignal: true, isRequired: false, transformFunction: null }, canvasWidth: { classPropertyName: "canvasWidth", publicName: "canvasWidth", isSignal: true, isRequired: false, transformFunction: null }, canvasHeight: { classPropertyName: "canvasHeight", publicName: "canvasHeight", isSignal: true, isRequired: false, transformFunction: null }, interactive: { classPropertyName: "interactive", publicName: "interactive", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
58339
58818
  <div
58340
58819
  class="pptx-ng-element pptx-ng-connector"
58341
58820
  [style]="geo().wrapperStyle"
@@ -58427,7 +58906,7 @@ class ConnectorRendererComponent {
58427
58906
  </div>
58428
58907
  `, isInline: true, dependencies: [{ kind: "component", type: ConnectorTextOverlayComponent, selector: "pptx-connector-text-overlay", inputs: ["text", "segments", "textStyle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
58429
58908
  }
58430
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ConnectorRendererComponent, decorators: [{
58909
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ConnectorRendererComponent, decorators: [{
58431
58910
  type: Component,
58432
58911
  args: [{
58433
58912
  selector: 'pptx-connector-renderer',
@@ -58562,8 +59041,8 @@ class EquationRendererComponent {
58562
59041
  // shared converter walks it as an `OmmlNode` (core's recursive `XmlObject`).
58563
59042
  this.sanitizer.bypassSecurityTrustHtml(ommlToMathml(this.equationXml())), /* @ts-ignore */
58564
59043
  ...(ngDevMode ? [{ debugName: "safeMathml" }] : /* istanbul ignore next */ []));
58565
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EquationRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
58566
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: EquationRendererComponent, isStandalone: true, selector: "pptx-equation-renderer", inputs: { equationXml: { classPropertyName: "equationXml", publicName: "equationXml", isSignal: true, isRequired: true, transformFunction: null }, equationNumber: { classPropertyName: "equationNumber", publicName: "equationNumber", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
59044
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EquationRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
59045
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: EquationRendererComponent, isStandalone: true, selector: "pptx-equation-renderer", inputs: { equationXml: { classPropertyName: "equationXml", publicName: "equationXml", isSignal: true, isRequired: true, transformFunction: null }, equationNumber: { classPropertyName: "equationNumber", publicName: "equationNumber", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
58567
59046
  @if (equationNumber()) {
58568
59047
  <span class="pptx-ng-equation-numbered">
58569
59048
  <span class="pptx-ng-equation-number-spacer" aria-hidden="true"
@@ -58577,7 +59056,7 @@ class EquationRendererComponent {
58577
59056
  }
58578
59057
  `, isInline: true, styles: [":host{display:inline-block;vertical-align:middle}.pptx-ng-equation{display:inline-block;vertical-align:middle;font-family:\"Cambria Math\",\"STIX Two Math\",serif}.pptx-ng-equation-numbered{display:flex;justify-content:space-between;align-items:center;width:100%}.pptx-ng-equation-centered{flex:1;text-align:center}.pptx-ng-equation-number-spacer{visibility:hidden;white-space:nowrap}.pptx-ng-equation-number{white-space:nowrap;font-family:\"Cambria Math\",\"STIX Two Math\",serif}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
58579
59058
  }
58580
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EquationRendererComponent, decorators: [{
59059
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EquationRendererComponent, decorators: [{
58581
59060
  type: Component,
58582
59061
  args: [{ selector: 'pptx-equation-renderer', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [], template: `
58583
59062
  @if (equationNumber()) {
@@ -58767,8 +59246,8 @@ class InkRendererComponent {
58767
59246
  ...(ngDevMode ? [{ debugName: "strokes" }] : /* istanbul ignore next */ []));
58768
59247
  viewBox = computed(() => inkViewBox(this.element()), /* @ts-ignore */
58769
59248
  ...(ngDevMode ? [{ debugName: "viewBox" }] : /* istanbul ignore next */ []));
58770
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: InkRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
58771
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: InkRendererComponent, isStandalone: true, selector: "pptx-ink-renderer", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, zIndex: { classPropertyName: "zIndex", publicName: "zIndex", isSignal: true, isRequired: false, transformFunction: null }, mediaDataUrls: { classPropertyName: "mediaDataUrls", publicName: "mediaDataUrls", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
59249
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: InkRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
59250
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: InkRendererComponent, isStandalone: true, selector: "pptx-ink-renderer", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, zIndex: { classPropertyName: "zIndex", publicName: "zIndex", isSignal: true, isRequired: false, transformFunction: null }, mediaDataUrls: { classPropertyName: "mediaDataUrls", publicName: "mediaDataUrls", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
58772
59251
  <div
58773
59252
  class="pptx-ng-element pptx-ng-ink"
58774
59253
  [ngStyle]="containerStyle()"
@@ -58811,7 +59290,7 @@ class InkRendererComponent {
58811
59290
  </div>
58812
59291
  `, isInline: true, dependencies: [{ kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
58813
59292
  }
58814
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: InkRendererComponent, decorators: [{
59293
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: InkRendererComponent, decorators: [{
58815
59294
  type: Component,
58816
59295
  args: [{
58817
59296
  selector: 'pptx-ink-renderer',
@@ -59018,8 +59497,8 @@ class MediaRendererComponent {
59018
59497
  ...(ngDevMode ? [{ debugName: "captionTracks" }] : /* istanbul ignore next */ []));
59019
59498
  clrChangeParams = computed(() => getClrChangeParams(this.element()), /* @ts-ignore */
59020
59499
  ...(ngDevMode ? [{ debugName: "clrChangeParams" }] : /* istanbul ignore next */ []));
59021
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: MediaRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
59022
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: MediaRendererComponent, isStandalone: true, selector: "pptx-media-renderer", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, mediaDataUrls: { classPropertyName: "mediaDataUrls", publicName: "mediaDataUrls", isSignal: true, isRequired: false, transformFunction: null }, zIndex: { classPropertyName: "zIndex", publicName: "zIndex", isSignal: true, isRequired: false, transformFunction: null }, interactive: { classPropertyName: "interactive", publicName: "interactive", isSignal: true, isRequired: false, transformFunction: null }, presenting: { classPropertyName: "presenting", publicName: "presenting", isSignal: true, isRequired: false, transformFunction: null }, placeholderLabel: { classPropertyName: "placeholderLabel", publicName: "placeholderLabel", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "mediaElRef", first: true, predicate: ["mediaEl"], descendants: true, isSignal: true }], ngImport: i0, template: `
59500
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: MediaRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
59501
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: MediaRendererComponent, isStandalone: true, selector: "pptx-media-renderer", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, mediaDataUrls: { classPropertyName: "mediaDataUrls", publicName: "mediaDataUrls", isSignal: true, isRequired: false, transformFunction: null }, zIndex: { classPropertyName: "zIndex", publicName: "zIndex", isSignal: true, isRequired: false, transformFunction: null }, interactive: { classPropertyName: "interactive", publicName: "interactive", isSignal: true, isRequired: false, transformFunction: null }, presenting: { classPropertyName: "presenting", publicName: "presenting", isSignal: true, isRequired: false, transformFunction: null }, placeholderLabel: { classPropertyName: "placeholderLabel", publicName: "placeholderLabel", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "mediaElRef", first: true, predicate: ["mediaEl"], descendants: true, isSignal: true }], ngImport: i0, template: `
59023
59502
  <div
59024
59503
  class="pptx-ng-element pptx-ng-media"
59025
59504
  [ngStyle]="containerStyle()"
@@ -59077,7 +59556,7 @@ class MediaRendererComponent {
59077
59556
  </div>
59078
59557
  `, isInline: true, styles: [".pptx-ng-media-el{display:block;pointer-events:auto}.pptx-ng-media-video{width:100%;height:100%;object-fit:contain}.pptx-ng-media-audio{width:100%}.pptx-ng-media-inert{pointer-events:none}.pptx-ng-img{width:100%;height:100%;object-fit:contain;display:block}\n"], dependencies: [{ kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: ColorChangedImageComponent, selector: "pptx-color-changed-image", inputs: ["src", "clrChange", "alt", "imgClass", "imgStyle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
59079
59558
  }
59080
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: MediaRendererComponent, decorators: [{
59559
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: MediaRendererComponent, decorators: [{
59081
59560
  type: Component,
59082
59561
  args: [{ selector: 'pptx-media-renderer', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [NgStyle, ColorChangedImageComponent], template: `
59083
59562
  <div
@@ -59335,8 +59814,8 @@ class Model3DRendererComponent {
59335
59814
  ngOnDestroy() {
59336
59815
  this.teardownHandle();
59337
59816
  }
59338
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: Model3DRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
59339
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: Model3DRendererComponent, isStandalone: true, selector: "pptx-model3d-renderer", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, zIndex: { classPropertyName: "zIndex", publicName: "zIndex", isSignal: true, isRequired: false, transformFunction: null }, mediaDataUrls: { classPropertyName: "mediaDataUrls", publicName: "mediaDataUrls", isSignal: true, isRequired: false, transformFunction: null }, interactive: { classPropertyName: "interactive", publicName: "interactive", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "sceneRef", first: true, predicate: ["scene"], descendants: true, isSignal: true }], ngImport: i0, template: `
59817
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: Model3DRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
59818
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: Model3DRendererComponent, isStandalone: true, selector: "pptx-model3d-renderer", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, zIndex: { classPropertyName: "zIndex", publicName: "zIndex", isSignal: true, isRequired: false, transformFunction: null }, mediaDataUrls: { classPropertyName: "mediaDataUrls", publicName: "mediaDataUrls", isSignal: true, isRequired: false, transformFunction: null }, interactive: { classPropertyName: "interactive", publicName: "interactive", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "sceneRef", first: true, predicate: ["scene"], descendants: true, isSignal: true }], ngImport: i0, template: `
59340
59819
  <div
59341
59820
  class="pptx-ng-element pptx-ng-model3d"
59342
59821
  [ngStyle]="containerStyle()"
@@ -59379,7 +59858,7 @@ class Model3DRendererComponent {
59379
59858
  </div>
59380
59859
  `, isInline: true, styles: [".pptx-ng-model3d-scene{width:100%;height:100%;display:block}\n"], dependencies: [{ kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
59381
59860
  }
59382
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: Model3DRendererComponent, decorators: [{
59861
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: Model3DRendererComponent, decorators: [{
59383
59862
  type: Component,
59384
59863
  args: [{ selector: 'pptx-model3d-renderer', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [NgStyle, TranslatePipe], template: `
59385
59864
  <div
@@ -59596,8 +60075,8 @@ class OleRendererComponent {
59596
60075
  openUrlInNewTab(href);
59597
60076
  }
59598
60077
  }
59599
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: OleRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
59600
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: OleRendererComponent, isStandalone: true, selector: "pptx-ole-renderer", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, zIndex: { classPropertyName: "zIndex", publicName: "zIndex", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
60078
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: OleRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
60079
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: OleRendererComponent, isStandalone: true, selector: "pptx-ole-renderer", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, zIndex: { classPropertyName: "zIndex", publicName: "zIndex", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
59601
60080
  <div
59602
60081
  class="pptx-ng-element pptx-ng-ole"
59603
60082
  [ngStyle]="containerStyle()"
@@ -59889,7 +60368,7 @@ class OleRendererComponent {
59889
60368
  </div>
59890
60369
  `, isInline: true, styles: [".pptx-ng-ole-preview{position:relative;width:100%;height:100%}.pptx-ng-ole-img{width:100%;height:100%;object-fit:contain;pointer-events:none;-webkit-user-select:none;user-select:none;display:block}.pptx-ng-ole-badge{position:absolute;bottom:4px;right:4px;z-index:10}.pptx-ng-ole-placeholder{width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;pointer-events:none;box-sizing:border-box}.pptx-ng-ole-name{margin-top:8px;font-size:12px;font-weight:500;max-width:90%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.pptx-ng-ole-sublabel{margin-top:2px;font-size:10px;color:#00000073;max-width:90%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.pptx-ng-ole-actions{position:absolute;bottom:4px;left:4px;display:flex;gap:4px;z-index:11;opacity:0;transition:opacity .12s ease-in-out}.pptx-ng-ole:hover .pptx-ng-ole-actions,.pptx-ng-ole-actions:focus-within{opacity:1}.pptx-ng-ole-action{font-size:11px;line-height:1;padding:4px 8px;border-radius:4px;background-color:#000000b8;color:#fff;text-decoration:none;cursor:pointer;white-space:nowrap;pointer-events:auto}.pptx-ng-ole-action:hover{background-color:#000000d9}.pptx-ng-ole-action:focus-visible{outline:2px solid #fff;outline-offset:1px}\n"], dependencies: [{ kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
59891
60370
  }
59892
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: OleRendererComponent, decorators: [{
60371
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: OleRendererComponent, decorators: [{
59893
60372
  type: Component,
59894
60373
  args: [{ selector: 'pptx-ole-renderer', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [NgStyle, TranslatePipe], template: `
59895
60374
  <div
@@ -60409,8 +60888,8 @@ class SmartArt3DRendererComponent {
60409
60888
  this.handle?.dispose();
60410
60889
  this.handle = null;
60411
60890
  }
60412
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SmartArt3DRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
60413
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: SmartArt3DRendererComponent, isStandalone: true, selector: "pptx-smart-art-3d-renderer", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, zIndex: { classPropertyName: "zIndex", publicName: "zIndex", isSignal: true, isRequired: false, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "canvas", first: true, predicate: ["canvas"], descendants: true, isSignal: true }, { propertyName: "containerEl", first: true, predicate: ["container3d"], descendants: true, isSignal: true }, { propertyName: "nodeEditor3d", first: true, predicate: ["nodeEditor3d"], descendants: true, isSignal: true }], ngImport: i0, template: `
60891
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SmartArt3DRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
60892
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: SmartArt3DRendererComponent, isStandalone: true, selector: "pptx-smart-art-3d-renderer", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, zIndex: { classPropertyName: "zIndex", publicName: "zIndex", isSignal: true, isRequired: false, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "canvas", first: true, predicate: ["canvas"], descendants: true, isSignal: true }, { propertyName: "containerEl", first: true, predicate: ["container3d"], descendants: true, isSignal: true }, { propertyName: "nodeEditor3d", first: true, predicate: ["nodeEditor3d"], descendants: true, isSignal: true }], ngImport: i0, template: `
60414
60893
  @if (useFallback()) {
60415
60894
  <pptx-smart-art-renderer [element]="element()" [zIndex]="zIndex()" />
60416
60895
  } @else {
@@ -60450,7 +60929,7 @@ class SmartArt3DRendererComponent {
60450
60929
  }
60451
60930
  `, isInline: true, styles: [".pptx-ng-smartart-3d-canvas{width:100%;height:100%;display:block}.pptx-ng-smartart-3d-hittest{position:absolute;inset:0;opacity:0;pointer-events:auto}.pptx-ng-smartart-3d-node-editor{position:absolute;box-sizing:border-box;margin:0;padding:1px 2px;border:1px solid var(--pptx-inspector-active, #0078d4);border-radius:2px;background:#fff;color:#111;font-size:11px;line-height:1.1;text-align:center;resize:none;overflow:hidden;z-index:20;outline:none}\n"], dependencies: [{ kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: SmartArtRendererComponent, selector: "pptx-smart-art-renderer", inputs: ["element", "zIndex", "editable"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
60452
60931
  }
60453
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SmartArt3DRendererComponent, decorators: [{
60932
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SmartArt3DRendererComponent, decorators: [{
60454
60933
  type: Component,
60455
60934
  args: [{ selector: 'pptx-smart-art-3d-renderer', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [NgStyle, SmartArtRendererComponent, TranslatePipe], template: `
60456
60935
  @if (useFallback()) {
@@ -60506,10 +60985,10 @@ class SmartArt3DService {
60506
60985
  /** `true` when SmartArt should render via the Three.js scene. */
60507
60986
  enabled = signal(false, /* @ts-ignore */
60508
60987
  ...(ngDevMode ? [{ debugName: "enabled" }] : /* istanbul ignore next */ []));
60509
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SmartArt3DService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
60510
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SmartArt3DService });
60988
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SmartArt3DService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
60989
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SmartArt3DService });
60511
60990
  }
60512
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SmartArt3DService, decorators: [{
60991
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SmartArt3DService, decorators: [{
60513
60992
  type: Injectable
60514
60993
  }] });
60515
60994
 
@@ -60942,8 +61421,8 @@ class TableResizeOverlayComponent {
60942
61421
  this.resizeRow.emit({ index: drag.index, height });
60943
61422
  }
60944
61423
  }
60945
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableResizeOverlayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
60946
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: TableResizeOverlayComponent, isStandalone: true, selector: "pptx-table-resize-overlay", inputs: { columnWidths: { classPropertyName: "columnWidths", publicName: "columnWidths", isSignal: true, isRequired: true, transformFunction: null }, editable: { classPropertyName: "editable", publicName: "editable", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { resizeColumns: "resizeColumns", resizeRow: "resizeRow" }, ngImport: i0, template: `
61424
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TableResizeOverlayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
61425
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: TableResizeOverlayComponent, isStandalone: true, selector: "pptx-table-resize-overlay", inputs: { columnWidths: { classPropertyName: "columnWidths", publicName: "columnWidths", isSignal: true, isRequired: true, transformFunction: null }, editable: { classPropertyName: "editable", publicName: "editable", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { resizeColumns: "resizeColumns", resizeRow: "resizeRow" }, ngImport: i0, template: `
60947
61426
  <div class="pptx-ng-tbl-resize" #container>
60948
61427
  <ng-content />
60949
61428
  @if (editable()) {
@@ -60969,7 +61448,7 @@ class TableResizeOverlayComponent {
60969
61448
  </div>
60970
61449
  `, isInline: true, styles: [".pptx-ng-tbl-resize{position:relative;width:100%;height:100%}.pptx-ng-tbl-resize__col{position:absolute;top:0;bottom:0;width:6px;margin-left:-3px;cursor:col-resize;z-index:10}.pptx-ng-tbl-resize__row{position:absolute;left:0;right:0;height:6px;margin-top:-3px;cursor:row-resize;z-index:10}.pptx-ng-tbl-resize__col-line{width:1px;height:100%;margin:0 auto;background:transparent;transition:background-color .12s}.pptx-ng-tbl-resize__row-line{height:1px;width:100%;margin:auto 0;background:transparent;transition:background-color .12s}.pptx-ng-tbl-resize__col:hover .pptx-ng-tbl-resize__col-line,.pptx-ng-tbl-resize__row:hover .pptx-ng-tbl-resize__row-line{background:#60a5fa99}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
60971
61450
  }
60972
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableResizeOverlayComponent, decorators: [{
61451
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TableResizeOverlayComponent, decorators: [{
60973
61452
  type: Component,
60974
61453
  args: [{ selector: 'pptx-table-resize-overlay', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, template: `
60975
61454
  <div class="pptx-ng-tbl-resize" #container>
@@ -61150,8 +61629,8 @@ class TableRendererComponent {
61150
61629
  const rows = td.rows.map((row, i) => i === event.index ? { ...row, height: event.height } : row);
61151
61630
  this.tableChange.emit({ id: this.element().id, tableData: { ...td, rows } });
61152
61631
  }
61153
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
61154
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: TableRendererComponent, isStandalone: true, selector: "pptx-table-renderer", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, editable: { classPropertyName: "editable", publicName: "editable", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { cellCommit: "cellCommit", tableChange: "tableChange" }, viewQueries: [{ propertyName: "cellInput", first: true, predicate: ["cellInput"], descendants: true, isSignal: true }], ngImport: i0, template: `
61632
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TableRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
61633
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: TableRendererComponent, isStandalone: true, selector: "pptx-table-renderer", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, editable: { classPropertyName: "editable", publicName: "editable", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { cellCommit: "cellCommit", tableChange: "tableChange" }, viewQueries: [{ propertyName: "cellInput", first: true, predicate: ["cellInput"], descendants: true, isSignal: true }], ngImport: i0, template: `
61155
61634
  <pptx-table-resize-overlay
61156
61635
  [columnWidths]="columnWidths()"
61157
61636
  [editable]="editable()"
@@ -61244,7 +61723,7 @@ class TableRendererComponent {
61244
61723
  </pptx-table-resize-overlay>
61245
61724
  `, isInline: true, styles: [".pptx-ng-cell{position:relative}.pptx-ng-cell.is-editable{cursor:cell}.pptx-ng-cell.is-selected{outline:2px solid rgba(59,130,246,.9);outline-offset:-2px}.pptx-ng-cell.is-in-range{background-color:#3b82f626;outline:1px solid rgba(96,165,250,.5);outline-offset:-1px}.pptx-ng-cell-diag{position:absolute;inset:0;width:100%;height:100%;pointer-events:none;overflow:visible}\n"], dependencies: [{ kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: TableResizeOverlayComponent, selector: "pptx-table-resize-overlay", inputs: ["columnWidths", "editable"], outputs: ["resizeColumns", "resizeRow"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
61246
61725
  }
61247
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableRendererComponent, decorators: [{
61726
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TableRendererComponent, decorators: [{
61248
61727
  type: Component,
61249
61728
  args: [{ selector: 'pptx-table-renderer', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [NgStyle, TableResizeOverlayComponent], template: `
61250
61729
  <pptx-table-resize-overlay
@@ -61529,10 +62008,10 @@ class ZoomNavigationService {
61529
62008
  navigateToZoomTarget(targetSlideIndex) {
61530
62009
  this.handler?.(targetSlideIndex);
61531
62010
  }
61532
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ZoomNavigationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
61533
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ZoomNavigationService });
62011
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ZoomNavigationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
62012
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ZoomNavigationService });
61534
62013
  }
61535
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ZoomNavigationService, decorators: [{
62014
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ZoomNavigationService, decorators: [{
61536
62015
  type: Injectable
61537
62016
  }] });
61538
62017
 
@@ -61635,10 +62114,10 @@ class ZoomTargetService {
61635
62114
  sectionName: slide.sectionName,
61636
62115
  };
61637
62116
  }
61638
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ZoomTargetService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
61639
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ZoomTargetService });
62117
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ZoomTargetService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
62118
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ZoomTargetService });
61640
62119
  }
61641
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ZoomTargetService, decorators: [{
62120
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ZoomTargetService, decorators: [{
61642
62121
  type: Injectable
61643
62122
  }] });
61644
62123
 
@@ -61721,8 +62200,8 @@ class ZoomRendererComponent {
61721
62200
  event.stopPropagation();
61722
62201
  this.activate();
61723
62202
  }
61724
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ZoomRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
61725
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: ZoomRendererComponent, isStandalone: true, selector: "pptx-zoom-renderer", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, zIndex: { classPropertyName: "zIndex", publicName: "zIndex", isSignal: true, isRequired: false, transformFunction: null }, mediaDataUrls: { classPropertyName: "mediaDataUrls", publicName: "mediaDataUrls", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
62203
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ZoomRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
62204
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: ZoomRendererComponent, isStandalone: true, selector: "pptx-zoom-renderer", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, zIndex: { classPropertyName: "zIndex", publicName: "zIndex", isSignal: true, isRequired: false, transformFunction: null }, mediaDataUrls: { classPropertyName: "mediaDataUrls", publicName: "mediaDataUrls", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
61726
62205
  <div
61727
62206
  class="pptx-ng-element pptx-ng-zoom"
61728
62207
  [class.pptx-ng-zoom-interactive]="interactive()"
@@ -61769,7 +62248,7 @@ class ZoomRendererComponent {
61769
62248
  </div>
61770
62249
  `, isInline: true, styles: [".pptx-ng-zoom-interactive{cursor:pointer}.pptx-ng-zoom-interactive:focus-visible{outline:2px solid #2563eb;outline-offset:2px}\n"], dependencies: [{ kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
61771
62250
  }
61772
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ZoomRendererComponent, decorators: [{
62251
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ZoomRendererComponent, decorators: [{
61773
62252
  type: Component,
61774
62253
  args: [{ selector: 'pptx-zoom-renderer', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [NgStyle, TranslatePipe], template: `
61775
62254
  <div
@@ -62101,8 +62580,8 @@ class ElementRendererComponent {
62101
62580
  return key ? this.translate.instant(key) : this.element().type;
62102
62581
  }, /* @ts-ignore */
62103
62582
  ...(ngDevMode ? [{ debugName: "placeholderLabel" }] : /* istanbul ignore next */ []));
62104
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ElementRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
62105
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: ElementRendererComponent, isStandalone: true, selector: "pptx-element-renderer", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, mediaDataUrls: { classPropertyName: "mediaDataUrls", publicName: "mediaDataUrls", isSignal: true, isRequired: false, transformFunction: null }, zIndex: { classPropertyName: "zIndex", publicName: "zIndex", isSignal: true, isRequired: false, transformFunction: null }, obstacles: { classPropertyName: "obstacles", publicName: "obstacles", isSignal: true, isRequired: false, transformFunction: null }, canvasWidth: { classPropertyName: "canvasWidth", publicName: "canvasWidth", isSignal: true, isRequired: false, transformFunction: null }, canvasHeight: { classPropertyName: "canvasHeight", publicName: "canvasHeight", isSignal: true, isRequired: false, transformFunction: null }, interactive: { classPropertyName: "interactive", publicName: "interactive", isSignal: true, isRequired: false, transformFunction: null }, presenting: { classPropertyName: "presenting", publicName: "presenting", isSignal: true, isRequired: false, transformFunction: null }, editable: { classPropertyName: "editable", publicName: "editable", isSignal: true, isRequired: false, transformFunction: null }, fieldContext: { classPropertyName: "fieldContext", publicName: "fieldContext", isSignal: true, isRequired: false, transformFunction: null }, editTemplateMode: { classPropertyName: "editTemplateMode", publicName: "editTemplateMode", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { cellCommit: "cellCommit", tableChange: "tableChange" }, host: { classAttribute: "contents" }, ngImport: i0, template: `
62583
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ElementRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
62584
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: ElementRendererComponent, isStandalone: true, selector: "pptx-element-renderer", inputs: { element: { classPropertyName: "element", publicName: "element", isSignal: true, isRequired: true, transformFunction: null }, mediaDataUrls: { classPropertyName: "mediaDataUrls", publicName: "mediaDataUrls", isSignal: true, isRequired: false, transformFunction: null }, zIndex: { classPropertyName: "zIndex", publicName: "zIndex", isSignal: true, isRequired: false, transformFunction: null }, obstacles: { classPropertyName: "obstacles", publicName: "obstacles", isSignal: true, isRequired: false, transformFunction: null }, canvasWidth: { classPropertyName: "canvasWidth", publicName: "canvasWidth", isSignal: true, isRequired: false, transformFunction: null }, canvasHeight: { classPropertyName: "canvasHeight", publicName: "canvasHeight", isSignal: true, isRequired: false, transformFunction: null }, interactive: { classPropertyName: "interactive", publicName: "interactive", isSignal: true, isRequired: false, transformFunction: null }, presenting: { classPropertyName: "presenting", publicName: "presenting", isSignal: true, isRequired: false, transformFunction: null }, editable: { classPropertyName: "editable", publicName: "editable", isSignal: true, isRequired: false, transformFunction: null }, fieldContext: { classPropertyName: "fieldContext", publicName: "fieldContext", isSignal: true, isRequired: false, transformFunction: null }, editTemplateMode: { classPropertyName: "editTemplateMode", publicName: "editTemplateMode", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { cellCommit: "cellCommit", tableChange: "tableChange" }, host: { classAttribute: "contents" }, ngImport: i0, template: `
62106
62585
  @switch (true) {
62107
62586
  @case (element().type === 'connector') {
62108
62587
  <pptx-connector-renderer
@@ -62375,7 +62854,7 @@ class ElementRendererComponent {
62375
62854
  }
62376
62855
  `, isInline: true, dependencies: [{ kind: "component", type: ElementRendererComponent, selector: "pptx-element-renderer", inputs: ["element", "mediaDataUrls", "zIndex", "obstacles", "canvasWidth", "canvasHeight", "interactive", "presenting", "editable", "fieldContext", "editTemplateMode"], outputs: ["cellCommit", "tableChange"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: ConnectorRendererComponent, selector: "pptx-connector-renderer", inputs: ["element", "zIndex", "obstacles", "canvasWidth", "canvasHeight", "interactive"] }, { kind: "component", type: TableRendererComponent, selector: "pptx-table-renderer", inputs: ["element", "editable"], outputs: ["cellCommit", "tableChange"] }, { kind: "component", type: ChartElementViewComponent, selector: "pptx-chart-element-view", inputs: ["element", "editable"] }, { kind: "component", type: SmartArtRendererComponent, selector: "pptx-smart-art-renderer", inputs: ["element", "zIndex", "editable"] }, { kind: "component", type: SmartArt3DRendererComponent, selector: "pptx-smart-art-3d-renderer", inputs: ["element", "zIndex", "canEdit"] }, { kind: "component", type: InkRendererComponent, selector: "pptx-ink-renderer", inputs: ["element", "zIndex", "mediaDataUrls"] }, { kind: "component", type: MediaRendererComponent, selector: "pptx-media-renderer", inputs: ["element", "mediaDataUrls", "zIndex", "interactive", "presenting", "placeholderLabel"] }, { kind: "component", type: OleRendererComponent, selector: "pptx-ole-renderer", inputs: ["element", "zIndex"] }, { kind: "component", type: Model3DRendererComponent, selector: "pptx-model3d-renderer", inputs: ["element", "zIndex", "mediaDataUrls", "interactive"] }, { kind: "component", type: ZoomRendererComponent, selector: "pptx-zoom-renderer", inputs: ["element", "zIndex", "mediaDataUrls"] }, { kind: "component", type: EquationRendererComponent, selector: "pptx-equation-renderer", inputs: ["equationXml", "equationNumber"] }, { kind: "component", type: ColorChangedImageComponent, selector: "pptx-color-changed-image", inputs: ["src", "clrChange", "alt", "imgClass", "imgStyle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
62377
62856
  }
62378
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ElementRendererComponent, decorators: [{
62857
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ElementRendererComponent, decorators: [{
62379
62858
  type: Component,
62380
62859
  args: [{
62381
62860
  selector: 'pptx-element-renderer',
@@ -62797,10 +63276,10 @@ class InkDrawingService {
62797
63276
  this.liveInkPath.set('');
62798
63277
  return true;
62799
63278
  }
62800
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: InkDrawingService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
62801
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: InkDrawingService });
63279
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: InkDrawingService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
63280
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: InkDrawingService });
62802
63281
  }
62803
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: InkDrawingService, decorators: [{
63282
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: InkDrawingService, decorators: [{
62804
63283
  type: Injectable
62805
63284
  }] });
62806
63285
 
@@ -62919,10 +63398,10 @@ class RulerGuidesService {
62919
63398
  this.guideDrag = null;
62920
63399
  return true;
62921
63400
  }
62922
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RulerGuidesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
62923
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RulerGuidesService });
63401
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RulerGuidesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
63402
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RulerGuidesService });
62924
63403
  }
62925
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RulerGuidesService, decorators: [{
63404
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RulerGuidesService, decorators: [{
62926
63405
  type: Injectable
62927
63406
  }] });
62928
63407
 
@@ -63555,6 +64034,31 @@ class SlideCanvasComponent {
63555
64034
  event.preventDefault();
63556
64035
  editor.blur();
63557
64036
  }
64037
+ else if (event.key === 'Enter' && event.shiftKey) {
64038
+ this.trimTrailingSpaceBeforeCaret(editor);
64039
+ }
64040
+ }
64041
+ /**
64042
+ * When the caret sits at a soft word-wrap boundary (no explicit line break,
64043
+ * just CSS wrapping), the space separating the two words is still part of
64044
+ * the text and lands right before the caret. Inserting a line break there
64045
+ * leaves the new line preceded by a stray space: e.g. "fox jumps" wrapped as
64046
+ * "fox " / "jumps" becomes lines "fox " and "jumps" instead of "fox" and
64047
+ * "jumps". That extra, invisible trailing character then counts toward the
64048
+ * line's measured width, occasionally forcing an unwanted extra wrapped
64049
+ * line. Since a space immediately before a line break is never visually
64050
+ * meaningful, drop it before the browser inserts the native line break.
64051
+ */
64052
+ trimTrailingSpaceBeforeCaret(editor) {
64053
+ const { selectionStart, selectionEnd, value } = editor;
64054
+ if (selectionStart === null || selectionStart !== selectionEnd || selectionStart === 0) {
64055
+ return;
64056
+ }
64057
+ if (value.charAt(selectionStart - 1) !== ' ') {
64058
+ return;
64059
+ }
64060
+ editor.value = value.slice(0, selectionStart - 1) + value.slice(selectionStart);
64061
+ editor.setSelectionRange(selectionStart - 1, selectionStart - 1);
63558
64062
  }
63559
64063
  /** Toggle bold/italic/underline for the element under inline edit. */
63560
64064
  emitTextFormat(key) {
@@ -63857,8 +64361,8 @@ class SlideCanvasComponent {
63857
64361
  return style;
63858
64362
  }, /* @ts-ignore */
63859
64363
  ...(ngDevMode ? [{ debugName: "stageStyle" }] : /* istanbul ignore next */ []));
63860
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SlideCanvasComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
63861
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: SlideCanvasComponent, isStandalone: true, selector: "pptx-slide-canvas", inputs: { slide: { classPropertyName: "slide", publicName: "slide", isSignal: true, isRequired: false, transformFunction: null }, canvasSize: { classPropertyName: "canvasSize", publicName: "canvasSize", isSignal: true, isRequired: true, transformFunction: null }, mediaDataUrls: { classPropertyName: "mediaDataUrls", publicName: "mediaDataUrls", isSignal: true, isRequired: false, transformFunction: null }, zoom: { classPropertyName: "zoom", publicName: "zoom", isSignal: true, isRequired: false, transformFunction: null }, editable: { classPropertyName: "editable", publicName: "editable", isSignal: true, isRequired: false, transformFunction: null }, showGrid: { classPropertyName: "showGrid", publicName: "showGrid", isSignal: true, isRequired: false, transformFunction: null }, showRulers: { classPropertyName: "showRulers", publicName: "showRulers", isSignal: true, isRequired: false, transformFunction: null }, showGuides: { classPropertyName: "showGuides", publicName: "showGuides", isSignal: true, isRequired: false, transformFunction: null }, snapToGrid: { classPropertyName: "snapToGrid", publicName: "snapToGrid", isSignal: true, isRequired: false, transformFunction: null }, snapToGuides: { classPropertyName: "snapToGuides", publicName: "snapToGuides", isSignal: true, isRequired: false, transformFunction: null }, autoFit: { classPropertyName: "autoFit", publicName: "autoFit", isSignal: true, isRequired: false, transformFunction: null }, interactive: { classPropertyName: "interactive", publicName: "interactive", isSignal: true, isRequired: false, transformFunction: null }, presenting: { classPropertyName: "presenting", publicName: "presenting", isSignal: true, isRequired: false, transformFunction: null }, selectedIds: { classPropertyName: "selectedIds", publicName: "selectedIds", isSignal: true, isRequired: false, transformFunction: null }, editingId: { classPropertyName: "editingId", publicName: "editingId", isSignal: true, isRequired: false, transformFunction: null }, editTemplateMode: { classPropertyName: "editTemplateMode", publicName: "editTemplateMode", isSignal: true, isRequired: false, transformFunction: null }, templateElements: { classPropertyName: "templateElements", publicName: "templateElements", isSignal: true, isRequired: false, transformFunction: null }, drawTool: { classPropertyName: "drawTool", publicName: "drawTool", isSignal: true, isRequired: false, transformFunction: null }, drawColor: { classPropertyName: "drawColor", publicName: "drawColor", isSignal: true, isRequired: false, transformFunction: null }, drawWidth: { classPropertyName: "drawWidth", publicName: "drawWidth", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { elementSelect: "elementSelect", backgroundClick: "backgroundClick", transformStart: "transformStart", transformUpdate: "transformUpdate", contextMenu: "contextMenu", textEditStart: "textEditStart", textCommit: "textCommit", textCancel: "textCancel", textFormat: "textFormat", rotateUpdate: "rotateUpdate", marqueeSelect: "marqueeSelect", inkStrokeComplete: "inkStrokeComplete", eraserHit: "eraserHit", cellCommit: "cellCommit", tableChange: "tableChange" }, host: { listeners: { "document:pointermove": "onPointerMove($event)", "document:pointerup": "onPointerUp()" } }, providers: [
64364
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SlideCanvasComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
64365
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: SlideCanvasComponent, isStandalone: true, selector: "pptx-slide-canvas", inputs: { slide: { classPropertyName: "slide", publicName: "slide", isSignal: true, isRequired: false, transformFunction: null }, canvasSize: { classPropertyName: "canvasSize", publicName: "canvasSize", isSignal: true, isRequired: true, transformFunction: null }, mediaDataUrls: { classPropertyName: "mediaDataUrls", publicName: "mediaDataUrls", isSignal: true, isRequired: false, transformFunction: null }, zoom: { classPropertyName: "zoom", publicName: "zoom", isSignal: true, isRequired: false, transformFunction: null }, editable: { classPropertyName: "editable", publicName: "editable", isSignal: true, isRequired: false, transformFunction: null }, showGrid: { classPropertyName: "showGrid", publicName: "showGrid", isSignal: true, isRequired: false, transformFunction: null }, showRulers: { classPropertyName: "showRulers", publicName: "showRulers", isSignal: true, isRequired: false, transformFunction: null }, showGuides: { classPropertyName: "showGuides", publicName: "showGuides", isSignal: true, isRequired: false, transformFunction: null }, snapToGrid: { classPropertyName: "snapToGrid", publicName: "snapToGrid", isSignal: true, isRequired: false, transformFunction: null }, snapToGuides: { classPropertyName: "snapToGuides", publicName: "snapToGuides", isSignal: true, isRequired: false, transformFunction: null }, autoFit: { classPropertyName: "autoFit", publicName: "autoFit", isSignal: true, isRequired: false, transformFunction: null }, interactive: { classPropertyName: "interactive", publicName: "interactive", isSignal: true, isRequired: false, transformFunction: null }, presenting: { classPropertyName: "presenting", publicName: "presenting", isSignal: true, isRequired: false, transformFunction: null }, selectedIds: { classPropertyName: "selectedIds", publicName: "selectedIds", isSignal: true, isRequired: false, transformFunction: null }, editingId: { classPropertyName: "editingId", publicName: "editingId", isSignal: true, isRequired: false, transformFunction: null }, editTemplateMode: { classPropertyName: "editTemplateMode", publicName: "editTemplateMode", isSignal: true, isRequired: false, transformFunction: null }, templateElements: { classPropertyName: "templateElements", publicName: "templateElements", isSignal: true, isRequired: false, transformFunction: null }, drawTool: { classPropertyName: "drawTool", publicName: "drawTool", isSignal: true, isRequired: false, transformFunction: null }, drawColor: { classPropertyName: "drawColor", publicName: "drawColor", isSignal: true, isRequired: false, transformFunction: null }, drawWidth: { classPropertyName: "drawWidth", publicName: "drawWidth", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { elementSelect: "elementSelect", backgroundClick: "backgroundClick", transformStart: "transformStart", transformUpdate: "transformUpdate", contextMenu: "contextMenu", textEditStart: "textEditStart", textCommit: "textCommit", textCancel: "textCancel", textFormat: "textFormat", rotateUpdate: "rotateUpdate", marqueeSelect: "marqueeSelect", inkStrokeComplete: "inkStrokeComplete", eraserHit: "eraserHit", cellCommit: "cellCommit", tableChange: "tableChange" }, host: { listeners: { "document:pointermove": "onPointerMove($event)", "document:pointerup": "onPointerUp()" } }, providers: [
63862
64366
  CanvasFitService,
63863
64367
  InkDrawingService,
63864
64368
  RulerGuidesService,
@@ -64239,7 +64743,7 @@ class SlideCanvasComponent {
64239
64743
  </div>
64240
64744
  `, isInline: true, styles: [".pptx-ng-canvas-stage.is-editable{touch-action:none}\n"], dependencies: [{ kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: ElementRendererComponent, selector: "pptx-element-renderer", inputs: ["element", "mediaDataUrls", "zIndex", "obstacles", "canvasWidth", "canvasHeight", "interactive", "presenting", "editable", "fieldContext", "editTemplateMode"], outputs: ["cellCommit", "tableChange"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
64241
64745
  }
64242
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SlideCanvasComponent, decorators: [{
64746
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SlideCanvasComponent, decorators: [{
64243
64747
  type: Component,
64244
64748
  args: [{ selector: 'pptx-slide-canvas', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, providers: [
64245
64749
  CanvasFitService,
@@ -64722,8 +65226,8 @@ class MobilePresenterViewComponent {
64722
65226
  }
64723
65227
  return { ...slide, elements: [...template, ...slide.elements] };
64724
65228
  }
64725
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: MobilePresenterViewComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
64726
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: MobilePresenterViewComponent, isStandalone: true, selector: "pptx-mobile-presenter-view", inputs: { slides: { classPropertyName: "slides", publicName: "slides", isSignal: true, isRequired: true, transformFunction: null }, currentSlideIndex: { classPropertyName: "currentSlideIndex", publicName: "currentSlideIndex", isSignal: true, isRequired: true, transformFunction: null }, canvasSize: { classPropertyName: "canvasSize", publicName: "canvasSize", isSignal: true, isRequired: true, transformFunction: null }, templateElements: { classPropertyName: "templateElements", publicName: "templateElements", isSignal: true, isRequired: false, transformFunction: null }, mediaDataUrls: { classPropertyName: "mediaDataUrls", publicName: "mediaDataUrls", isSignal: true, isRequired: false, transformFunction: null }, presentationStartTime: { classPropertyName: "presentationStartTime", publicName: "presentationStartTime", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { movePresentationSlide: "movePresentationSlide", exit: "exit" }, ngImport: i0, template: `
65229
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: MobilePresenterViewComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
65230
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: MobilePresenterViewComponent, isStandalone: true, selector: "pptx-mobile-presenter-view", inputs: { slides: { classPropertyName: "slides", publicName: "slides", isSignal: true, isRequired: true, transformFunction: null }, currentSlideIndex: { classPropertyName: "currentSlideIndex", publicName: "currentSlideIndex", isSignal: true, isRequired: true, transformFunction: null }, canvasSize: { classPropertyName: "canvasSize", publicName: "canvasSize", isSignal: true, isRequired: true, transformFunction: null }, templateElements: { classPropertyName: "templateElements", publicName: "templateElements", isSignal: true, isRequired: false, transformFunction: null }, mediaDataUrls: { classPropertyName: "mediaDataUrls", publicName: "mediaDataUrls", isSignal: true, isRequired: false, transformFunction: null }, presentationStartTime: { classPropertyName: "presentationStartTime", publicName: "presentationStartTime", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { movePresentationSlide: "movePresentationSlide", exit: "exit" }, ngImport: i0, template: `
64727
65231
  @if (currentSlide(); as current) {
64728
65232
  <!-- Header: elapsed + counter + exit -->
64729
65233
  <div class="pptx-ng-mpresenter-header">
@@ -64828,7 +65332,7 @@ class MobilePresenterViewComponent {
64828
65332
  }
64829
65333
  `, isInline: true, styles: [":host{position:absolute;inset:0;z-index:50;display:flex;flex-direction:column;background:#0b0b0c;color:#f5f5f5;font-family:system-ui,sans-serif;padding-top:env(safe-area-inset-top,0px);padding-bottom:env(safe-area-inset-bottom,0px);padding-left:env(safe-area-inset-left,0px);padding-right:env(safe-area-inset-right,0px)}.pptx-ng-mpresenter-header,.pptx-ng-mpresenter-next,.pptx-ng-mpresenter-ctl{display:flex;align-items:center;gap:.75rem;padding:.5rem 1rem}.pptx-ng-mpresenter-header{justify-content:space-between;border-bottom:1px solid rgba(255,255,255,.08)}.pptx-ng-mpresenter-label{font-size:.625rem;text-transform:uppercase;letter-spacing:.06em;color:#ffffff8c}.pptx-ng-mpresenter-elapsed{font-family:ui-monospace,monospace;font-variant-numeric:tabular-nums;font-size:1.125rem;color:#6ea8fe}.pptx-ng-mpresenter-counter{font-family:ui-monospace,monospace;font-variant-numeric:tabular-nums;font-size:.875rem}.pptx-ng-mpresenter-exit{display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;min-width:44px;min-height:44px;border:none;border-radius:6px;background:transparent;color:#ffffffbf;cursor:pointer;font-size:1.25rem;line-height:1}.pptx-ng-mpresenter-exit:hover{background:#ffffff1f;color:#fff}.pptx-ng-mpresenter-main{display:flex;align-items:center;justify-content:center;background:#000;padding:.75rem}.pptx-ng-mpresenter-main-stage{width:100%;max-width:640px}.pptx-ng-mpresenter-next{border-bottom:1px solid rgba(255,255,255,.08)}.pptx-ng-mpresenter-thumb{flex:0 0 auto;overflow:hidden;border:1px solid rgba(255,255,255,.15);border-radius:4px}.pptx-ng-mpresenter-next-empty{display:flex;flex:1 1 auto;align-items:center;justify-content:center;height:3rem;border:1px solid rgba(255,255,255,.15);border-radius:4px;background:#ffffff0a;font-size:.625rem;font-style:italic;color:#ffffff80}.pptx-ng-mpresenter-notes{flex:1 1 auto;display:flex;flex-direction:column;min-height:0;padding:.5rem 1rem}.pptx-ng-mpresenter-notes-body{flex:1 1 auto;overflow-y:auto;margin-top:.25rem;border:1px solid rgba(255,255,255,.15);border-radius:6px;background:#ffffff0a;padding:.5rem .75rem;white-space:pre-wrap;line-height:1.5;font-size:15px}.pptx-ng-mpresenter-notes-empty{font-style:italic;color:#ffffff80}.pptx-ng-mpresenter-ctl{justify-content:space-between;border-top:1px solid rgba(255,255,255,.08)}.pptx-ng-mpresenter-navbtn{flex:1 1 0;display:inline-flex;align-items:center;justify-content:center;gap:.375rem;height:44px;border:none;border-radius:6px;background:#ffffff14;color:#f5f5f5;cursor:pointer;font-size:.9rem}.pptx-ng-mpresenter-navbtn:hover:not(:disabled){background:#ffffff29}.pptx-ng-mpresenter-navbtn:disabled{opacity:.4;cursor:not-allowed}.pptx-ng-mpresenter-empty{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;color:#fff9}\n"], dependencies: [{ kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: SlideCanvasComponent, selector: "pptx-slide-canvas", inputs: ["slide", "canvasSize", "mediaDataUrls", "zoom", "editable", "showGrid", "showRulers", "showGuides", "snapToGrid", "snapToGuides", "autoFit", "interactive", "presenting", "selectedIds", "editingId", "editTemplateMode", "templateElements", "drawTool", "drawColor", "drawWidth"], outputs: ["elementSelect", "backgroundClick", "transformStart", "transformUpdate", "contextMenu", "textEditStart", "textCommit", "textCancel", "textFormat", "rotateUpdate", "marqueeSelect", "inkStrokeComplete", "eraserHit", "cellCommit", "tableChange"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
64830
65334
  }
64831
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: MobilePresenterViewComponent, decorators: [{
65335
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: MobilePresenterViewComponent, decorators: [{
64832
65336
  type: Component,
64833
65337
  args: [{ selector: 'pptx-mobile-presenter-view', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [NgStyle, SlideCanvasComponent, TranslatePipe], template: `
64834
65338
  @if (currentSlide(); as current) {
@@ -65051,8 +65555,8 @@ class MobileSlidesSheetComponent {
65051
65555
  this.jumpToSlide.emit(index);
65052
65556
  this.closed.emit();
65053
65557
  }
65054
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: MobileSlidesSheetComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
65055
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: MobileSlidesSheetComponent, isStandalone: true, selector: "pptx-mobile-slides-sheet", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, slides: { classPropertyName: "slides", publicName: "slides", isSignal: true, isRequired: false, transformFunction: null }, canvasSize: { classPropertyName: "canvasSize", publicName: "canvasSize", isSignal: true, isRequired: true, transformFunction: null }, mediaDataUrls: { classPropertyName: "mediaDataUrls", publicName: "mediaDataUrls", isSignal: true, isRequired: false, transformFunction: null }, activeIndex: { classPropertyName: "activeIndex", publicName: "activeIndex", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { closed: "closed", jumpToSlide: "jumpToSlide" }, ngImport: i0, template: `
65558
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: MobileSlidesSheetComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
65559
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: MobileSlidesSheetComponent, isStandalone: true, selector: "pptx-mobile-slides-sheet", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, slides: { classPropertyName: "slides", publicName: "slides", isSignal: true, isRequired: false, transformFunction: null }, canvasSize: { classPropertyName: "canvasSize", publicName: "canvasSize", isSignal: true, isRequired: true, transformFunction: null }, mediaDataUrls: { classPropertyName: "mediaDataUrls", publicName: "mediaDataUrls", isSignal: true, isRequired: false, transformFunction: null }, activeIndex: { classPropertyName: "activeIndex", publicName: "activeIndex", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { closed: "closed", jumpToSlide: "jumpToSlide" }, ngImport: i0, template: `
65056
65560
  <pptx-mobile-sheet
65057
65561
  [open]="open()"
65058
65562
  [title]="'pptx.sections.slides' | translate"
@@ -65104,7 +65608,7 @@ class MobileSlidesSheetComponent {
65104
65608
  </pptx-mobile-sheet>
65105
65609
  `, isInline: true, styles: [":host{display:contents}.pptx-ng-mslides-count{margin:0;padding:.5rem 1rem .25rem;font-size:.75rem;color:#ffffff73}.pptx-ng-mslides-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(160px,1fr));gap:.75rem;padding:.75rem .875rem 1.5rem}.pptx-ng-mslides-cell{display:flex;flex-direction:column;align-items:center;gap:.375rem;padding:.375rem;border:2px solid transparent;border-radius:.5rem;background:transparent;color:inherit;cursor:pointer;touch-action:manipulation;-webkit-tap-highlight-color:transparent;transition:border-color .12s,background .12s}.pptx-ng-mslides-cell:hover{background:#ffffff0d;border-color:#ffffff26}.pptx-ng-mslides-cell:active{background:#ffffff1a}.pptx-ng-mslides-cell.is-active{border-color:#3b82f6;background:#3b82f61a}.pptx-ng-mslides-clip{overflow:hidden;border-radius:.25rem;width:100%}.pptx-ng-mslides-clip ::ng-deep .pptx-ng-canvas-wrapper{margin:0!important}.pptx-ng-mslides-num{display:block;font-size:.625rem;color:#fff6;line-height:1.4;-webkit-user-select:none;user-select:none}\n"], dependencies: [{ kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: MobileSheetComponent, selector: "pptx-mobile-sheet", inputs: ["open", "title", "heightFraction", "fullScreen"], outputs: ["closed"] }, { kind: "component", type: SlideCanvasComponent, selector: "pptx-slide-canvas", inputs: ["slide", "canvasSize", "mediaDataUrls", "zoom", "editable", "showGrid", "showRulers", "showGuides", "snapToGrid", "snapToGuides", "autoFit", "interactive", "presenting", "selectedIds", "editingId", "editTemplateMode", "templateElements", "drawTool", "drawColor", "drawWidth"], outputs: ["elementSelect", "backgroundClick", "transformStart", "transformUpdate", "contextMenu", "textEditStart", "textCommit", "textCancel", "textFormat", "rotateUpdate", "marqueeSelect", "inkStrokeComplete", "eraserHit", "cellCommit", "tableChange"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
65106
65610
  }
65107
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: MobileSlidesSheetComponent, decorators: [{
65611
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: MobileSlidesSheetComponent, decorators: [{
65108
65612
  type: Component,
65109
65613
  args: [{ selector: 'pptx-mobile-slides-sheet', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [NgStyle, MobileSheetComponent, SlideCanvasComponent, TranslatePipe], template: `
65110
65614
  <pptx-mobile-sheet
@@ -65216,8 +65720,8 @@ class MobileToolbarComponent {
65216
65720
  save = output();
65217
65721
  /** User tapped Present. */
65218
65722
  present = output();
65219
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: MobileToolbarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
65220
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: MobileToolbarComponent, isStandalone: true, selector: "pptx-mobile-toolbar", inputs: { canUndo: { classPropertyName: "canUndo", publicName: "canUndo", isSignal: true, isRequired: false, transformFunction: null }, canRedo: { classPropertyName: "canRedo", publicName: "canRedo", isSignal: true, isRequired: false, transformFunction: null }, canPresent: { classPropertyName: "canPresent", publicName: "canPresent", isSignal: true, isRequired: false, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null }, menuOpen: { classPropertyName: "menuOpen", publicName: "menuOpen", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { toggleMenu: "toggleMenu", undo: "undo", redo: "redo", save: "save", present: "present" }, ngImport: i0, template: `
65723
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: MobileToolbarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
65724
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: MobileToolbarComponent, isStandalone: true, selector: "pptx-mobile-toolbar", inputs: { canUndo: { classPropertyName: "canUndo", publicName: "canUndo", isSignal: true, isRequired: false, transformFunction: null }, canRedo: { classPropertyName: "canRedo", publicName: "canRedo", isSignal: true, isRequired: false, transformFunction: null }, canPresent: { classPropertyName: "canPresent", publicName: "canPresent", isSignal: true, isRequired: false, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null }, menuOpen: { classPropertyName: "menuOpen", publicName: "menuOpen", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { toggleMenu: "toggleMenu", undo: "undo", redo: "redo", save: "save", present: "present" }, ngImport: i0, template: `
65221
65725
  <div
65222
65726
  class="pptx-ng-mtoolbar"
65223
65727
  role="toolbar"
@@ -65349,7 +65853,7 @@ class MobileToolbarComponent {
65349
65853
  </div>
65350
65854
  `, isInline: true, styles: [":host{display:block}.pptx-ng-mtoolbar{position:relative;z-index:20;display:flex;align-items:center;gap:.25rem;padding:.25rem .5rem;min-height:52px;background:#1a1a1aeb;border-bottom:1px solid rgba(255,255,255,.1);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);padding-top:max(env(safe-area-inset-top,0px),.25rem)}.pptx-ng-mtoolbar-spacer{flex:1 1 auto}.pptx-ng-mtoolbar-btn{display:inline-flex;align-items:center;justify-content:center;min-width:44px;min-height:44px;border:none;border-radius:.375rem;background:transparent;color:#ffffffd9;cursor:pointer;touch-action:manipulation;transition:background .12s,transform .08s;-webkit-tap-highlight-color:transparent}.pptx-ng-mtoolbar-btn:active:not([disabled]){transform:scale(.92)}.pptx-ng-mtoolbar-btn:hover:not([disabled]){background:#ffffff14}.pptx-ng-mtoolbar-btn.is-active{color:#3b82f6}.pptx-ng-mtoolbar-btn[disabled]{opacity:.35;cursor:not-allowed}.pptx-ng-mtoolbar-present{color:#3b82f6}.pptx-ng-mtoolbar-icon{width:1.25rem;height:1.25rem;flex-shrink:0}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
65351
65855
  }
65352
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: MobileToolbarComponent, decorators: [{
65856
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: MobileToolbarComponent, decorators: [{
65353
65857
  type: Component,
65354
65858
  args: [{ selector: 'pptx-mobile-toolbar', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
65355
65859
  <div
@@ -65610,8 +66114,8 @@ class NotesToolbarComponent {
65610
66114
  }
65611
66115
  this.insertLink.emit({ url: this.linkUrl(), displayText: this.linkText() });
65612
66116
  }
65613
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: NotesToolbarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
65614
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: NotesToolbarComponent, isStandalone: true, selector: "pptx-notes-toolbar", inputs: { isRichEnabled: { classPropertyName: "isRichEnabled", publicName: "isRichEnabled", isSignal: true, isRequired: true, transformFunction: null }, showLinkPopover: { classPropertyName: "showLinkPopover", publicName: "showLinkPopover", isSignal: true, isRequired: true, transformFunction: null }, savedSelectionText: { classPropertyName: "savedSelectionText", publicName: "savedSelectionText", isSignal: true, isRequired: true, transformFunction: null } }, outputs: { inline: "inline", paragraph: "paragraph", linkButtonClick: "linkButtonClick", insertLink: "insertLink", closeLinkPopover: "closeLinkPopover", print: "print", toggleRich: "toggleRich" }, viewQueries: [{ propertyName: "linkUrlInput", first: true, predicate: ["linkUrlInput"], descendants: true, isSignal: true }], ngImport: i0, template: `
66117
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: NotesToolbarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
66118
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: NotesToolbarComponent, isStandalone: true, selector: "pptx-notes-toolbar", inputs: { isRichEnabled: { classPropertyName: "isRichEnabled", publicName: "isRichEnabled", isSignal: true, isRequired: true, transformFunction: null }, showLinkPopover: { classPropertyName: "showLinkPopover", publicName: "showLinkPopover", isSignal: true, isRequired: true, transformFunction: null }, savedSelectionText: { classPropertyName: "savedSelectionText", publicName: "savedSelectionText", isSignal: true, isRequired: true, transformFunction: null } }, outputs: { inline: "inline", paragraph: "paragraph", linkButtonClick: "linkButtonClick", insertLink: "insertLink", closeLinkPopover: "closeLinkPopover", print: "print", toggleRich: "toggleRich" }, viewQueries: [{ propertyName: "linkUrlInput", first: true, predicate: ["linkUrlInput"], descendants: true, isSignal: true }], ngImport: i0, template: `
65615
66119
  <div
65616
66120
  class="pptx-ng-notes-toolbar"
65617
66121
  role="toolbar"
@@ -65696,7 +66200,7 @@ class NotesToolbarComponent {
65696
66200
  </div>
65697
66201
  `, isInline: true, styles: [":host{display:block}.pptx-ng-notes-toolbar{display:flex;align-items:center;justify-content:space-between;gap:.5rem;margin-bottom:.25rem}.pptx-ng-notes-tb-group{position:relative;display:inline-flex;align-items:center;overflow:hidden;border:1px solid rgba(0,0,0,.12);border-radius:.25rem;background:#00000008}.pptx-ng-notes-tb-btn{display:inline-flex;align-items:center;justify-content:center;padding:.25rem .4rem;border:none;background:transparent;color:#111827;cursor:pointer}.pptx-ng-notes-tb-btn.has-divider{border-left:1px solid rgba(0,0,0,.12)}.pptx-ng-notes-tb-btn:hover{background:#0000000f}.pptx-ng-notes-tb-toggle{padding:.2rem .5rem;font-size:10px;border:1px solid rgba(0,0,0,.12);border-radius:.25rem;background:#00000008;color:#111827;cursor:pointer}.pptx-ng-notes-tb-toggle:hover{background:#0000000f}.pptx-ng-notes-link-popover{position:absolute;bottom:100%;left:0;z-index:10;width:18rem;margin-bottom:.25rem;padding:.75rem;border:1px solid rgba(0,0,0,.15);border-radius:.5rem;background:#fff;box-shadow:0 8px 24px #0000002e}.pptx-ng-notes-link-label{display:block;margin:0 0 .125rem;font-size:10px;color:#6b7280}.pptx-ng-notes-link-input{width:100%;margin-bottom:.5rem;padding:.25rem .5rem;font-size:12px;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.pptx-ng-notes-link-actions{display:flex;justify-content:flex-end;gap:.5rem}.pptx-ng-notes-link-cancel{padding:.25rem .5rem;font-size:10px;border:none;background:transparent;color:#6b7280;cursor:pointer}.pptx-ng-notes-link-insert{padding:.25rem .5rem;font-size:10px;border:none;border-radius:.25rem;background:#6366f1;color:#fff;cursor:pointer}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
65698
66202
  }
65699
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: NotesToolbarComponent, decorators: [{
66203
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: NotesToolbarComponent, decorators: [{
65700
66204
  type: Component,
65701
66205
  args: [{ selector: 'pptx-notes-toolbar', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
65702
66206
  <div
@@ -66008,8 +66512,8 @@ class NotesPanelComponent {
66008
66512
  setTimeout(() => frame.remove(), 1000);
66009
66513
  }, 200);
66010
66514
  }
66011
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: NotesPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
66012
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: NotesPanelComponent, isStandalone: true, selector: "pptx-notes-panel", inputs: { slide: { classPropertyName: "slide", publicName: "slide", isSignal: true, isRequired: false, transformFunction: null }, expanded: { classPropertyName: "expanded", publicName: "expanded", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { update: "update", notesToggle: "notesToggle" }, viewQueries: [{ propertyName: "richEditor", first: true, predicate: ["richEditor"], descendants: true, isSignal: true }, { propertyName: "textarea", first: true, predicate: ["textarea"], descendants: true, isSignal: true }], ngImport: i0, template: `
66515
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: NotesPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
66516
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: NotesPanelComponent, isStandalone: true, selector: "pptx-notes-panel", inputs: { slide: { classPropertyName: "slide", publicName: "slide", isSignal: true, isRequired: false, transformFunction: null }, expanded: { classPropertyName: "expanded", publicName: "expanded", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { update: "update", notesToggle: "notesToggle" }, viewQueries: [{ propertyName: "richEditor", first: true, predicate: ["richEditor"], descendants: true, isSignal: true }, { propertyName: "textarea", first: true, predicate: ["textarea"], descendants: true, isSignal: true }], ngImport: i0, template: `
66013
66517
  <section class="pptx-ng-notes-panel" [attr.data-collapsed]="collapsed()">
66014
66518
  <button
66015
66519
  type="button"
@@ -66077,7 +66581,7 @@ class NotesPanelComponent {
66077
66581
  </section>
66078
66582
  `, isInline: true, styles: [":host{display:block}.pptx-ng-notes-panel{display:flex;flex-direction:column;border-top:1px solid var(--pptx-border, rgba(0, 0, 0, .1));background:var(--pptx-background, #ffffff);color:var(--pptx-foreground, #111827)}.pptx-ng-notes-header{display:flex;width:100%;align-items:center;justify-content:space-between;padding:.5rem .75rem;border:none;background:transparent;font-size:.8125rem;font-weight:600;color:var(--pptx-muted-foreground, #6b7280);cursor:pointer}.pptx-ng-notes-header:hover{color:var(--pptx-foreground, #111827)}.pptx-ng-notes-body{padding:0 .75rem .75rem}.pptx-ng-notes-rich,.pptx-ng-notes-textarea{box-sizing:border-box;width:100%;min-height:5rem;padding:.5rem;border:1px solid rgba(0,0,0,.15);border-radius:.375rem;background:#00000008;font:inherit;font-size:.8125rem;line-height:1.5;color:#111827}.pptx-ng-notes-rich{overflow:auto;resize:vertical}.pptx-ng-notes-textarea{resize:vertical}.pptx-ng-notes-rich:focus,.pptx-ng-notes-textarea:focus{outline:none;border-color:#6366f1;box-shadow:0 0 0 1px #6366f14d}.pptx-ng-notes-textarea:disabled{cursor:not-allowed;opacity:.6}\n"], dependencies: [{ kind: "component", type: NotesToolbarComponent, selector: "pptx-notes-toolbar", inputs: ["isRichEnabled", "showLinkPopover", "savedSelectionText"], outputs: ["inline", "paragraph", "linkButtonClick", "insertLink", "closeLinkPopover", "print", "toggleRich"] }, { kind: "component", type: LucideChevronRight, selector: "svg[lucideChevronRight]" }, { kind: "component", type: LucideChevronDown, selector: "svg[lucideChevronDown]" }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
66079
66583
  }
66080
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: NotesPanelComponent, decorators: [{
66584
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: NotesPanelComponent, decorators: [{
66081
66585
  type: Component,
66082
66586
  args: [{ selector: 'pptx-notes-panel', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [NotesToolbarComponent, TranslatePipe, LucideChevronRight, LucideChevronDown], template: `
66083
66587
  <section class="pptx-ng-notes-panel" [attr.data-collapsed]="collapsed()">
@@ -66322,10 +66826,10 @@ class AnimationPlaybackService {
66322
66826
  }
66323
66827
  this.rafHandle = null;
66324
66828
  }
66325
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AnimationPlaybackService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
66326
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AnimationPlaybackService });
66829
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: AnimationPlaybackService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
66830
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: AnimationPlaybackService });
66327
66831
  }
66328
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AnimationPlaybackService, decorators: [{
66832
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: AnimationPlaybackService, decorators: [{
66329
66833
  type: Injectable
66330
66834
  }], ctorParameters: () => [] });
66331
66835
 
@@ -66825,10 +67329,10 @@ class PresentationAnnotationsService {
66825
67329
  this._toolbarTimer = null;
66826
67330
  }
66827
67331
  }
66828
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PresentationAnnotationsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
66829
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PresentationAnnotationsService });
67332
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PresentationAnnotationsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
67333
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PresentationAnnotationsService });
66830
67334
  }
66831
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PresentationAnnotationsService, decorators: [{
67335
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PresentationAnnotationsService, decorators: [{
66832
67336
  type: Injectable
66833
67337
  }], ctorParameters: () => [] });
66834
67338
 
@@ -67022,8 +67526,8 @@ class PresentationAnnotationOverlayComponent {
67022
67526
  y: (clientY - rect.top) / z,
67023
67527
  };
67024
67528
  }
67025
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PresentationAnnotationOverlayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
67026
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: PresentationAnnotationOverlayComponent, isStandalone: true, selector: "pptx-presentation-annotation-overlay", inputs: { canvasSize: { classPropertyName: "canvasSize", publicName: "canvasSize", isSignal: true, isRequired: true, transformFunction: null }, zoom: { classPropertyName: "zoom", publicName: "zoom", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "svgRef", first: true, predicate: ["svg"], descendants: true, isSignal: true }], ngImport: i0, template: `
67529
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PresentationAnnotationOverlayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
67530
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: PresentationAnnotationOverlayComponent, isStandalone: true, selector: "pptx-presentation-annotation-overlay", inputs: { canvasSize: { classPropertyName: "canvasSize", publicName: "canvasSize", isSignal: true, isRequired: true, transformFunction: null }, zoom: { classPropertyName: "zoom", publicName: "zoom", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "svgRef", first: true, predicate: ["svg"], descendants: true, isSignal: true }], ngImport: i0, template: `
67027
67531
  @if (isArmed()) {
67028
67532
  <div
67029
67533
  class="pptx-ng-anno-wrapper"
@@ -67061,7 +67565,7 @@ class PresentationAnnotationOverlayComponent {
67061
67565
  }
67062
67566
  `, isInline: true, styles: [":host{display:block;position:absolute;inset:0;pointer-events:none}.pptx-ng-anno-wrapper{position:absolute;inset:0}.pptx-ng-anno-svg{position:absolute;top:0;left:0;transform-origin:top left;overflow:visible}.pptx-ng-laser-dot{position:absolute;border-radius:50%;pointer-events:none;background:#ff0000d9;box-shadow:0 0 12px 6px #ff000080,0 0 24px 12px #ff000040;filter:drop-shadow(0 0 8px rgba(255,0,0,.7))}\n"], dependencies: [{ kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
67063
67567
  }
67064
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PresentationAnnotationOverlayComponent, decorators: [{
67568
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PresentationAnnotationOverlayComponent, decorators: [{
67065
67569
  type: Component,
67066
67570
  args: [{ selector: 'pptx-presentation-annotation-overlay', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [NgStyle], template: `
67067
67571
  @if (isArmed()) {
@@ -67451,8 +67955,8 @@ class PresentationSubtitleBarComponent {
67451
67955
  const text = captionDisplayText(this._supportState(), this._captionText(), this.notSupportedLabel(), this.listeningLabel());
67452
67956
  this.displayText.set(text);
67453
67957
  }
67454
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PresentationSubtitleBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
67455
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: PresentationSubtitleBarComponent, isStandalone: true, selector: "pptx-presentation-subtitle-bar", inputs: { visible: { classPropertyName: "visible", publicName: "visible", isSignal: true, isRequired: true, transformFunction: null } }, usesOnChanges: true, ngImport: i0, template: `
67958
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PresentationSubtitleBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
67959
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: PresentationSubtitleBarComponent, isStandalone: true, selector: "pptx-presentation-subtitle-bar", inputs: { visible: { classPropertyName: "visible", publicName: "visible", isSignal: true, isRequired: true, transformFunction: null } }, usesOnChanges: true, ngImport: i0, template: `
67456
67960
  @if (visible()) {
67457
67961
  <div class="pptx-ng-subtitle-inner">
67458
67962
  <span class="pptx-ng-subtitle-text">{{ displayText() }}</span>
@@ -67460,7 +67964,7 @@ class PresentationSubtitleBarComponent {
67460
67964
  }
67461
67965
  `, isInline: true, styles: [":host{display:block;position:absolute;bottom:3.5rem;left:50%;transform:translate(-50%);z-index:70;max-width:80%;min-width:300px;pointer-events:none}.pptx-ng-subtitle-inner{padding:.75rem 1.5rem;border-radius:.5rem;background:#000000bf;border:1px solid rgba(255,255,255,.1);-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px)}.pptx-ng-subtitle-text{display:block;text-align:center;font-size:.9375rem;line-height:1.5;color:#ffffffb3;font-style:italic;font-family:system-ui,sans-serif;white-space:pre-wrap;word-break:break-word}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
67462
67966
  }
67463
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PresentationSubtitleBarComponent, decorators: [{
67967
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PresentationSubtitleBarComponent, decorators: [{
67464
67968
  type: Component,
67465
67969
  args: [{ selector: 'pptx-presentation-subtitle-bar', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, template: `
67466
67970
  @if (visible()) {
@@ -67678,8 +68182,8 @@ class PresentationTransitionOverlayComponent {
67678
68182
  this.audio = null;
67679
68183
  }
67680
68184
  }
67681
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PresentationTransitionOverlayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
67682
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.5", type: PresentationTransitionOverlayComponent, isStandalone: true, selector: "pptx-presentation-transition-overlay", inputs: { outgoingSlide: { classPropertyName: "outgoingSlide", publicName: "outgoingSlide", isSignal: true, isRequired: true, transformFunction: null }, canvasSize: { classPropertyName: "canvasSize", publicName: "canvasSize", isSignal: true, isRequired: true, transformFunction: null }, transition: { classPropertyName: "transition", publicName: "transition", isSignal: true, isRequired: true, transformFunction: null }, templateElements: { classPropertyName: "templateElements", publicName: "templateElements", isSignal: true, isRequired: false, transformFunction: null }, mediaDataUrls: { classPropertyName: "mediaDataUrls", publicName: "mediaDataUrls", isSignal: true, isRequired: false, transformFunction: null }, durationMs: { classPropertyName: "durationMs", publicName: "durationMs", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { complete: "complete" }, ngImport: i0, template: `
68185
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PresentationTransitionOverlayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
68186
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.6", type: PresentationTransitionOverlayComponent, isStandalone: true, selector: "pptx-presentation-transition-overlay", inputs: { outgoingSlide: { classPropertyName: "outgoingSlide", publicName: "outgoingSlide", isSignal: true, isRequired: true, transformFunction: null }, canvasSize: { classPropertyName: "canvasSize", publicName: "canvasSize", isSignal: true, isRequired: true, transformFunction: null }, transition: { classPropertyName: "transition", publicName: "transition", isSignal: true, isRequired: true, transformFunction: null }, templateElements: { classPropertyName: "templateElements", publicName: "templateElements", isSignal: true, isRequired: false, transformFunction: null }, mediaDataUrls: { classPropertyName: "mediaDataUrls", publicName: "mediaDataUrls", isSignal: true, isRequired: false, transformFunction: null }, durationMs: { classPropertyName: "durationMs", publicName: "durationMs", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { complete: "complete" }, ngImport: i0, template: `
67683
68187
  <div class="pptx-ng-transition-layer" [ngStyle]="layerStyle()">
67684
68188
  <div [ngStyle]="slideBoxStyle()">
67685
68189
  <pptx-slide-canvas
@@ -67693,7 +68197,7 @@ class PresentationTransitionOverlayComponent {
67693
68197
  </div>
67694
68198
  `, isInline: true, styles: [":host{display:block;position:absolute;inset:0;overflow:hidden;pointer-events:none}.pptx-ng-transition-layer{position:absolute;inset:0;display:flex;align-items:center;justify-content:center}\n"], dependencies: [{ kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: SlideCanvasComponent, selector: "pptx-slide-canvas", inputs: ["slide", "canvasSize", "mediaDataUrls", "zoom", "editable", "showGrid", "showRulers", "showGuides", "snapToGrid", "snapToGuides", "autoFit", "interactive", "presenting", "selectedIds", "editingId", "editTemplateMode", "templateElements", "drawTool", "drawColor", "drawWidth"], outputs: ["elementSelect", "backgroundClick", "transformStart", "transformUpdate", "contextMenu", "textEditStart", "textCommit", "textCancel", "textFormat", "rotateUpdate", "marqueeSelect", "inkStrokeComplete", "eraserHit", "cellCommit", "tableChange"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
67695
68199
  }
67696
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PresentationTransitionOverlayComponent, decorators: [{
68200
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PresentationTransitionOverlayComponent, decorators: [{
67697
68201
  type: Component,
67698
68202
  args: [{ selector: 'pptx-presentation-transition-overlay', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [NgStyle, SlideCanvasComponent], template: `
67699
68203
  <div class="pptx-ng-transition-layer" [ngStyle]="layerStyle()">
@@ -68297,8 +68801,8 @@ class PresentationOverlayComponent {
68297
68801
  }
68298
68802
  this.closed.emit();
68299
68803
  }
68300
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PresentationOverlayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
68301
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: PresentationOverlayComponent, isStandalone: true, selector: "pptx-presentation-overlay", inputs: { slides: { classPropertyName: "slides", publicName: "slides", isSignal: true, isRequired: true, transformFunction: null }, canvasSize: { classPropertyName: "canvasSize", publicName: "canvasSize", isSignal: true, isRequired: true, transformFunction: null }, mediaDataUrls: { classPropertyName: "mediaDataUrls", publicName: "mediaDataUrls", isSignal: true, isRequired: false, transformFunction: null }, startIndex: { classPropertyName: "startIndex", publicName: "startIndex", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { indexChange: "indexChange", closed: "closed", annotationsExit: "annotationsExit" }, host: { listeners: { "document:fullscreenchange": "onFullscreenChange()", "window:resize": "onWindowResize()", "document:keydown": "onKeyDown($event)" } }, providers: [AnimationPlaybackService, PresentationAnnotationsService, ZoomNavigationService], viewQueries: [{ propertyName: "stageRef", first: true, predicate: ["stage"], descendants: true, isSignal: true }, { propertyName: "rootRef", first: true, predicate: ["root"], descendants: true, isSignal: true }], ngImport: i0, template: `
68804
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PresentationOverlayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
68805
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: PresentationOverlayComponent, isStandalone: true, selector: "pptx-presentation-overlay", inputs: { slides: { classPropertyName: "slides", publicName: "slides", isSignal: true, isRequired: true, transformFunction: null }, canvasSize: { classPropertyName: "canvasSize", publicName: "canvasSize", isSignal: true, isRequired: true, transformFunction: null }, mediaDataUrls: { classPropertyName: "mediaDataUrls", publicName: "mediaDataUrls", isSignal: true, isRequired: false, transformFunction: null }, startIndex: { classPropertyName: "startIndex", publicName: "startIndex", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { indexChange: "indexChange", closed: "closed", annotationsExit: "annotationsExit" }, host: { listeners: { "document:fullscreenchange": "onFullscreenChange()", "window:resize": "onWindowResize()", "document:keydown": "onKeyDown($event)" } }, providers: [AnimationPlaybackService, PresentationAnnotationsService, ZoomNavigationService], viewQueries: [{ propertyName: "stageRef", first: true, predicate: ["stage"], descendants: true, isSignal: true }, { propertyName: "rootRef", first: true, predicate: ["root"], descendants: true, isSignal: true }], ngImport: i0, template: `
68302
68806
  <div #root class="pptx-ng-presentation-root">
68303
68807
  <!--
68304
68808
  Slide counter, rendered first in DOM (before slide content) so a
@@ -68435,7 +68939,7 @@ class PresentationOverlayComponent {
68435
68939
  </div>
68436
68940
  `, isInline: true, styles: [":host{display:block;position:fixed;inset:0;z-index:10000;background:#000;cursor:pointer;-webkit-user-select:none;user-select:none}.pptx-ng-presentation-root{position:absolute;inset:0;touch-action:pan-y}.pptx-ng-presentation-close:hover,.pptx-ng-presentation-nav:hover{background:#000000bf}.pptx-ng-presentation-tools{position:absolute;bottom:max(1rem,env(safe-area-inset-bottom));left:1rem;display:flex;gap:.25rem;padding:.25rem;border-radius:.5rem;background:#0000008c;z-index:80}.pptx-ng-presentation-tools button{width:2rem;height:2rem;border:none;border-radius:.35rem;background:transparent;color:#fff;font-size:1rem;cursor:pointer}.pptx-ng-presentation-tools button:hover{background:#ffffff26}.pptx-ng-presentation-tools button.is-active{background:#ffffff4d}\n"], dependencies: [{ kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: SlideCanvasComponent, selector: "pptx-slide-canvas", inputs: ["slide", "canvasSize", "mediaDataUrls", "zoom", "editable", "showGrid", "showRulers", "showGuides", "snapToGrid", "snapToGuides", "autoFit", "interactive", "presenting", "selectedIds", "editingId", "editTemplateMode", "templateElements", "drawTool", "drawColor", "drawWidth"], outputs: ["elementSelect", "backgroundClick", "transformStart", "transformUpdate", "contextMenu", "textEditStart", "textCommit", "textCancel", "textFormat", "rotateUpdate", "marqueeSelect", "inkStrokeComplete", "eraserHit", "cellCommit", "tableChange"] }, { kind: "component", type: PresentationTransitionOverlayComponent, selector: "pptx-presentation-transition-overlay", inputs: ["outgoingSlide", "canvasSize", "transition", "templateElements", "mediaDataUrls", "durationMs"], outputs: ["complete"] }, { kind: "component", type: PresentationAnnotationOverlayComponent, selector: "pptx-presentation-annotation-overlay", inputs: ["canvasSize", "zoom"] }, { kind: "component", type: PresentationSubtitleBarComponent, selector: "pptx-presentation-subtitle-bar", inputs: ["visible"] }, { kind: "component", type: LucidePenTool, selector: "svg[lucidePenTool]" }, { kind: "component", type: LucideHighlighter, selector: "svg[lucideHighlighter]" }, { kind: "component", type: LucideEraser, selector: "svg[lucideEraser]" }, { kind: "component", type: LucideMousePointer2, selector: "svg[lucideMousePointer2]" }, { kind: "component", type: LucideTrash2, selector: "svg[lucideTrash2]" }, { kind: "component", type: LucideX, selector: "svg[lucideX]" }, { kind: "component", type: LucideChevronLeft, selector: "svg[lucideChevronLeft]" }, { kind: "component", type: LucideChevronRight, selector: "svg[lucideChevronRight]" }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
68437
68941
  }
68438
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PresentationOverlayComponent, decorators: [{
68942
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PresentationOverlayComponent, decorators: [{
68439
68943
  type: Component,
68440
68944
  args: [{ selector: 'pptx-presentation-overlay', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [
68441
68945
  NgStyle,
@@ -68738,8 +69242,8 @@ class PresenterViewComponent {
68738
69242
  }
68739
69243
  return { ...slide, elements: [...template, ...slide.elements] };
68740
69244
  }
68741
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PresenterViewComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
68742
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: PresenterViewComponent, isStandalone: true, selector: "pptx-presenter-view", inputs: { slides: { classPropertyName: "slides", publicName: "slides", isSignal: true, isRequired: true, transformFunction: null }, currentSlideIndex: { classPropertyName: "currentSlideIndex", publicName: "currentSlideIndex", isSignal: true, isRequired: true, transformFunction: null }, canvasSize: { classPropertyName: "canvasSize", publicName: "canvasSize", isSignal: true, isRequired: true, transformFunction: null }, templateElements: { classPropertyName: "templateElements", publicName: "templateElements", isSignal: true, isRequired: false, transformFunction: null }, mediaDataUrls: { classPropertyName: "mediaDataUrls", publicName: "mediaDataUrls", isSignal: true, isRequired: false, transformFunction: null }, presentationStartTime: { classPropertyName: "presentationStartTime", publicName: "presentationStartTime", isSignal: true, isRequired: false, transformFunction: null }, isAudienceWindowOpen: { classPropertyName: "isAudienceWindowOpen", publicName: "isAudienceWindowOpen", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { movePresentationSlide: "movePresentationSlide", exit: "exit", openAudienceWindow: "openAudienceWindow", closeAudienceWindow: "closeAudienceWindow" }, ngImport: i0, template: `
69245
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PresenterViewComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
69246
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: PresenterViewComponent, isStandalone: true, selector: "pptx-presenter-view", inputs: { slides: { classPropertyName: "slides", publicName: "slides", isSignal: true, isRequired: true, transformFunction: null }, currentSlideIndex: { classPropertyName: "currentSlideIndex", publicName: "currentSlideIndex", isSignal: true, isRequired: true, transformFunction: null }, canvasSize: { classPropertyName: "canvasSize", publicName: "canvasSize", isSignal: true, isRequired: true, transformFunction: null }, templateElements: { classPropertyName: "templateElements", publicName: "templateElements", isSignal: true, isRequired: false, transformFunction: null }, mediaDataUrls: { classPropertyName: "mediaDataUrls", publicName: "mediaDataUrls", isSignal: true, isRequired: false, transformFunction: null }, presentationStartTime: { classPropertyName: "presentationStartTime", publicName: "presentationStartTime", isSignal: true, isRequired: false, transformFunction: null }, isAudienceWindowOpen: { classPropertyName: "isAudienceWindowOpen", publicName: "isAudienceWindowOpen", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { movePresentationSlide: "movePresentationSlide", exit: "exit", openAudienceWindow: "openAudienceWindow", closeAudienceWindow: "closeAudienceWindow" }, ngImport: i0, template: `
68743
69247
  @if (currentSlide(); as current) {
68744
69248
  <div class="pptx-ng-presenter-body">
68745
69249
  <!-- Current slide (≈70%) -->
@@ -68914,7 +69418,7 @@ class PresenterViewComponent {
68914
69418
  }
68915
69419
  `, isInline: true, styles: [":host{position:absolute;inset:0;z-index:50;display:flex;flex-direction:column;background:#0b0b0c;color:#f5f5f5;font-family:system-ui,sans-serif}.pptx-ng-presenter-body{display:flex;flex:1 1 auto;min-height:0}.pptx-ng-presenter-current{flex:7 1 0;display:flex;flex-direction:column;align-items:center;justify-content:center;background:#000;padding:1rem;min-width:0}.pptx-ng-presenter-preview-stage{width:100%;max-width:100%;min-height:0}.pptx-ng-presenter-slide-badge{margin-top:.5rem;font-family:ui-monospace,monospace;font-variant-numeric:tabular-nums;font-size:.75rem;color:#ffffff80;-webkit-user-select:none;user-select:none}.pptx-ng-presenter-side{flex:3 1 0;display:flex;flex-direction:column;background:#18181b;border-left:1px solid rgba(255,255,255,.12);min-width:260px;max-width:440px}.pptx-ng-presenter-header,.pptx-ng-presenter-nav,.pptx-ng-presenter-next{padding:.5rem 1rem;border-bottom:1px solid rgba(255,255,255,.08)}.pptx-ng-presenter-header{display:flex;align-items:center;justify-content:space-between;gap:.5rem}.pptx-ng-presenter-label{font-size:.625rem;text-transform:uppercase;letter-spacing:.06em;color:#ffffff8c}.pptx-ng-presenter-clock{font-family:ui-monospace,monospace;font-variant-numeric:tabular-nums;font-size:1.125rem}.pptx-ng-presenter-elapsed{color:#6ea8fe}.pptx-ng-presenter-iconbtn{display:inline-flex;align-items:center;justify-content:center;width:32px;height:32px;border:none;border-radius:6px;background:transparent;color:#ffffffb3;cursor:pointer;font-size:1rem;line-height:1}.pptx-ng-presenter-iconbtn:hover{background:#ffffff1a;color:#fff}.pptx-ng-presenter-iconbtn:disabled{opacity:.3;cursor:not-allowed}.pptx-ng-presenter-nav{display:flex;align-items:center;justify-content:space-between}.pptx-ng-presenter-navbtn{display:inline-flex;align-items:center;gap:.375rem;padding:.375rem .75rem;border:none;border-radius:6px;background:#ffffff14;color:#f5f5f5;cursor:pointer;font-size:.75rem}.pptx-ng-presenter-navbtn:hover:not(:disabled){background:#ffffff29}.pptx-ng-presenter-navbtn:disabled{opacity:.4;cursor:not-allowed}.pptx-ng-presenter-counter{font-family:ui-monospace,monospace;font-variant-numeric:tabular-nums;font-size:.875rem}.pptx-ng-presenter-next-empty{display:flex;align-items:center;justify-content:center;height:4rem;border:1px solid rgba(255,255,255,.15);border-radius:6px;background:#ffffff0a;font-size:.75rem;font-style:italic;color:#ffffff80}.pptx-ng-presenter-notes{flex:1 1 auto;display:flex;flex-direction:column;min-height:0;padding:.75rem 1rem}.pptx-ng-presenter-notes-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:.5rem}.pptx-ng-presenter-notes-size{display:flex;align-items:center;gap:.25rem}.pptx-ng-presenter-notes-size-value{min-width:28px;text-align:center;font-family:ui-monospace,monospace;font-variant-numeric:tabular-nums;font-size:.625rem;color:#ffffff8c;-webkit-user-select:none;user-select:none}.pptx-ng-presenter-notes-body{flex:1 1 auto;overflow-y:auto;border:1px solid rgba(255,255,255,.15);border-radius:6px;background:#ffffff0a;padding:.5rem .75rem;white-space:pre-wrap;line-height:1.5}.pptx-ng-presenter-notes-empty{font-style:italic;color:#ffffff80}.pptx-ng-presenter-progress{height:6px;width:100%;background:#ffffff1f;flex:0 0 auto}.pptx-ng-presenter-progress-fill{height:100%;background:#6ea8fe;transition:width 1s linear}.pptx-ng-presenter-empty{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;color:#fff9}\n"], dependencies: [{ kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: SlideCanvasComponent, selector: "pptx-slide-canvas", inputs: ["slide", "canvasSize", "mediaDataUrls", "zoom", "editable", "showGrid", "showRulers", "showGuides", "snapToGrid", "snapToGuides", "autoFit", "interactive", "presenting", "selectedIds", "editingId", "editTemplateMode", "templateElements", "drawTool", "drawColor", "drawWidth"], outputs: ["elementSelect", "backgroundClick", "transformStart", "transformUpdate", "contextMenu", "textEditStart", "textCommit", "textCancel", "textFormat", "rotateUpdate", "marqueeSelect", "inkStrokeComplete", "eraserHit", "cellCommit", "tableChange"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
68916
69420
  }
68917
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PresenterViewComponent, decorators: [{
69421
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PresenterViewComponent, decorators: [{
68918
69422
  type: Component,
68919
69423
  args: [{ selector: 'pptx-presenter-view', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [NgStyle, SlideCanvasComponent, TranslatePipe], template: `
68920
69424
  @if (currentSlide(); as current) {
@@ -69430,10 +69934,10 @@ class PresenterWindowService {
69430
69934
  this.audienceWindow = null;
69431
69935
  this.sessionId = '';
69432
69936
  }
69433
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PresenterWindowService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
69434
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PresenterWindowService, providedIn: 'root' });
69937
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PresenterWindowService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
69938
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PresenterWindowService, providedIn: 'root' });
69435
69939
  }
69436
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PresenterWindowService, decorators: [{
69940
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PresenterWindowService, decorators: [{
69437
69941
  type: Injectable,
69438
69942
  args: [{ providedIn: 'root' }]
69439
69943
  }] });
@@ -69511,8 +70015,8 @@ class PrintSettingsPanelComponent {
69511
70015
  const target = event.target;
69512
70016
  this.settingsChange.emit({ frameSlides: target.checked });
69513
70017
  }
69514
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PrintSettingsPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
69515
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: PrintSettingsPanelComponent, isStandalone: true, selector: "pptx-print-settings-panel", inputs: { settings: { classPropertyName: "settings", publicName: "settings", isSignal: true, isRequired: true, transformFunction: null }, totalSlides: { classPropertyName: "totalSlides", publicName: "totalSlides", isSignal: true, isRequired: true, transformFunction: null }, activeSlideIndex: { classPropertyName: "activeSlideIndex", publicName: "activeSlideIndex", isSignal: true, isRequired: true, transformFunction: null } }, outputs: { settingsChange: "settingsChange" }, ngImport: i0, template: `
70018
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PrintSettingsPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
70019
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: PrintSettingsPanelComponent, isStandalone: true, selector: "pptx-print-settings-panel", inputs: { settings: { classPropertyName: "settings", publicName: "settings", isSignal: true, isRequired: true, transformFunction: null }, totalSlides: { classPropertyName: "totalSlides", publicName: "totalSlides", isSignal: true, isRequired: true, transformFunction: null }, activeSlideIndex: { classPropertyName: "activeSlideIndex", publicName: "activeSlideIndex", isSignal: true, isRequired: true, transformFunction: null } }, outputs: { settingsChange: "settingsChange" }, ngImport: i0, template: `
69516
70020
  <div class="pptx-ng-print-settings">
69517
70021
  <!-- Print What -->
69518
70022
  <fieldset class="pptx-ng-print-settings__group">
@@ -69653,7 +70157,7 @@ class PrintSettingsPanelComponent {
69653
70157
  </div>
69654
70158
  `, isInline: true, styles: [":host{display:block;flex:1;min-width:0}.pptx-ng-print-settings{display:flex;flex-direction:column;gap:1.25rem}.pptx-ng-print-settings__group{margin:0;padding:0;border:0}.pptx-ng-print-settings__legend{padding:0;margin-bottom:.5rem;font-size:.6875rem;font-weight:500;text-transform:uppercase;letter-spacing:.04em;color:#ffffff80}.pptx-ng-print-settings__grid2{display:grid;grid-template-columns:1fr 1fr;gap:.5rem}.pptx-ng-print-settings__stack{display:flex;flex-direction:column;gap:.5rem}.pptx-ng-print-settings__chips{display:flex;flex-wrap:wrap;gap:.375rem}.pptx-ng-print-settings__card{display:inline-flex;align-items:center;gap:.5rem;padding:.5rem .75rem;border:1px solid rgba(255,255,255,.15);border-radius:.5rem;background:#ffffff0a;color:#ffffffa6;font-size:.8125rem;cursor:pointer;transition:border-color .12s,background .12s,color .12s}.pptx-ng-print-settings__card--wide{width:100%;justify-content:flex-start}.pptx-ng-print-settings__card:hover{border-color:#3b82f680}.pptx-ng-print-settings__card--active{border-color:#3b82f6;background:#3b82f61f;color:#fff}.pptx-ng-print-settings__chip{min-width:2.25rem;padding:.375rem .75rem;border:1px solid rgba(255,255,255,.15);border-radius:.375rem;background:#ffffff0a;color:#ffffffa6;font-size:.8125rem;font-weight:500;cursor:pointer;transition:border-color .12s,background .12s,color .12s}.pptx-ng-print-settings__chip:hover{border-color:#3b82f680}.pptx-ng-print-settings__chip--active{border-color:#3b82f6;background:#3b82f61f;color:#fff}.pptx-ng-print-settings__range{display:flex;align-items:center;gap:.5rem;padding-left:1.5rem}.pptx-ng-print-settings__range-label{font-size:.75rem;color:#ffffff80}.pptx-ng-print-settings__number{width:4rem;padding:.25rem .5rem;border:1px solid rgba(255,255,255,.15);border-radius:.25rem;background:#ffffff0f;color:#e5e5e5;font-size:.8125rem;outline:none}.pptx-ng-print-settings__number:focus{border-color:#3b82f6}.pptx-ng-print-settings__check{display:inline-flex;align-items:center;gap:.5rem;color:#e5e5e5;font-size:.8125rem;cursor:pointer}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
69655
70159
  }
69656
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PrintSettingsPanelComponent, decorators: [{
70160
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PrintSettingsPanelComponent, decorators: [{
69657
70161
  type: Component,
69658
70162
  args: [{ selector: 'pptx-print-settings-panel', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
69659
70163
  <div class="pptx-ng-print-settings">
@@ -69923,8 +70427,8 @@ class PrintDialogComponent {
69923
70427
  this.onCancel();
69924
70428
  }
69925
70429
  }
69926
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PrintDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
69927
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.5", type: PrintDialogComponent, isStandalone: true, selector: "pptx-print-dialog", inputs: { slides: { classPropertyName: "slides", publicName: "slides", isSignal: true, isRequired: true, transformFunction: null }, activeSlideIndex: { classPropertyName: "activeSlideIndex", publicName: "activeSlideIndex", isSignal: true, isRequired: true, transformFunction: null }, defaultSlidesPerPage: { classPropertyName: "defaultSlidesPerPage", publicName: "defaultSlidesPerPage", isSignal: true, isRequired: false, transformFunction: null }, defaultFrameSlides: { classPropertyName: "defaultFrameSlides", publicName: "defaultFrameSlides", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { print: "print", cancel: "cancel" }, host: { listeners: { "document:keydown": "onKeydown($event)" } }, providers: [IsMobileService], ngImport: i0, template: `
70430
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PrintDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
70431
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.6", type: PrintDialogComponent, isStandalone: true, selector: "pptx-print-dialog", inputs: { slides: { classPropertyName: "slides", publicName: "slides", isSignal: true, isRequired: true, transformFunction: null }, activeSlideIndex: { classPropertyName: "activeSlideIndex", publicName: "activeSlideIndex", isSignal: true, isRequired: true, transformFunction: null }, defaultSlidesPerPage: { classPropertyName: "defaultSlidesPerPage", publicName: "defaultSlidesPerPage", isSignal: true, isRequired: false, transformFunction: null }, defaultFrameSlides: { classPropertyName: "defaultFrameSlides", publicName: "defaultFrameSlides", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { print: "print", cancel: "cancel" }, host: { listeners: { "document:keydown": "onKeydown($event)" } }, providers: [IsMobileService], ngImport: i0, template: `
69928
70432
  <div
69929
70433
  class="pptx-ng-print-dialog__backdrop"
69930
70434
  [class.is-mobile]="mobile.isMobile()"
@@ -69981,7 +70485,7 @@ class PrintDialogComponent {
69981
70485
  </div>
69982
70486
  `, isInline: true, styles: [".pptx-ng-print-dialog__backdrop{position:fixed;inset:0;z-index:1200;display:flex;align-items:center;justify-content:center;background:#0009;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px)}.pptx-ng-print-dialog{display:flex;flex-direction:column;width:780px;max-width:calc(100vw - 2rem);max-height:90vh;border:1px solid rgba(255,255,255,.12);border-radius:.75rem;background:#1e1e1e;color:#e5e5e5;box-shadow:0 20px 60px #0009}.pptx-ng-print-dialog__header{display:flex;align-items:center;justify-content:space-between;padding:1rem 1.25rem;border-bottom:1px solid rgba(255,255,255,.1)}.pptx-ng-print-dialog__title{margin:0;font-size:.875rem;font-weight:600;color:#fff}.pptx-ng-print-dialog__icon-btn{display:inline-flex;align-items:center;justify-content:center;width:1.75rem;height:1.75rem;padding:0;border:0;border-radius:.25rem;background:transparent;color:#fff9;font-size:.75rem;cursor:pointer;transition:background .12s,color .12s}.pptx-ng-print-dialog__icon-btn:hover{background:#ffffff1a;color:#fff}.pptx-ng-print-dialog__body{flex:1;overflow-y:auto;padding:1rem 1.25rem}.pptx-ng-print-dialog__footer{display:flex;align-items:center;justify-content:space-between;padding:.75rem 1.25rem;border-top:1px solid rgba(255,255,255,.1)}.pptx-ng-print-dialog__estimate{font-size:.75rem;color:#ffffff80}.pptx-ng-print-dialog__actions{display:flex;gap:.5rem}.pptx-ng-print-dialog__btn{padding:.5rem 1rem;border:1px solid rgba(255,255,255,.15);border-radius:.5rem;background:#ffffff0a;color:#ffffffb3;font-size:.8125rem;cursor:pointer;transition:background .12s,color .12s,border-color .12s}.pptx-ng-print-dialog__btn:hover{background:#ffffff1a;color:#fff}.pptx-ng-print-dialog__btn--primary{border-color:#3b82f6;background:#3b82f6;color:#fff}.pptx-ng-print-dialog__btn--primary:hover{background:#2f6fd6}.pptx-ng-print-dialog__backdrop.is-mobile{align-items:flex-end}.pptx-ng-print-dialog.is-mobile{width:100%;max-width:none;max-height:88dvh;border-left:none;border-right:none;border-bottom:none;border-top-left-radius:1rem;border-top-right-radius:1rem;border-bottom-left-radius:0;border-bottom-right-radius:0;padding-bottom:max(env(safe-area-inset-bottom),0px)}@media(max-width:767px),(pointer:coarse){.pptx-ng-print-dialog__backdrop{align-items:flex-end}.pptx-ng-print-dialog{width:100%;max-width:none;max-height:88dvh;border-left:none;border-right:none;border-bottom:none;border-top-left-radius:1rem;border-top-right-radius:1rem;border-bottom-left-radius:0;border-bottom-right-radius:0;padding-bottom:max(env(safe-area-inset-bottom),0px)}}\n"], dependencies: [{ kind: "component", type: PrintSettingsPanelComponent, selector: "pptx-print-settings-panel", inputs: ["settings", "totalSlides", "activeSlideIndex"], outputs: ["settingsChange"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
69983
70487
  }
69984
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PrintDialogComponent, decorators: [{
70488
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PrintDialogComponent, decorators: [{
69985
70489
  type: Component,
69986
70490
  args: [{ selector: 'pptx-print-dialog', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [PrintSettingsPanelComponent, TranslatePipe], providers: [IsMobileService], template: `
69987
70491
  <div
@@ -70183,10 +70687,10 @@ class PrintService {
70183
70687
  }, 300);
70184
70688
  return true;
70185
70689
  }
70186
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PrintService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
70187
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PrintService });
70690
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PrintService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
70691
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PrintService });
70188
70692
  }
70189
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PrintService, decorators: [{
70693
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PrintService, decorators: [{
70190
70694
  type: Injectable
70191
70695
  }] });
70192
70696
 
@@ -70307,8 +70811,8 @@ class PropertiesDialogComponent {
70307
70811
  });
70308
70812
  this.save.emit(patch);
70309
70813
  }
70310
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PropertiesDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
70311
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.5", type: PropertiesDialogComponent, isStandalone: true, selector: "pptx-properties-dialog", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, properties: { classPropertyName: "properties", publicName: "properties", isSignal: true, isRequired: true, transformFunction: null } }, outputs: { save: "save", close: "close" }, ngImport: i0, template: `
70814
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PropertiesDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
70815
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.6", type: PropertiesDialogComponent, isStandalone: true, selector: "pptx-properties-dialog", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, properties: { classPropertyName: "properties", publicName: "properties", isSignal: true, isRequired: true, transformFunction: null } }, outputs: { save: "save", close: "close" }, ngImport: i0, template: `
70312
70816
  <pptx-modal-dialog
70313
70817
  [open]="open()"
70314
70818
  [title]="'pptx.documentProperties.dialogTitle' | translate"
@@ -70398,7 +70902,7 @@ class PropertiesDialogComponent {
70398
70902
  </pptx-modal-dialog>
70399
70903
  `, isInline: true, styles: [".pptx-ng-props-form{display:flex;flex-direction:column;gap:.75rem}.pptx-ng-props-field{display:flex;flex-direction:column;gap:.375rem}.pptx-ng-props-label{font-size:.75rem;font-weight:500;color:var(--pptx-foreground, #e5e5e5)}.pptx-ng-props-input{width:100%;padding:.375rem .75rem;border-radius:.375rem;border:1px solid var(--pptx-border, #2a2a2a);background:var(--pptx-background, #111);color:var(--pptx-foreground, #e5e5e5);font-size:.8125rem}.pptx-ng-props-input:focus{outline:none;border-color:var(--pptx-primary, #6366f1);box-shadow:0 0 0 1px var(--pptx-primary, #6366f1)}.pptx-ng-props-meta{display:flex;flex-direction:column;gap:.375rem;padding-top:.5rem;border-top:1px solid var(--pptx-border, #2a2a2a)}.pptx-ng-props-meta-row{display:flex;justify-content:space-between;font-size:.75rem}.pptx-ng-props-meta-label{color:var(--pptx-muted-foreground, #9a9a9a)}.pptx-ng-props-meta-value{color:var(--pptx-foreground, #e5e5e5)}.pptx-ng-props-btn{padding:.375rem .75rem;border:none;border-radius:.375rem;background:var(--pptx-muted, #2a2a2a);color:var(--pptx-foreground, #e5e5e5);font-size:.75rem;cursor:pointer}.pptx-ng-props-btn-primary{background:var(--pptx-primary, #6366f1);color:var(--pptx-primary-foreground, #fff)}\n"], dependencies: [{ kind: "component", type: ModalDialogComponent, selector: "pptx-modal-dialog", inputs: ["open", "title"], outputs: ["close"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
70400
70904
  }
70401
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PropertiesDialogComponent, decorators: [{
70905
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PropertiesDialogComponent, decorators: [{
70402
70906
  type: Component,
70403
70907
  args: [{ selector: 'pptx-properties-dialog', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [ModalDialogComponent, TranslatePipe], template: `
70404
70908
  <pptx-modal-dialog
@@ -70555,8 +71059,8 @@ class RemoteSelectionOverlayComponent {
70555
71059
  return result;
70556
71060
  }, /* @ts-ignore */
70557
71061
  ...(ngDevMode ? [{ debugName: "boxes" }] : /* istanbul ignore next */ []));
70558
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RemoteSelectionOverlayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
70559
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: RemoteSelectionOverlayComponent, isStandalone: true, selector: "pptx-remote-selection-overlay", inputs: { presences: { classPropertyName: "presences", publicName: "presences", isSignal: true, isRequired: false, transformFunction: null }, elements: { classPropertyName: "elements", publicName: "elements", isSignal: true, isRequired: false, transformFunction: null }, activeSlideIndex: { classPropertyName: "activeSlideIndex", publicName: "activeSlideIndex", isSignal: true, isRequired: false, transformFunction: null }, zoom: { classPropertyName: "zoom", publicName: "zoom", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
71062
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RemoteSelectionOverlayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
71063
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: RemoteSelectionOverlayComponent, isStandalone: true, selector: "pptx-remote-selection-overlay", inputs: { presences: { classPropertyName: "presences", publicName: "presences", isSignal: true, isRequired: false, transformFunction: null }, elements: { classPropertyName: "elements", publicName: "elements", isSignal: true, isRequired: false, transformFunction: null }, activeSlideIndex: { classPropertyName: "activeSlideIndex", publicName: "activeSlideIndex", isSignal: true, isRequired: false, transformFunction: null }, zoom: { classPropertyName: "zoom", publicName: "zoom", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
70560
71064
  <div aria-hidden="true" data-export-ignore="true">
70561
71065
  @for (box of boxes(); track box.key) {
70562
71066
  <div
@@ -70575,7 +71079,7 @@ class RemoteSelectionOverlayComponent {
70575
71079
  </div>
70576
71080
  `, isInline: true, styles: [":host{position:absolute;inset:0;pointer-events:none;overflow:visible;z-index:9997}.pptx-ng-remote-selection{position:absolute;top:0;left:0;box-sizing:border-box;border:2px solid currentcolor;border-radius:2px;pointer-events:none;will-change:transform;transition:transform 90ms linear}.pptx-ng-remote-selection-label{position:absolute;top:-18px;left:-2px;max-width:150px;padding:1px 5px;border-radius:3px;color:#fff;font-family:system-ui,sans-serif;font-size:9px;font-weight:500;line-height:1.3;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
70577
71081
  }
70578
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RemoteSelectionOverlayComponent, decorators: [{
71082
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RemoteSelectionOverlayComponent, decorators: [{
70579
71083
  type: Component,
70580
71084
  args: [{ selector: 'pptx-remote-selection-overlay', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, template: `
70581
71085
  <div aria-hidden="true" data-export-ignore="true">
@@ -70620,6 +71124,23 @@ function patchTextStyle(editor, slideIndex, el, patch) {
70620
71124
  textStyle: { ...el.textStyle, ...patch },
70621
71125
  });
70622
71126
  }
71127
+ /**
71128
+ * Rewrite the selection's text characters (ribbon Aa "Change Case" dropdown).
71129
+ * Unlike {@link patchTextStyle}, this mutates content, not style.
71130
+ */
71131
+ function transformSelectedTextCase(editor, slideIndex, el, mode) {
71132
+ if (!el || !hasTextProperties(el)) {
71133
+ return;
71134
+ }
71135
+ const updates = {};
71136
+ if (el.textSegments && el.textSegments.length > 0) {
71137
+ updates.textSegments = el.textSegments.map((s) => s.isParagraphBreak || s.text === '\n' ? s : { ...s, text: transformTextCase(s.text, mode) });
71138
+ }
71139
+ if (typeof el.text === 'string') {
71140
+ updates.text = transformTextCase(el.text, mode);
71141
+ }
71142
+ editor.updateElement(slideIndex, el.id, updates);
71143
+ }
70623
71144
 
70624
71145
  /**
70625
71146
  * ribbon-animations-section.component.ts: the Animations ribbon tab (preview, the
@@ -70682,8 +71203,8 @@ class RibbonAnimationsSectionComponent {
70682
71203
  const updated = removeAnimation(slide.animations ?? [], el.id);
70683
71204
  this.editor.updateSlide(this.slideIndex(), { animations: updated });
70684
71205
  }
70685
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonAnimationsSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
70686
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: RibbonAnimationsSectionComponent, isStandalone: true, selector: "pptx-ribbon-animations-section", inputs: { slideIndex: { classPropertyName: "slideIndex", publicName: "slideIndex", isSignal: true, isRequired: false, transformFunction: null }, selectedElement: { classPropertyName: "selectedElement", publicName: "selectedElement", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { present: "present", toggleInspector: "toggleInspector" }, host: { classAttribute: "contents" }, ngImport: i0, template: `
71206
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonAnimationsSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
71207
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: RibbonAnimationsSectionComponent, isStandalone: true, selector: "pptx-ribbon-animations-section", inputs: { slideIndex: { classPropertyName: "slideIndex", publicName: "slideIndex", isSignal: true, isRequired: false, transformFunction: null }, selectedElement: { classPropertyName: "selectedElement", publicName: "selectedElement", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { present: "present", toggleInspector: "toggleInspector" }, host: { classAttribute: "contents" }, ngImport: i0, template: `
70687
71208
  <!-- Preview: plays presentation from this slide; no element-only preview API yet -->
70688
71209
  <button
70689
71210
  type="button"
@@ -70788,7 +71309,7 @@ class RibbonAnimationsSectionComponent {
70788
71309
  </button>
70789
71310
  `, isInline: true, dependencies: [{ kind: "component", type: LucidePlay, selector: "svg[lucidePlay]" }, { kind: "component", type: LucideSparkles, selector: "svg[lucideSparkles], svg[lucideStars]" }, { kind: "component", type: LucideChevronDown, selector: "svg[lucideChevronDown]" }, { kind: "component", type: LucideTrash2, selector: "svg[lucideTrash2]" }, { kind: "component", type: LucidePanelRight, selector: "svg[lucidePanelRight]" }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
70790
71311
  }
70791
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonAnimationsSectionComponent, decorators: [{
71312
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonAnimationsSectionComponent, decorators: [{
70792
71313
  type: Component,
70793
71314
  args: [{
70794
71315
  selector: 'pptx-ribbon-animations-section',
@@ -70949,8 +71470,8 @@ class RibbonArrangeSectionComponent {
70949
71470
  this.editor.updateElement(idx, id, patch);
70950
71471
  }
70951
71472
  }
70952
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonArrangeSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
70953
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.5", type: RibbonArrangeSectionComponent, isStandalone: true, selector: "pptx-ribbon-arrange-section", inputs: { slideIndex: { classPropertyName: "slideIndex", publicName: "slideIndex", isSignal: true, isRequired: false, transformFunction: null }, formatPainterActive: { classPropertyName: "formatPainterActive", publicName: "formatPainterActive", isSignal: true, isRequired: false, transformFunction: null }, canActivateFormatPainter: { classPropertyName: "canActivateFormatPainter", publicName: "canActivateFormatPainter", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { toggleFormatPainter: "toggleFormatPainter" }, host: { classAttribute: "contents" }, ngImport: i0, template: `
71473
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonArrangeSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
71474
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.6", type: RibbonArrangeSectionComponent, isStandalone: true, selector: "pptx-ribbon-arrange-section", inputs: { slideIndex: { classPropertyName: "slideIndex", publicName: "slideIndex", isSignal: true, isRequired: false, transformFunction: null }, formatPainterActive: { classPropertyName: "formatPainterActive", publicName: "formatPainterActive", isSignal: true, isRequired: false, transformFunction: null }, canActivateFormatPainter: { classPropertyName: "canActivateFormatPainter", publicName: "canActivateFormatPainter", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { toggleFormatPainter: "toggleFormatPainter" }, host: { classAttribute: "contents" }, ngImport: i0, template: `
70954
71475
  <!-- Order -->
70955
71476
  <div class="pptx-rb-grp">
70956
71477
  <button
@@ -71176,7 +71697,7 @@ class RibbonArrangeSectionComponent {
71176
71697
  </div>
71177
71698
  `, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: LucideTextAlignStart, selector: "svg[lucideTextAlignStart], svg[lucideText], svg[lucideAlignLeft]" }, { kind: "component", type: LucideTextAlignCenter, selector: "svg[lucideTextAlignCenter], svg[lucideAlignCenter]" }, { kind: "component", type: LucideTextAlignEnd, selector: "svg[lucideTextAlignEnd], svg[lucideAlignRight]" }, { kind: "component", type: LucideChevronUp, selector: "svg[lucideChevronUp]" }, { kind: "component", type: LucideChevronDown, selector: "svg[lucideChevronDown]" }, { kind: "component", type: LucideAlignHorizontalSpaceAround, selector: "svg[lucideAlignHorizontalSpaceAround]" }, { kind: "component", type: LucideAlignVerticalSpaceAround, selector: "svg[lucideAlignVerticalSpaceAround]" }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
71178
71699
  }
71179
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonArrangeSectionComponent, decorators: [{
71700
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonArrangeSectionComponent, decorators: [{
71180
71701
  type: Component,
71181
71702
  args: [{
71182
71703
  selector: 'pptx-ribbon-arrange-section',
@@ -71433,8 +71954,8 @@ class RibbonDesignSectionComponent {
71433
71954
  toggleThemeGallery = output();
71434
71955
  info = output();
71435
71956
  toggleInspector = output();
71436
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonDesignSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
71437
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.5", type: RibbonDesignSectionComponent, isStandalone: true, selector: "pptx-ribbon-design-section", inputs: { themeGalleryOpen: { classPropertyName: "themeGalleryOpen", publicName: "themeGalleryOpen", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { toggleThemeGallery: "toggleThemeGallery", info: "info", toggleInspector: "toggleInspector" }, host: { classAttribute: "contents" }, ngImport: i0, template: `
71957
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonDesignSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
71958
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.6", type: RibbonDesignSectionComponent, isStandalone: true, selector: "pptx-ribbon-design-section", inputs: { themeGalleryOpen: { classPropertyName: "themeGalleryOpen", publicName: "themeGalleryOpen", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { toggleThemeGallery: "toggleThemeGallery", info: "info", toggleInspector: "toggleInspector" }, host: { classAttribute: "contents" }, ngImport: i0, template: `
71438
71959
  <!-- Themes -->
71439
71960
  <button
71440
71961
  type="button"
@@ -71473,7 +71994,7 @@ class RibbonDesignSectionComponent {
71473
71994
  </button>
71474
71995
  `, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
71475
71996
  }
71476
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonDesignSectionComponent, decorators: [{
71997
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonDesignSectionComponent, decorators: [{
71477
71998
  type: Component,
71478
71999
  args: [{
71479
72000
  selector: 'pptx-ribbon-design-section',
@@ -71558,8 +72079,8 @@ class RibbonDrawSectionComponent {
71558
72079
  const width = Number(event.target.value);
71559
72080
  this.drawToolChange.emit({ tool: this.activeTool(), color: this.drawingColor(), width });
71560
72081
  }
71561
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonDrawSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
71562
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: RibbonDrawSectionComponent, isStandalone: true, selector: "pptx-ribbon-draw-section", inputs: { activeTool: { classPropertyName: "activeTool", publicName: "activeTool", isSignal: true, isRequired: false, transformFunction: null }, drawingColor: { classPropertyName: "drawingColor", publicName: "drawingColor", isSignal: true, isRequired: false, transformFunction: null }, drawingWidth: { classPropertyName: "drawingWidth", publicName: "drawingWidth", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { drawToolChange: "drawToolChange" }, host: { classAttribute: "contents" }, ngImport: i0, template: `
72082
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonDrawSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
72083
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: RibbonDrawSectionComponent, isStandalone: true, selector: "pptx-ribbon-draw-section", inputs: { activeTool: { classPropertyName: "activeTool", publicName: "activeTool", isSignal: true, isRequired: false, transformFunction: null }, drawingColor: { classPropertyName: "drawingColor", publicName: "drawingColor", isSignal: true, isRequired: false, transformFunction: null }, drawingWidth: { classPropertyName: "drawingWidth", publicName: "drawingWidth", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { drawToolChange: "drawToolChange" }, host: { classAttribute: "contents" }, ngImport: i0, template: `
71563
72084
  <!--
71564
72085
  Draw tool state is held in the parent ribbon and pushed up via
71565
72086
  drawToolChange; power-point-viewer.component.ts consumes it and appends
@@ -71628,7 +72149,7 @@ class RibbonDrawSectionComponent {
71628
72149
  </label>
71629
72150
  `, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: LucideMoveRight, selector: "svg[lucideMoveRight]" }, { kind: "component", type: LucidePencil, selector: "svg[lucidePencil]" }, { kind: "component", type: LucideType, selector: "svg[lucideType]" }, { kind: "component", type: LucideMinus, selector: "svg[lucideMinus]" }, { kind: "component", type: LucideSpline, selector: "svg[lucideSpline]" }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
71630
72151
  }
71631
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonDrawSectionComponent, decorators: [{
72152
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonDrawSectionComponent, decorators: [{
71632
72153
  type: Component,
71633
72154
  args: [{
71634
72155
  selector: 'pptx-ribbon-draw-section',
@@ -71756,8 +72277,8 @@ class RibbonDrawingGroupComponent {
71756
72277
  this.arrangeOpen.set(false);
71757
72278
  this.moveLayerToEdge.emit(edge);
71758
72279
  }
71759
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonDrawingGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
71760
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: RibbonDrawingGroupComponent, isStandalone: true, selector: "pptx-ribbon-drawing-group", inputs: { canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { shapeInsert: "shapeInsert", moveLayer: "moveLayer", moveLayerToEdge: "moveLayerToEdge" }, host: { classAttribute: "contents" }, ngImport: i0, template: `
72280
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonDrawingGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
72281
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: RibbonDrawingGroupComponent, isStandalone: true, selector: "pptx-ribbon-drawing-group", inputs: { canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { shapeInsert: "shapeInsert", moveLayer: "moveLayer", moveLayerToEdge: "moveLayerToEdge" }, host: { classAttribute: "contents" }, ngImport: i0, template: `
71761
72282
  <!-- Shapes -->
71762
72283
  <div class="flex flex-col items-center gap-0.5">
71763
72284
  <div class="pptx-rb-grp">
@@ -71858,7 +72379,7 @@ class RibbonDrawingGroupComponent {
71858
72379
  </div>
71859
72380
  `, isInline: true, dependencies: [{ kind: "component", type: LucideChevronDown, selector: "svg[lucideChevronDown]" }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
71860
72381
  }
71861
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonDrawingGroupComponent, decorators: [{
72382
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonDrawingGroupComponent, decorators: [{
71862
72383
  type: Component,
71863
72384
  args: [{
71864
72385
  selector: 'pptx-ribbon-drawing-group',
@@ -71993,8 +72514,8 @@ class RibbonFileSectionComponent {
71993
72514
  openPassword = output();
71994
72515
  openFontEmbedding = output();
71995
72516
  openVersionHistory = output();
71996
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonFileSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
71997
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.5", type: RibbonFileSectionComponent, isStandalone: true, selector: "pptx-ribbon-file-section", inputs: { slideCount: { classPropertyName: "slideCount", publicName: "slideCount", isSignal: true, isRequired: false, transformFunction: null }, exporting: { classPropertyName: "exporting", publicName: "exporting", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { openFile: "openFile", save: "save", exportPng: "exportPng", exportPdf: "exportPdf", exportGif: "exportGif", exportVideo: "exportVideo", print: "print", info: "info", signatures: "signatures", replace: "replace", openPassword: "openPassword", openFontEmbedding: "openFontEmbedding", openVersionHistory: "openVersionHistory" }, host: { classAttribute: "contents" }, ngImport: i0, template: `
72517
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonFileSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
72518
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.6", type: RibbonFileSectionComponent, isStandalone: true, selector: "pptx-ribbon-file-section", inputs: { slideCount: { classPropertyName: "slideCount", publicName: "slideCount", isSignal: true, isRequired: false, transformFunction: null }, exporting: { classPropertyName: "exporting", publicName: "exporting", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { openFile: "openFile", save: "save", exportPng: "exportPng", exportPdf: "exportPdf", exportGif: "exportGif", exportVideo: "exportVideo", print: "print", info: "info", signatures: "signatures", replace: "replace", openPassword: "openPassword", openFontEmbedding: "openFontEmbedding", openVersionHistory: "openVersionHistory" }, host: { classAttribute: "contents" }, ngImport: i0, template: `
71998
72519
  <button
71999
72520
  type="button"
72000
72521
  class="pptx-rb-pill"
@@ -72091,7 +72612,7 @@ class RibbonFileSectionComponent {
72091
72612
  </button>
72092
72613
  `, isInline: true, dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
72093
72614
  }
72094
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonFileSectionComponent, decorators: [{
72615
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonFileSectionComponent, decorators: [{
72095
72616
  type: Component,
72096
72617
  args: [{
72097
72618
  selector: 'pptx-ribbon-file-section',
@@ -72217,8 +72738,8 @@ class RibbonColorPopoverComponent {
72217
72738
  swatchAriaKey = input('', /* @ts-ignore */
72218
72739
  ...(ngDevMode ? [{ debugName: "swatchAriaKey" }] : /* istanbul ignore next */ []));
72219
72740
  pick = output();
72220
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonColorPopoverComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
72221
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: RibbonColorPopoverComponent, isStandalone: true, selector: "pptx-ribbon-color-popover", inputs: { current: { classPropertyName: "current", publicName: "current", isSignal: true, isRequired: false, transformFunction: null }, presets: { classPropertyName: "presets", publicName: "presets", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, titleKey: { classPropertyName: "titleKey", publicName: "titleKey", isSignal: true, isRequired: false, transformFunction: null }, swatchAriaKey: { classPropertyName: "swatchAriaKey", publicName: "swatchAriaKey", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { pick: "pick" }, ngImport: i0, template: `
72741
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonColorPopoverComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
72742
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: RibbonColorPopoverComponent, isStandalone: true, selector: "pptx-ribbon-color-popover", inputs: { current: { classPropertyName: "current", publicName: "current", isSignal: true, isRequired: false, transformFunction: null }, presets: { classPropertyName: "presets", publicName: "presets", isSignal: true, isRequired: false, transformFunction: null }, disabled: { classPropertyName: "disabled", publicName: "disabled", isSignal: true, isRequired: false, transformFunction: null }, titleKey: { classPropertyName: "titleKey", publicName: "titleKey", isSignal: true, isRequired: false, transformFunction: null }, swatchAriaKey: { classPropertyName: "swatchAriaKey", publicName: "swatchAriaKey", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { pick: "pick" }, ngImport: i0, template: `
72222
72743
  <div class="group relative">
72223
72744
  <button
72224
72745
  type="button"
@@ -72265,7 +72786,7 @@ class RibbonColorPopoverComponent {
72265
72786
  </div>
72266
72787
  `, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
72267
72788
  }
72268
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonColorPopoverComponent, decorators: [{
72789
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonColorPopoverComponent, decorators: [{
72269
72790
  type: Component,
72270
72791
  args: [{
72271
72792
  selector: 'pptx-ribbon-color-popover',
@@ -72440,17 +72961,7 @@ class RibbonFontControlsComponent {
72440
72961
  }
72441
72962
  setChangeCase(event) {
72442
72963
  const value = event.target.value;
72443
- switch (value) {
72444
- case 'upper':
72445
- this.patch({ textCaps: 'all' });
72446
- break;
72447
- case 'lower':
72448
- case 'sentence':
72449
- case 'capitalize':
72450
- case 'toggle':
72451
- this.patch({ textCaps: 'none' });
72452
- break;
72453
- }
72964
+ transformSelectedTextCase(this.editor, this.slideIndex(), this.selectedElement(), value);
72454
72965
  event.target.selectedIndex = 0;
72455
72966
  }
72456
72967
  toggleStyle(key) {
@@ -72488,8 +72999,8 @@ class RibbonFontControlsComponent {
72488
72999
  patch(patch) {
72489
73000
  patchTextStyle(this.editor, this.slideIndex(), this.selectedElement(), patch);
72490
73001
  }
72491
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonFontControlsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
72492
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: RibbonFontControlsComponent, isStandalone: true, selector: "pptx-ribbon-font-controls", inputs: { slideIndex: { classPropertyName: "slideIndex", publicName: "slideIndex", isSignal: true, isRequired: false, transformFunction: null }, selectedElement: { classPropertyName: "selectedElement", publicName: "selectedElement", isSignal: true, isRequired: false, transformFunction: null } }, host: { classAttribute: "contents" }, ngImport: i0, template: `
73002
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonFontControlsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
73003
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: RibbonFontControlsComponent, isStandalone: true, selector: "pptx-ribbon-font-controls", inputs: { slideIndex: { classPropertyName: "slideIndex", publicName: "slideIndex", isSignal: true, isRequired: false, transformFunction: null }, selectedElement: { classPropertyName: "selectedElement", publicName: "selectedElement", isSignal: true, isRequired: false, transformFunction: null } }, host: { classAttribute: "contents" }, ngImport: i0, template: `
72493
73004
  <div class="flex items-center gap-1">
72494
73005
  <select
72495
73006
  class="pptx-rb-select w-28"
@@ -72653,7 +73164,7 @@ class RibbonFontControlsComponent {
72653
73164
  </pptx-ribbon-color-popover>
72654
73165
  `, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: RibbonColorPopoverComponent, selector: "pptx-ribbon-color-popover", inputs: ["current", "presets", "disabled", "titleKey", "swatchAriaKey"], outputs: ["pick"] }, { kind: "component", type: LucideAArrowUp, selector: "svg[lucideAArrowUp]" }, { kind: "component", type: LucideAArrowDown, selector: "svg[lucideAArrowDown]" }, { kind: "component", type: LucideRemoveFormatting, selector: "svg[lucideRemoveFormatting]" }, { kind: "component", type: LucideHighlighter, selector: "svg[lucideHighlighter]" }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
72655
73166
  }
72656
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonFontControlsComponent, decorators: [{
73167
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonFontControlsComponent, decorators: [{
72657
73168
  type: Component,
72658
73169
  args: [{
72659
73170
  selector: 'pptx-ribbon-font-controls',
@@ -72843,8 +73354,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImpor
72843
73354
  class RibbonEditingSectionComponent {
72844
73355
  toggleFindReplace = output();
72845
73356
  selectAll = output();
72846
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonEditingSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
72847
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.5", type: RibbonEditingSectionComponent, isStandalone: true, selector: "pptx-ribbon-editing-section", outputs: { toggleFindReplace: "toggleFindReplace", selectAll: "selectAll" }, host: { classAttribute: "contents" }, ngImport: i0, template: `
73357
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonEditingSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
73358
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "22.0.6", type: RibbonEditingSectionComponent, isStandalone: true, selector: "pptx-ribbon-editing-section", outputs: { toggleFindReplace: "toggleFindReplace", selectAll: "selectAll" }, host: { classAttribute: "contents" }, ngImport: i0, template: `
72848
73359
  <div class="pptx-rb-grp">
72849
73360
  <button
72850
73361
  type="button"
@@ -72873,7 +73384,7 @@ class RibbonEditingSectionComponent {
72873
73384
  </div>
72874
73385
  `, isInline: true, dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
72875
73386
  }
72876
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonEditingSectionComponent, decorators: [{
73387
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonEditingSectionComponent, decorators: [{
72877
73388
  type: Component,
72878
73389
  args: [{
72879
73390
  selector: 'pptx-ribbon-editing-section',
@@ -72980,8 +73491,8 @@ class RibbonParagraphControlsComponent {
72980
73491
  patch(patch) {
72981
73492
  patchTextStyle(this.editor, this.slideIndex(), this.selectedElement(), patch);
72982
73493
  }
72983
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonParagraphControlsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
72984
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: RibbonParagraphControlsComponent, isStandalone: true, selector: "pptx-ribbon-paragraph-controls", inputs: { slideIndex: { classPropertyName: "slideIndex", publicName: "slideIndex", isSignal: true, isRequired: false, transformFunction: null }, selectedElement: { classPropertyName: "selectedElement", publicName: "selectedElement", isSignal: true, isRequired: false, transformFunction: null } }, host: { classAttribute: "contents" }, ngImport: i0, template: `
73494
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonParagraphControlsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
73495
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: RibbonParagraphControlsComponent, isStandalone: true, selector: "pptx-ribbon-paragraph-controls", inputs: { slideIndex: { classPropertyName: "slideIndex", publicName: "slideIndex", isSignal: true, isRequired: false, transformFunction: null }, selectedElement: { classPropertyName: "selectedElement", publicName: "selectedElement", isSignal: true, isRequired: false, transformFunction: null } }, host: { classAttribute: "contents" }, ngImport: i0, template: `
72985
73496
  <!-- List style: bullets + numbering -->
72986
73497
  <div class="pptx-rb-grp">
72987
73498
  <button
@@ -73106,7 +73617,7 @@ class RibbonParagraphControlsComponent {
73106
73617
  </select>
73107
73618
  `, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: LucideList, selector: "svg[lucideList]" }, { kind: "component", type: LucideListOrdered, selector: "svg[lucideListOrdered]" }, { kind: "component", type: LucideListIndentDecrease, selector: "svg[lucideListIndentDecrease], svg[lucideOutdent], svg[lucideIndentDecrease]" }, { kind: "component", type: LucideListIndentIncrease, selector: "svg[lucideListIndentIncrease], svg[lucideIndent], svg[lucideIndentIncrease]" }, { kind: "component", type: LucideTextAlignStart, selector: "svg[lucideTextAlignStart], svg[lucideText], svg[lucideAlignLeft]" }, { kind: "component", type: LucideTextAlignCenter, selector: "svg[lucideTextAlignCenter], svg[lucideAlignCenter]" }, { kind: "component", type: LucideTextAlignEnd, selector: "svg[lucideTextAlignEnd], svg[lucideAlignRight]" }, { kind: "component", type: LucideTextAlignJustify, selector: "svg[lucideTextAlignJustify], svg[lucideAlignJustify]" }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
73108
73619
  }
73109
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonParagraphControlsComponent, decorators: [{
73620
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonParagraphControlsComponent, decorators: [{
73110
73621
  type: Component,
73111
73622
  args: [{
73112
73623
  selector: 'pptx-ribbon-paragraph-controls',
@@ -73288,8 +73799,8 @@ class RibbonHomeSectionComponent {
73288
73799
  onSelectAll() {
73289
73800
  this.editor.selectAll(this.slideIndex());
73290
73801
  }
73291
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonHomeSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
73292
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.5", type: RibbonHomeSectionComponent, isStandalone: true, selector: "pptx-ribbon-home-section", inputs: { slideIndex: { classPropertyName: "slideIndex", publicName: "slideIndex", isSignal: true, isRequired: false, transformFunction: null }, selectedElement: { classPropertyName: "selectedElement", publicName: "selectedElement", isSignal: true, isRequired: false, transformFunction: null }, formatPainterActive: { classPropertyName: "formatPainterActive", publicName: "formatPainterActive", isSignal: true, isRequired: false, transformFunction: null }, canActivateFormatPainter: { classPropertyName: "canActivateFormatPainter", publicName: "canActivateFormatPainter", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { toggleFormatPainter: "toggleFormatPainter", findReplace: "findReplace", applyLayout: "applyLayout", resetSlide: "resetSlide", addSection: "addSection" }, host: { classAttribute: "contents" }, ngImport: i0, template: `
73802
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonHomeSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
73803
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.6", type: RibbonHomeSectionComponent, isStandalone: true, selector: "pptx-ribbon-home-section", inputs: { slideIndex: { classPropertyName: "slideIndex", publicName: "slideIndex", isSignal: true, isRequired: false, transformFunction: null }, selectedElement: { classPropertyName: "selectedElement", publicName: "selectedElement", isSignal: true, isRequired: false, transformFunction: null }, formatPainterActive: { classPropertyName: "formatPainterActive", publicName: "formatPainterActive", isSignal: true, isRequired: false, transformFunction: null }, canActivateFormatPainter: { classPropertyName: "canActivateFormatPainter", publicName: "canActivateFormatPainter", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { toggleFormatPainter: "toggleFormatPainter", findReplace: "findReplace", applyLayout: "applyLayout", resetSlide: "resetSlide", addSection: "addSection" }, host: { classAttribute: "contents" }, ngImport: i0, template: `
73293
73804
  <!-- Clipboard -->
73294
73805
  <div class="flex flex-col items-center gap-0.5">
73295
73806
  <div class="pptx-rb-grp">
@@ -73424,7 +73935,7 @@ class RibbonHomeSectionComponent {
73424
73935
  </div>
73425
73936
  `, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: LucidePlus, selector: "svg[lucidePlus]" }, { kind: "component", type: RibbonFontControlsComponent, selector: "pptx-ribbon-font-controls", inputs: ["slideIndex", "selectedElement"] }, { kind: "component", type: RibbonParagraphControlsComponent, selector: "pptx-ribbon-paragraph-controls", inputs: ["slideIndex", "selectedElement"] }, { kind: "component", type: RibbonEditingSectionComponent, selector: "pptx-ribbon-editing-section", outputs: ["toggleFindReplace", "selectAll"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
73426
73937
  }
73427
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonHomeSectionComponent, decorators: [{
73938
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonHomeSectionComponent, decorators: [{
73428
73939
  type: Component,
73429
73940
  args: [{
73430
73941
  selector: 'pptx-ribbon-home-section',
@@ -73732,8 +74243,8 @@ class RibbonInsertFieldsComponent {
73732
74243
  previewTime() {
73733
74244
  return this.previewDate().toLocaleString();
73734
74245
  }
73735
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonInsertFieldsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
73736
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: RibbonInsertFieldsComponent, isStandalone: true, selector: "pptx-ribbon-insert-fields", inputs: { slideIndex: { classPropertyName: "slideIndex", publicName: "slideIndex", isSignal: true, isRequired: false, transformFunction: null } }, host: { classAttribute: "contents" }, ngImport: i0, template: `
74246
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonInsertFieldsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
74247
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: RibbonInsertFieldsComponent, isStandalone: true, selector: "pptx-ribbon-insert-fields", inputs: { slideIndex: { classPropertyName: "slideIndex", publicName: "slideIndex", isSignal: true, isRequired: false, transformFunction: null } }, host: { classAttribute: "contents" }, ngImport: i0, template: `
73737
74248
  <!-- Action Buttons dropdown (hover-reveal, mirrors React/Vue) -->
73738
74249
  <div class="group relative">
73739
74250
  <button
@@ -73886,7 +74397,7 @@ class RibbonInsertFieldsComponent {
73886
74397
  }
73887
74398
  `, isInline: true, dependencies: [{ kind: "component", type: LucideChevronDown, selector: "svg[lucideChevronDown]" }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
73888
74399
  }
73889
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonInsertFieldsComponent, decorators: [{
74400
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonInsertFieldsComponent, decorators: [{
73890
74401
  type: Component,
73891
74402
  args: [{
73892
74403
  selector: 'pptx-ribbon-insert-fields',
@@ -74172,8 +74683,8 @@ class RibbonInsertSectionComponent {
74172
74683
  document.body.appendChild(fileInput);
74173
74684
  fileInput.click();
74174
74685
  }
74175
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonInsertSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
74176
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: RibbonInsertSectionComponent, isStandalone: true, selector: "pptx-ribbon-insert-section", inputs: { slideIndex: { classPropertyName: "slideIndex", publicName: "slideIndex", isSignal: true, isRequired: false, transformFunction: null }, newChartType: { classPropertyName: "newChartType", publicName: "newChartType", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { openSmartArtDialog: "openSmartArtDialog", openEquationDialog: "openEquationDialog", chartTypeChange: "chartTypeChange" }, host: { classAttribute: "contents" }, ngImport: i0, template: `
74686
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonInsertSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
74687
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: RibbonInsertSectionComponent, isStandalone: true, selector: "pptx-ribbon-insert-section", inputs: { slideIndex: { classPropertyName: "slideIndex", publicName: "slideIndex", isSignal: true, isRequired: false, transformFunction: null }, newChartType: { classPropertyName: "newChartType", publicName: "newChartType", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { openSmartArtDialog: "openSmartArtDialog", openEquationDialog: "openEquationDialog", chartTypeChange: "chartTypeChange" }, host: { classAttribute: "contents" }, ngImport: i0, template: `
74177
74688
  <!-- Shapes group -->
74178
74689
  <div class="pptx-rb-grp">
74179
74690
  <button
@@ -74301,7 +74812,7 @@ class RibbonInsertSectionComponent {
74301
74812
  <pptx-ribbon-insert-fields [slideIndex]="slideIndex()" />
74302
74813
  `, isInline: true, dependencies: [{ kind: "component", type: RibbonInsertFieldsComponent, selector: "pptx-ribbon-insert-fields", inputs: ["slideIndex"] }, { kind: "component", type: LucideSquare, selector: "svg[lucideSquare]" }, { kind: "component", type: LucideCircle, selector: "svg[lucideCircle]" }, { kind: "component", type: LucideSlash, selector: "svg[lucideSlash]" }, { kind: "component", type: LucideImage, selector: "svg[lucideImage]" }, { kind: "component", type: LucideVideo, selector: "svg[lucideVideo]" }, { kind: "component", type: LucideDatabase, selector: "svg[lucideDatabase]" }, { kind: "component", type: LucideLayers, selector: "svg[lucideLayers], svg[lucideLayers3]" }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
74303
74814
  }
74304
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonInsertSectionComponent, decorators: [{
74815
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonInsertSectionComponent, decorators: [{
74305
74816
  type: Component,
74306
74817
  args: [{
74307
74818
  selector: 'pptx-ribbon-insert-section',
@@ -74538,8 +75049,8 @@ class RibbonPrimaryRowComponent {
74538
75049
  break;
74539
75050
  }
74540
75051
  }
74541
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonPrimaryRowComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
74542
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: RibbonPrimaryRowComponent, isStandalone: true, selector: "pptx-ribbon-primary-row", inputs: { slideCount: { classPropertyName: "slideCount", publicName: "slideCount", isSignal: true, isRequired: false, transformFunction: null }, sidebarCollapsed: { classPropertyName: "sidebarCollapsed", publicName: "sidebarCollapsed", isSignal: true, isRequired: false, transformFunction: null }, inspectorOpen: { classPropertyName: "inspectorOpen", publicName: "inspectorOpen", isSignal: true, isRequired: false, transformFunction: null }, commentsOpen: { classPropertyName: "commentsOpen", publicName: "commentsOpen", isSignal: true, isRequired: false, transformFunction: null }, commentCount: { classPropertyName: "commentCount", publicName: "commentCount", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { toggleSidebar: "toggleSidebar", toggleComments: "toggleComments", present: "present", presenter: "presenter", broadcast: "broadcast", openCustomShows: "openCustomShows", toggleInspector: "toggleInspector", exportPng: "exportPng", exportPdf: "exportPdf", exportGif: "exportGif", exportVideo: "exportVideo", print: "print", info: "info", a11y: "a11y", save: "save" }, ngImport: i0, template: `
75052
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonPrimaryRowComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
75053
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: RibbonPrimaryRowComponent, isStandalone: true, selector: "pptx-ribbon-primary-row", inputs: { slideCount: { classPropertyName: "slideCount", publicName: "slideCount", isSignal: true, isRequired: false, transformFunction: null }, sidebarCollapsed: { classPropertyName: "sidebarCollapsed", publicName: "sidebarCollapsed", isSignal: true, isRequired: false, transformFunction: null }, inspectorOpen: { classPropertyName: "inspectorOpen", publicName: "inspectorOpen", isSignal: true, isRequired: false, transformFunction: null }, commentsOpen: { classPropertyName: "commentsOpen", publicName: "commentsOpen", isSignal: true, isRequired: false, transformFunction: null }, commentCount: { classPropertyName: "commentCount", publicName: "commentCount", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { toggleSidebar: "toggleSidebar", toggleComments: "toggleComments", present: "present", presenter: "presenter", broadcast: "broadcast", openCustomShows: "openCustomShows", toggleInspector: "toggleInspector", exportPng: "exportPng", exportPdf: "exportPdf", exportGif: "exportGif", exportVideo: "exportVideo", print: "print", info: "info", a11y: "a11y", save: "save" }, ngImport: i0, template: `
74543
75054
  <div class="flex items-center gap-0.5 px-1.5 py-0.5">
74544
75055
  <!-- Left: slides pane toggle (undo/redo/find moved to the title bar) -->
74545
75056
  <button
@@ -74684,7 +75195,7 @@ class RibbonPrimaryRowComponent {
74684
75195
  </div>
74685
75196
  `, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: LucidePanelLeft, selector: "svg[lucidePanelLeft], svg[lucideSidebar]" }, { kind: "component", type: LucidePanelRight, selector: "svg[lucidePanelRight]" }, { kind: "component", type: LucideMessageSquare, selector: "svg[lucideMessageSquare]" }, { kind: "component", type: LucidePlay, selector: "svg[lucidePlay]" }, { kind: "component", type: LucideChevronDown, selector: "svg[lucideChevronDown]" }, { kind: "component", type: LucidePlus, selector: "svg[lucidePlus]" }, { kind: "component", type: LucideEllipsis, selector: "svg[lucideEllipsis], svg[lucideMoreHorizontal]" }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
74686
75197
  }
74687
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonPrimaryRowComponent, decorators: [{
75198
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonPrimaryRowComponent, decorators: [{
74688
75199
  type: Component,
74689
75200
  args: [{
74690
75201
  selector: 'pptx-ribbon-primary-row',
@@ -74864,8 +75375,8 @@ class RibbonReviewSectionComponent {
74864
75375
  hasSel() {
74865
75376
  return this.editor.selectedIds().length > 0;
74866
75377
  }
74867
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonReviewSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
74868
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: RibbonReviewSectionComponent, isStandalone: true, selector: "pptx-ribbon-review-section", outputs: { comments: "comments", spelling: "spelling", a11y: "a11y", openCompare: "openCompare", language: "language", link: "link" }, host: { classAttribute: "contents" }, ngImport: i0, template: `
75378
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonReviewSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
75379
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: RibbonReviewSectionComponent, isStandalone: true, selector: "pptx-ribbon-review-section", outputs: { comments: "comments", spelling: "spelling", a11y: "a11y", openCompare: "openCompare", language: "language", link: "link" }, host: { classAttribute: "contents" }, ngImport: i0, template: `
74869
75380
  <button type="button" class="pptx-rb-pill" (click)="comments.emit()">
74870
75381
  {{ 'pptx.toolbar.comments' | translate }}
74871
75382
  </button>
@@ -74909,7 +75420,7 @@ class RibbonReviewSectionComponent {
74909
75420
  }
74910
75421
  `, isInline: true, dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
74911
75422
  }
74912
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonReviewSectionComponent, decorators: [{
75423
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonReviewSectionComponent, decorators: [{
74913
75424
  type: Component,
74914
75425
  args: [{
74915
75426
  selector: 'pptx-ribbon-review-section',
@@ -74976,8 +75487,8 @@ class RibbonSlideshowSectionComponent {
74976
75487
  broadcast = output();
74977
75488
  openCustomShows = output();
74978
75489
  openSetUpSlideShow = output();
74979
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonSlideshowSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
74980
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.5", type: RibbonSlideshowSectionComponent, isStandalone: true, selector: "pptx-ribbon-slideshow-section", inputs: { slideCount: { classPropertyName: "slideCount", publicName: "slideCount", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { present: "present", presenter: "presenter", broadcast: "broadcast", openCustomShows: "openCustomShows", openSetUpSlideShow: "openSetUpSlideShow" }, host: { classAttribute: "contents" }, ngImport: i0, template: `
75490
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonSlideshowSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
75491
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.6", type: RibbonSlideshowSectionComponent, isStandalone: true, selector: "pptx-ribbon-slideshow-section", inputs: { slideCount: { classPropertyName: "slideCount", publicName: "slideCount", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { present: "present", presenter: "presenter", broadcast: "broadcast", openCustomShows: "openCustomShows", openSetUpSlideShow: "openSetUpSlideShow" }, host: { classAttribute: "contents" }, ngImport: i0, template: `
74981
75492
  <button
74982
75493
  type="button"
74983
75494
  class="pptx-rb-pill"
@@ -75010,7 +75521,7 @@ class RibbonSlideshowSectionComponent {
75010
75521
  </button>
75011
75522
  `, isInline: true, dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
75012
75523
  }
75013
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonSlideshowSectionComponent, decorators: [{
75524
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonSlideshowSectionComponent, decorators: [{
75014
75525
  type: Component,
75015
75526
  args: [{
75016
75527
  selector: 'pptx-ribbon-slideshow-section',
@@ -75130,8 +75641,8 @@ class RibbonTransitionsSectionComponent {
75130
75641
  });
75131
75642
  }
75132
75643
  }
75133
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonTransitionsSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
75134
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: RibbonTransitionsSectionComponent, isStandalone: true, selector: "pptx-ribbon-transitions-section", inputs: { slideIndex: { classPropertyName: "slideIndex", publicName: "slideIndex", isSignal: true, isRequired: false, transformFunction: null }, selectedTransition: { classPropertyName: "selectedTransition", publicName: "selectedTransition", isSignal: true, isRequired: false, transformFunction: null }, transitionDurationSec: { classPropertyName: "transitionDurationSec", publicName: "transitionDurationSec", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { present: "present", toggleInspector: "toggleInspector", transitionChange: "transitionChange", durationChange: "durationChange" }, host: { classAttribute: "contents" }, ngImport: i0, template: `
75644
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonTransitionsSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
75645
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: RibbonTransitionsSectionComponent, isStandalone: true, selector: "pptx-ribbon-transitions-section", inputs: { slideIndex: { classPropertyName: "slideIndex", publicName: "slideIndex", isSignal: true, isRequired: false, transformFunction: null }, selectedTransition: { classPropertyName: "selectedTransition", publicName: "selectedTransition", isSignal: true, isRequired: false, transformFunction: null }, transitionDurationSec: { classPropertyName: "transitionDurationSec", publicName: "transitionDurationSec", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { present: "present", toggleInspector: "toggleInspector", transitionChange: "transitionChange", durationChange: "durationChange" }, host: { classAttribute: "contents" }, ngImport: i0, template: `
75135
75646
  <!-- Preview (fires existing presentation present path; no separate preview API yet) -->
75136
75647
  <button
75137
75648
  type="button"
@@ -75239,7 +75750,7 @@ class RibbonTransitionsSectionComponent {
75239
75750
  </button>
75240
75751
  `, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: LucidePlay, selector: "svg[lucidePlay]" }, { kind: "component", type: LucidePanelRight, selector: "svg[lucidePanelRight]" }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
75241
75752
  }
75242
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonTransitionsSectionComponent, decorators: [{
75753
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonTransitionsSectionComponent, decorators: [{
75243
75754
  type: Component,
75244
75755
  args: [{
75245
75756
  selector: 'pptx-ribbon-transitions-section',
@@ -75387,8 +75898,8 @@ class RibbonViewSectionComponent {
75387
75898
  toggleSelectionPane = output();
75388
75899
  toggleSnapToGrid = output();
75389
75900
  toggleEyedropper = output();
75390
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonViewSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
75391
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.5", type: RibbonViewSectionComponent, isStandalone: true, selector: "pptx-ribbon-view-section", inputs: { canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null }, showGrid: { classPropertyName: "showGrid", publicName: "showGrid", isSignal: true, isRequired: false, transformFunction: null }, showRulers: { classPropertyName: "showRulers", publicName: "showRulers", isSignal: true, isRequired: false, transformFunction: null }, showGuides: { classPropertyName: "showGuides", publicName: "showGuides", isSignal: true, isRequired: false, transformFunction: null }, snapToGrid: { classPropertyName: "snapToGrid", publicName: "snapToGrid", isSignal: true, isRequired: false, transformFunction: null }, eyedropperActive: { classPropertyName: "eyedropperActive", publicName: "eyedropperActive", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { openSorter: "openSorter", toggleNotes: "toggleNotes", print: "print", openShortcuts: "openShortcuts", toggleGrid: "toggleGrid", toggleRulers: "toggleRulers", toggleGuides: "toggleGuides", toggleSelectionPane: "toggleSelectionPane", toggleSnapToGrid: "toggleSnapToGrid", toggleEyedropper: "toggleEyedropper" }, host: { classAttribute: "contents" }, ngImport: i0, template: `
75901
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonViewSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
75902
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.6", type: RibbonViewSectionComponent, isStandalone: true, selector: "pptx-ribbon-view-section", inputs: { canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null }, showGrid: { classPropertyName: "showGrid", publicName: "showGrid", isSignal: true, isRequired: false, transformFunction: null }, showRulers: { classPropertyName: "showRulers", publicName: "showRulers", isSignal: true, isRequired: false, transformFunction: null }, showGuides: { classPropertyName: "showGuides", publicName: "showGuides", isSignal: true, isRequired: false, transformFunction: null }, snapToGrid: { classPropertyName: "snapToGrid", publicName: "snapToGrid", isSignal: true, isRequired: false, transformFunction: null }, eyedropperActive: { classPropertyName: "eyedropperActive", publicName: "eyedropperActive", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { openSorter: "openSorter", toggleNotes: "toggleNotes", print: "print", openShortcuts: "openShortcuts", toggleGrid: "toggleGrid", toggleRulers: "toggleRulers", toggleGuides: "toggleGuides", toggleSelectionPane: "toggleSelectionPane", toggleSnapToGrid: "toggleSnapToGrid", toggleEyedropper: "toggleEyedropper" }, host: { classAttribute: "contents" }, ngImport: i0, template: `
75392
75903
  <!-- Presentation views -->
75393
75904
  <button type="button" class="pptx-rb-pill" (click)="openSorter.emit()">
75394
75905
  {{ 'pptx.slideSorter.title' | translate }}
@@ -75480,7 +75991,7 @@ class RibbonViewSectionComponent {
75480
75991
  </button>
75481
75992
  `, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
75482
75993
  }
75483
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonViewSectionComponent, decorators: [{
75994
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonViewSectionComponent, decorators: [{
75484
75995
  type: Component,
75485
75996
  args: [{
75486
75997
  selector: 'pptx-ribbon-view-section',
@@ -75800,8 +76311,8 @@ class RibbonComponent {
75800
76311
  this.drawingWidth.set(state.width);
75801
76312
  this.drawToolChange.emit(state);
75802
76313
  }
75803
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
75804
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: RibbonComponent, isStandalone: true, selector: "pptx-ribbon", inputs: { slideIndex: { classPropertyName: "slideIndex", publicName: "slideIndex", isSignal: true, isRequired: false, transformFunction: null }, slideCount: { classPropertyName: "slideCount", publicName: "slideCount", isSignal: true, isRequired: false, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null }, selectedElement: { classPropertyName: "selectedElement", publicName: "selectedElement", isSignal: true, isRequired: false, transformFunction: null }, zoomPercent: { classPropertyName: "zoomPercent", publicName: "zoomPercent", isSignal: true, isRequired: false, transformFunction: null }, formatPainterActive: { classPropertyName: "formatPainterActive", publicName: "formatPainterActive", isSignal: true, isRequired: false, transformFunction: null }, canActivateFormatPainter: { classPropertyName: "canActivateFormatPainter", publicName: "canActivateFormatPainter", isSignal: true, isRequired: false, transformFunction: null }, exporting: { classPropertyName: "exporting", publicName: "exporting", isSignal: true, isRequired: false, transformFunction: null }, showGrid: { classPropertyName: "showGrid", publicName: "showGrid", isSignal: true, isRequired: false, transformFunction: null }, showRulers: { classPropertyName: "showRulers", publicName: "showRulers", isSignal: true, isRequired: false, transformFunction: null }, showGuides: { classPropertyName: "showGuides", publicName: "showGuides", isSignal: true, isRequired: false, transformFunction: null }, snapToGrid: { classPropertyName: "snapToGrid", publicName: "snapToGrid", isSignal: true, isRequired: false, transformFunction: null }, eyedropperActive: { classPropertyName: "eyedropperActive", publicName: "eyedropperActive", isSignal: true, isRequired: false, transformFunction: null }, themeGalleryOpen: { classPropertyName: "themeGalleryOpen", publicName: "themeGalleryOpen", isSignal: true, isRequired: false, transformFunction: null }, sidebarCollapsed: { classPropertyName: "sidebarCollapsed", publicName: "sidebarCollapsed", isSignal: true, isRequired: false, transformFunction: null }, inspectorOpen: { classPropertyName: "inspectorOpen", publicName: "inspectorOpen", isSignal: true, isRequired: false, transformFunction: null }, commentsOpen: { classPropertyName: "commentsOpen", publicName: "commentsOpen", isSignal: true, isRequired: false, transformFunction: null }, commentCount: { classPropertyName: "commentCount", publicName: "commentCount", isSignal: true, isRequired: false, transformFunction: null }, findOpen: { classPropertyName: "findOpen", publicName: "findOpen", isSignal: true, isRequired: false, transformFunction: null }, collabConnected: { classPropertyName: "collabConnected", publicName: "collabConnected", isSignal: true, isRequired: false, transformFunction: null }, connectedCount: { classPropertyName: "connectedCount", publicName: "connectedCount", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { prev: "prev", next: "next", zoomIn: "zoomIn", zoomOut: "zoomOut", zoomReset: "zoomReset", find: "find", present: "present", presenter: "presenter", record: "record", share: "share", broadcast: "broadcast", openFile: "openFile", save: "save", toggleSidebar: "toggleSidebar", signatures: "signatures", info: "info", print: "print", comments: "comments", a11y: "a11y", link: "link", openSorter: "openSorter", toggleNotes: "toggleNotes", toggleFormatPainter: "toggleFormatPainter", exportPng: "exportPng", exportPdf: "exportPdf", exportGif: "exportGif", exportVideo: "exportVideo", replace: "replace", toggleInspector: "toggleInspector", drawToolChange: "drawToolChange", toggleThemeGallery: "toggleThemeGallery", toggleGrid: "toggleGrid", toggleRulers: "toggleRulers", toggleGuides: "toggleGuides", toggleSelectionPane: "toggleSelectionPane", openCustomShows: "openCustomShows", toggleSnapToGrid: "toggleSnapToGrid", toggleEyedropper: "toggleEyedropper", openSmartArtDialog: "openSmartArtDialog", openEquationDialog: "openEquationDialog", openSetUpSlideShow: "openSetUpSlideShow", openCompare: "openCompare", openPassword: "openPassword", openFontEmbedding: "openFontEmbedding", openVersionHistory: "openVersionHistory", openShortcuts: "openShortcuts", shapeInsert: "shapeInsert", moveLayer: "moveLayer", moveLayerToEdge: "moveLayerToEdge" }, ngImport: i0, template: `
76314
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
76315
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: RibbonComponent, isStandalone: true, selector: "pptx-ribbon", inputs: { slideIndex: { classPropertyName: "slideIndex", publicName: "slideIndex", isSignal: true, isRequired: false, transformFunction: null }, slideCount: { classPropertyName: "slideCount", publicName: "slideCount", isSignal: true, isRequired: false, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null }, selectedElement: { classPropertyName: "selectedElement", publicName: "selectedElement", isSignal: true, isRequired: false, transformFunction: null }, zoomPercent: { classPropertyName: "zoomPercent", publicName: "zoomPercent", isSignal: true, isRequired: false, transformFunction: null }, formatPainterActive: { classPropertyName: "formatPainterActive", publicName: "formatPainterActive", isSignal: true, isRequired: false, transformFunction: null }, canActivateFormatPainter: { classPropertyName: "canActivateFormatPainter", publicName: "canActivateFormatPainter", isSignal: true, isRequired: false, transformFunction: null }, exporting: { classPropertyName: "exporting", publicName: "exporting", isSignal: true, isRequired: false, transformFunction: null }, showGrid: { classPropertyName: "showGrid", publicName: "showGrid", isSignal: true, isRequired: false, transformFunction: null }, showRulers: { classPropertyName: "showRulers", publicName: "showRulers", isSignal: true, isRequired: false, transformFunction: null }, showGuides: { classPropertyName: "showGuides", publicName: "showGuides", isSignal: true, isRequired: false, transformFunction: null }, snapToGrid: { classPropertyName: "snapToGrid", publicName: "snapToGrid", isSignal: true, isRequired: false, transformFunction: null }, eyedropperActive: { classPropertyName: "eyedropperActive", publicName: "eyedropperActive", isSignal: true, isRequired: false, transformFunction: null }, themeGalleryOpen: { classPropertyName: "themeGalleryOpen", publicName: "themeGalleryOpen", isSignal: true, isRequired: false, transformFunction: null }, sidebarCollapsed: { classPropertyName: "sidebarCollapsed", publicName: "sidebarCollapsed", isSignal: true, isRequired: false, transformFunction: null }, inspectorOpen: { classPropertyName: "inspectorOpen", publicName: "inspectorOpen", isSignal: true, isRequired: false, transformFunction: null }, commentsOpen: { classPropertyName: "commentsOpen", publicName: "commentsOpen", isSignal: true, isRequired: false, transformFunction: null }, commentCount: { classPropertyName: "commentCount", publicName: "commentCount", isSignal: true, isRequired: false, transformFunction: null }, findOpen: { classPropertyName: "findOpen", publicName: "findOpen", isSignal: true, isRequired: false, transformFunction: null }, collabConnected: { classPropertyName: "collabConnected", publicName: "collabConnected", isSignal: true, isRequired: false, transformFunction: null }, connectedCount: { classPropertyName: "connectedCount", publicName: "connectedCount", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { prev: "prev", next: "next", zoomIn: "zoomIn", zoomOut: "zoomOut", zoomReset: "zoomReset", find: "find", present: "present", presenter: "presenter", record: "record", share: "share", broadcast: "broadcast", openFile: "openFile", save: "save", toggleSidebar: "toggleSidebar", signatures: "signatures", info: "info", print: "print", comments: "comments", a11y: "a11y", link: "link", openSorter: "openSorter", toggleNotes: "toggleNotes", toggleFormatPainter: "toggleFormatPainter", exportPng: "exportPng", exportPdf: "exportPdf", exportGif: "exportGif", exportVideo: "exportVideo", replace: "replace", toggleInspector: "toggleInspector", drawToolChange: "drawToolChange", toggleThemeGallery: "toggleThemeGallery", toggleGrid: "toggleGrid", toggleRulers: "toggleRulers", toggleGuides: "toggleGuides", toggleSelectionPane: "toggleSelectionPane", openCustomShows: "openCustomShows", toggleSnapToGrid: "toggleSnapToGrid", toggleEyedropper: "toggleEyedropper", openSmartArtDialog: "openSmartArtDialog", openEquationDialog: "openEquationDialog", openSetUpSlideShow: "openSetUpSlideShow", openCompare: "openCompare", openPassword: "openPassword", openFontEmbedding: "openFontEmbedding", openVersionHistory: "openVersionHistory", openShortcuts: "openShortcuts", shapeInsert: "shapeInsert", moveLayer: "moveLayer", moveLayerToEdge: "moveLayerToEdge" }, ngImport: i0, template: `
75805
76316
  <div
75806
76317
  role="toolbar"
75807
76318
  [attr.aria-label]="'pptx.toolbar.presentationToolbarAria' | translate"
@@ -76079,7 +76590,7 @@ class RibbonComponent {
76079
76590
  </div>
76080
76591
  `, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: LucideShare2, selector: "svg[lucideShare2]" }, { kind: "component", type: LucideChevronUp, selector: "svg[lucideChevronUp]" }, { kind: "component", type: LucideChevronDown, selector: "svg[lucideChevronDown]" }, { kind: "component", type: RibbonPrimaryRowComponent, selector: "pptx-ribbon-primary-row", inputs: ["slideCount", "sidebarCollapsed", "inspectorOpen", "commentsOpen", "commentCount"], outputs: ["toggleSidebar", "toggleComments", "present", "presenter", "broadcast", "openCustomShows", "toggleInspector", "exportPng", "exportPdf", "exportGif", "exportVideo", "print", "info", "a11y", "save"] }, { kind: "component", type: RibbonFileSectionComponent, selector: "pptx-ribbon-file-section", inputs: ["slideCount", "exporting"], outputs: ["openFile", "save", "exportPng", "exportPdf", "exportGif", "exportVideo", "print", "info", "signatures", "replace", "openPassword", "openFontEmbedding", "openVersionHistory"] }, { kind: "component", type: RibbonHomeSectionComponent, selector: "pptx-ribbon-home-section", inputs: ["slideIndex", "selectedElement", "formatPainterActive", "canActivateFormatPainter"], outputs: ["toggleFormatPainter", "findReplace", "applyLayout", "resetSlide", "addSection"] }, { kind: "component", type: RibbonInsertSectionComponent, selector: "pptx-ribbon-insert-section", inputs: ["slideIndex", "newChartType"], outputs: ["openSmartArtDialog", "openEquationDialog", "chartTypeChange"] }, { kind: "component", type: RibbonFontControlsComponent, selector: "pptx-ribbon-font-controls", inputs: ["slideIndex", "selectedElement"] }, { kind: "component", type: RibbonParagraphControlsComponent, selector: "pptx-ribbon-paragraph-controls", inputs: ["slideIndex", "selectedElement"] }, { kind: "component", type: RibbonArrangeSectionComponent, selector: "pptx-ribbon-arrange-section", inputs: ["slideIndex", "formatPainterActive", "canActivateFormatPainter"], outputs: ["toggleFormatPainter"] }, { kind: "component", type: RibbonSlideshowSectionComponent, selector: "pptx-ribbon-slideshow-section", inputs: ["slideCount"], outputs: ["present", "presenter", "broadcast", "openCustomShows", "openSetUpSlideShow"] }, { kind: "component", type: RibbonReviewSectionComponent, selector: "pptx-ribbon-review-section", outputs: ["comments", "spelling", "a11y", "openCompare", "language", "link"] }, { kind: "component", type: RibbonViewSectionComponent, selector: "pptx-ribbon-view-section", inputs: ["canEdit", "showGrid", "showRulers", "showGuides", "snapToGrid", "eyedropperActive"], outputs: ["openSorter", "toggleNotes", "print", "openShortcuts", "toggleGrid", "toggleRulers", "toggleGuides", "toggleSelectionPane", "toggleSnapToGrid", "toggleEyedropper"] }, { kind: "component", type: RibbonDrawSectionComponent, selector: "pptx-ribbon-draw-section", inputs: ["activeTool", "drawingColor", "drawingWidth"], outputs: ["drawToolChange"] }, { kind: "component", type: RibbonDrawingGroupComponent, selector: "pptx-ribbon-drawing-group", inputs: ["canEdit"], outputs: ["shapeInsert", "moveLayer", "moveLayerToEdge"] }, { kind: "component", type: RibbonDesignSectionComponent, selector: "pptx-ribbon-design-section", inputs: ["themeGalleryOpen"], outputs: ["toggleThemeGallery", "info", "toggleInspector"] }, { kind: "component", type: RibbonTransitionsSectionComponent, selector: "pptx-ribbon-transitions-section", inputs: ["slideIndex", "selectedTransition", "transitionDurationSec"], outputs: ["present", "toggleInspector", "transitionChange", "durationChange"] }, { kind: "component", type: RibbonAnimationsSectionComponent, selector: "pptx-ribbon-animations-section", inputs: ["slideIndex", "selectedElement"], outputs: ["present", "toggleInspector"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
76081
76592
  }
76082
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonComponent, decorators: [{
76593
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonComponent, decorators: [{
76083
76594
  type: Component,
76084
76595
  args: [{
76085
76596
  selector: 'pptx-ribbon',
@@ -76449,8 +76960,8 @@ class SelectionPaneComponent {
76449
76960
  elLabel(el) {
76450
76961
  return elementLabel(el);
76451
76962
  }
76452
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SelectionPaneComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
76453
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: SelectionPaneComponent, isStandalone: true, selector: "pptx-selection-pane", inputs: { elements: { classPropertyName: "elements", publicName: "elements", isSignal: true, isRequired: false, transformFunction: null }, selectedIds: { classPropertyName: "selectedIds", publicName: "selectedIds", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { selectElement: "selectElement", bringForward: "bringForward", sendBackward: "sendBackward", toggleHidden: "toggleHidden" }, ngImport: i0, template: `
76963
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SelectionPaneComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
76964
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: SelectionPaneComponent, isStandalone: true, selector: "pptx-selection-pane", inputs: { elements: { classPropertyName: "elements", publicName: "elements", isSignal: true, isRequired: false, transformFunction: null }, selectedIds: { classPropertyName: "selectedIds", publicName: "selectedIds", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { selectElement: "selectElement", bringForward: "bringForward", sendBackward: "sendBackward", toggleHidden: "toggleHidden" }, ngImport: i0, template: `
76454
76965
  <aside class="pptx-ng-sel-pane" [attr.aria-label]="'pptx.selectionPane.title' | translate">
76455
76966
  <header class="pptx-ng-sel-pane__header">
76456
76967
  <h2 class="pptx-ng-sel-pane__title">{{ 'pptx.selectionPane.title' | translate }}</h2>
@@ -76523,7 +77034,7 @@ class SelectionPaneComponent {
76523
77034
  </aside>
76524
77035
  `, isInline: true, styles: [":host{display:block;height:100%;width:100%}.pptx-ng-sel-pane{display:flex;flex-direction:column;min-height:0;height:100%;width:100%;background:var(--pptx-card, #111827);color:var(--pptx-foreground, #f3f4f6);border-left:1px solid var(--pptx-border, #374151);font-family:system-ui,sans-serif}.pptx-ng-sel-pane__header{display:flex;align-items:center;justify-content:space-between;padding:12px 16px;border-bottom:1px solid var(--pptx-border, #374151);flex-shrink:0}.pptx-ng-sel-pane__title{margin:0;font-size:14px;font-weight:600}.pptx-ng-sel-pane__count{font-size:12px;color:var(--pptx-muted-foreground, #9ca3af)}.pptx-ng-sel-pane__list{list-style:none;margin:0;padding:8px;overflow-y:auto;flex:1 1 auto;min-height:0}.pptx-ng-sel-pane__row{display:flex;align-items:center;gap:6px;padding:6px 8px;border-radius:6px;border:1px solid transparent;cursor:pointer;margin-bottom:2px;transition:background .1s;-webkit-user-select:none;user-select:none}.pptx-ng-sel-pane__row:hover{background:var(--pptx-accent, #1f2937)}.pptx-ng-sel-pane__row--selected{border-color:var(--pptx-primary, #6366f1);background:color-mix(in srgb,var(--pptx-primary, #6366f1) 15%,transparent)}.pptx-ng-sel-pane__row--hidden{opacity:.5}.pptx-ng-sel-pane__icon{flex-shrink:0;width:20px;text-align:center;font-size:12px;color:var(--pptx-muted-foreground, #9ca3af)}.pptx-ng-sel-pane__label{flex:1 1 auto;font-size:12px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;min-width:0}.pptx-ng-sel-pane__actions{display:flex;gap:2px;flex-shrink:0}.pptx-ng-sel-pane__btn{background:transparent;border:1px solid var(--pptx-border, #374151);color:inherit;border-radius:4px;padding:2px 5px;font-size:11px;cursor:pointer;line-height:1.2}.pptx-ng-sel-pane__btn:hover{background:var(--pptx-accent, #1f2937)}.pptx-ng-sel-pane__empty{padding:16px;font-size:13px;color:var(--pptx-muted-foreground, #9ca3af)}\n"], dependencies: [{ kind: "component", type: LucideEye, selector: "svg[lucideEye]" }, { kind: "component", type: LucideEyeOff, selector: "svg[lucideEyeOff]" }, { kind: "component", type: LucideArrowUp, selector: "svg[lucideArrowUp]" }, { kind: "component", type: LucideArrowDown, selector: "svg[lucideArrowDown]" }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
76525
77036
  }
76526
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SelectionPaneComponent, decorators: [{
77037
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SelectionPaneComponent, decorators: [{
76527
77038
  type: Component,
76528
77039
  args: [{ selector: 'pptx-selection-pane', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe, LucideEye, LucideEyeOff, LucideArrowUp, LucideArrowDown], template: `
76529
77040
  <aside class="pptx-ng-sel-pane" [attr.aria-label]="'pptx.selectionPane.title' | translate">
@@ -76761,8 +77272,8 @@ class ShareDialogComponent {
76761
77272
  handleStop() {
76762
77273
  this.stop.emit();
76763
77274
  }
76764
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ShareDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
76765
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: ShareDialogComponent, isStandalone: true, selector: "pptx-share-dialog", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, defaults: { classPropertyName: "defaults", publicName: "defaults", isSignal: true, isRequired: false, transformFunction: null }, active: { classPropertyName: "active", publicName: "active", isSignal: true, isRequired: false, transformFunction: null }, connected: { classPropertyName: "connected", publicName: "connected", isSignal: true, isRequired: false, transformFunction: null }, userCount: { classPropertyName: "userCount", publicName: "userCount", isSignal: true, isRequired: false, transformFunction: null }, shareUrl: { classPropertyName: "shareUrl", publicName: "shareUrl", isSignal: true, isRequired: false, transformFunction: null }, p2p: { classPropertyName: "p2p", publicName: "p2p", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { start: "start", stop: "stop", close: "close" }, ngImport: i0, template: `
77275
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ShareDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
77276
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: ShareDialogComponent, isStandalone: true, selector: "pptx-share-dialog", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, defaults: { classPropertyName: "defaults", publicName: "defaults", isSignal: true, isRequired: false, transformFunction: null }, active: { classPropertyName: "active", publicName: "active", isSignal: true, isRequired: false, transformFunction: null }, connected: { classPropertyName: "connected", publicName: "connected", isSignal: true, isRequired: false, transformFunction: null }, userCount: { classPropertyName: "userCount", publicName: "userCount", isSignal: true, isRequired: false, transformFunction: null }, shareUrl: { classPropertyName: "shareUrl", publicName: "shareUrl", isSignal: true, isRequired: false, transformFunction: null }, p2p: { classPropertyName: "p2p", publicName: "p2p", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { start: "start", stop: "stop", close: "close" }, ngImport: i0, template: `
76766
77277
  <pptx-modal-dialog
76767
77278
  [open]="open()"
76768
77279
  [title]="(active() ? 'pptx.share.activeTitle' : 'pptx.toolbar.share') | translate"
@@ -76896,7 +77407,7 @@ class ShareDialogComponent {
76896
77407
  </pptx-modal-dialog>
76897
77408
  `, isInline: true, styles: [".pptx-ng-share-form,.pptx-ng-share-active{display:flex;flex-direction:column;gap:1rem}.pptx-ng-share-desc{margin:0;font-size:.8125rem;color:var(--pptx-muted-foreground, #9a9a9a)}.pptx-ng-share-field{display:flex;flex-direction:column;gap:.375rem}.pptx-ng-share-label{font-size:.75rem;font-weight:500;color:var(--pptx-foreground, #e5e5e5)}.pptx-ng-share-input{width:100%;padding:.375rem .75rem;border-radius:.375rem;border:1px solid var(--pptx-border, #2a2a2a);background:var(--pptx-background, #111);color:var(--pptx-foreground, #e5e5e5);font-size:.8125rem}.pptx-ng-share-input:focus{outline:none;border-color:var(--pptx-primary, #6366f1);box-shadow:0 0 0 1px var(--pptx-primary, #6366f1)}.pptx-ng-share-btn{padding:.375rem .75rem;border:none;border-radius:.375rem;background:var(--pptx-muted, #2a2a2a);color:var(--pptx-foreground, #e5e5e5);font-size:.75rem;cursor:pointer}.pptx-ng-share-btn-primary{background:var(--pptx-primary, #6366f1);color:var(--pptx-primary-foreground, #fff)}.pptx-ng-share-btn-primary:disabled{opacity:.4;cursor:not-allowed}.pptx-ng-share-stop{width:100%;padding:.5rem .75rem;border:1px solid rgba(239,68,68,.3);border-radius:.375rem;background:#ef44441a;color:#f87171;font-size:.75rem;font-weight:500;cursor:pointer}.pptx-ng-share-stop:hover{background:#ef444433}.pptx-ng-share-status-row{display:flex;align-items:center;gap:.5rem;font-size:.8125rem}.pptx-ng-share-status-dot{width:.5rem;height:.5rem;border-radius:9999px;background:var(--pptx-muted-foreground, #9a9a9a)}.pptx-ng-share-status-dot.is-on{background:#22c55e}.pptx-ng-share-status-text{font-weight:500;color:var(--pptx-foreground, #e5e5e5)}.pptx-ng-share-count{margin-left:auto;color:var(--pptx-muted-foreground, #9a9a9a)}.pptx-ng-share-link-row{display:flex;align-items:center;gap:.5rem}.pptx-ng-share-hint{margin:0;font-size:.6875rem;color:var(--pptx-muted-foreground, #9a9a9a)}\n"], dependencies: [{ kind: "component", type: ModalDialogComponent, selector: "pptx-modal-dialog", inputs: ["open", "title"], outputs: ["close"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
76898
77409
  }
76899
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ShareDialogComponent, decorators: [{
77410
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ShareDialogComponent, decorators: [{
76900
77411
  type: Component,
76901
77412
  args: [{ selector: 'pptx-share-dialog', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [ModalDialogComponent, TranslatePipe], template: `
76902
77413
  <pptx-modal-dialog
@@ -77218,8 +77729,8 @@ class SignaturesPanelComponent {
77218
77729
  timestamp(sig) {
77219
77730
  return signatureTimestamp(sig);
77220
77731
  }
77221
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SignaturesPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
77222
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: SignaturesPanelComponent, isStandalone: true, selector: "pptx-signatures-panel", inputs: { signatures: { classPropertyName: "signatures", publicName: "signatures", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
77732
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SignaturesPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
77733
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: SignaturesPanelComponent, isStandalone: true, selector: "pptx-signatures-panel", inputs: { signatures: { classPropertyName: "signatures", publicName: "signatures", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
77223
77734
  <section
77224
77735
  class="pptx-ng-signatures"
77225
77736
  [attr.aria-label]="'pptx.digitalSignatures.ariaLabel' | translate"
@@ -77278,7 +77789,7 @@ class SignaturesPanelComponent {
77278
77789
  </section>
77279
77790
  `, isInline: true, styles: [".pptx-ng-signatures{font-family:system-ui,sans-serif;font-size:13px;color:#1f2937;background:#fff;border:1px solid #e5e7eb;border-radius:8px;overflow:hidden}.pptx-ng-signatures__header{display:flex;align-items:center;gap:8px;padding:10px 12px;font-weight:600;border-bottom:1px solid #e5e7eb}.pptx-ng-signatures__header--signed{background:#ecfdf5;color:#065f46}.pptx-ng-signatures__header--invalid{background:#fef2f2;color:#991b1b}.pptx-ng-signatures__header--unsigned{background:#f9fafb;color:#374151}.pptx-ng-signatures__dot{width:9px;height:9px;border-radius:50%;background:currentColor;flex:none}.pptx-ng-signatures__title{flex:1}.pptx-ng-signatures__count{font-weight:400;font-size:12px;opacity:.8}.pptx-ng-signatures__empty{margin:0;padding:14px 12px;color:#6b7280}.pptx-ng-signatures__list{list-style:none;margin:0;padding:0}.pptx-ng-signatures__item{padding:10px 12px;border-bottom:1px solid #f3f4f6;border-left:3px solid transparent}.pptx-ng-signatures__item:last-child{border-bottom:none}.pptx-ng-signatures__item--valid{border-left-color:#10b981}.pptx-ng-signatures__item--invalid{border-left-color:#ef4444}.pptx-ng-signatures__item--unknown{border-left-color:#f59e0b}.pptx-ng-signatures__item-main{display:flex;align-items:center;gap:8px;justify-content:space-between}.pptx-ng-signatures__signer{font-weight:600;word-break:break-word}.pptx-ng-signatures__badge{flex:none;font-size:11px;font-weight:600;padding:2px 8px;border-radius:999px;white-space:nowrap}.pptx-ng-signatures__badge--valid{background:#d1fae5;color:#065f46}.pptx-ng-signatures__badge--invalid{background:#fee2e2;color:#991b1b}.pptx-ng-signatures__badge--unknown{background:#fef3c7;color:#92400e}.pptx-ng-signatures__meta{display:grid;grid-template-columns:auto 1fr;gap:2px 10px;margin:6px 0 0;font-size:12px;color:#4b5563}.pptx-ng-signatures__meta dt{font-weight:500;color:#6b7280}.pptx-ng-signatures__meta dd{margin:0;word-break:break-word}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
77280
77791
  }
77281
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SignaturesPanelComponent, decorators: [{
77792
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SignaturesPanelComponent, decorators: [{
77282
77793
  type: Component,
77283
77794
  args: [{ selector: 'pptx-signatures-panel', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
77284
77795
  <section
@@ -77434,8 +77945,8 @@ class SlideSorterOverlayComponent {
77434
77945
  const s = slide;
77435
77946
  return s['hidden'] === true;
77436
77947
  }
77437
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SlideSorterOverlayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
77438
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: SlideSorterOverlayComponent, isStandalone: true, selector: "pptx-slide-sorter-overlay", inputs: { slides: { classPropertyName: "slides", publicName: "slides", isSignal: true, isRequired: true, transformFunction: null }, canvasSize: { classPropertyName: "canvasSize", publicName: "canvasSize", isSignal: true, isRequired: true, transformFunction: null }, mediaDataUrls: { classPropertyName: "mediaDataUrls", publicName: "mediaDataUrls", isSignal: true, isRequired: false, transformFunction: null }, activeIndex: { classPropertyName: "activeIndex", publicName: "activeIndex", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { select: "select", closed: "closed" }, host: { listeners: { "document:keydown": "onKeydown($event)" } }, ngImport: i0, template: `
77948
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SlideSorterOverlayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
77949
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: SlideSorterOverlayComponent, isStandalone: true, selector: "pptx-slide-sorter-overlay", inputs: { slides: { classPropertyName: "slides", publicName: "slides", isSignal: true, isRequired: true, transformFunction: null }, canvasSize: { classPropertyName: "canvasSize", publicName: "canvasSize", isSignal: true, isRequired: true, transformFunction: null }, mediaDataUrls: { classPropertyName: "mediaDataUrls", publicName: "mediaDataUrls", isSignal: true, isRequired: false, transformFunction: null }, activeIndex: { classPropertyName: "activeIndex", publicName: "activeIndex", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { select: "select", closed: "closed" }, host: { listeners: { "document:keydown": "onKeydown($event)" } }, ngImport: i0, template: `
77439
77950
  <!-- Backdrop -->
77440
77951
  <div class="pptx-ng-sorter-backdrop" (click)="onBackdropClick($event)">
77441
77952
  <!-- Modal panel -->
@@ -77504,7 +78015,7 @@ class SlideSorterOverlayComponent {
77504
78015
  </div>
77505
78016
  `, isInline: true, styles: [":host{display:contents}.pptx-ng-sorter-backdrop{position:fixed;inset:0;z-index:50;display:flex;align-items:center;justify-content:center;background:#000000b3;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px)}.pptx-ng-sorter-panel{display:flex;flex-direction:column;width:min(96vw,1200px);max-height:90vh;border-radius:.5rem;background:#1a1a1a;color:#e5e5e5;box-shadow:0 24px 64px #0009;overflow:hidden}.pptx-ng-sorter-header{display:flex;align-items:center;gap:.75rem;padding:.75rem 1.25rem;border-bottom:1px solid rgba(255,255,255,.1);flex-shrink:0}.pptx-ng-sorter-title{margin:0;font-size:.875rem;font-weight:500}.pptx-ng-sorter-count{font-size:.75rem;color:#ffffff80;flex:1}.pptx-ng-sorter-close{display:flex;align-items:center;justify-content:center;width:44px;height:44px;min-width:44px;min-height:44px;padding:0;border:none;border-radius:50%;background:#ffffff1a;color:#e5e5e5;cursor:pointer;transition:background .15s;flex-shrink:0;touch-action:manipulation}.pptx-ng-sorter-close:hover{background:#fff3}.pptx-ng-sorter-grid-scroll{flex:1;overflow-y:auto;padding:1.25rem}.pptx-ng-sorter-grid{display:grid;gap:1rem}.pptx-ng-sorter-cell{display:flex;flex-direction:column;align-items:center;gap:.5rem;padding:.5rem;border:2px solid transparent;border-radius:.375rem;background:transparent;cursor:pointer;transition:border-color .15s,background .15s;color:inherit}.pptx-ng-sorter-cell:hover{background:#ffffff0f;border-color:#fff3}.pptx-ng-sorter-cell.is-active{border-color:#3b82f6;background:#3b82f61a}.pptx-ng-sorter-cell.is-hidden{opacity:.4}.pptx-ng-sorter-thumb-clip{overflow:hidden;border-radius:2px}.pptx-ng-sorter-thumb-clip ::ng-deep .pptx-ng-canvas-wrapper{margin:0!important}.pptx-ng-sorter-index{font-size:.6875rem;color:#ffffff8c;-webkit-user-select:none;user-select:none}\n"], dependencies: [{ kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: SlideCanvasComponent, selector: "pptx-slide-canvas", inputs: ["slide", "canvasSize", "mediaDataUrls", "zoom", "editable", "showGrid", "showRulers", "showGuides", "snapToGrid", "snapToGuides", "autoFit", "interactive", "presenting", "selectedIds", "editingId", "editTemplateMode", "templateElements", "drawTool", "drawColor", "drawWidth"], outputs: ["elementSelect", "backgroundClick", "transformStart", "transformUpdate", "contextMenu", "textEditStart", "textCommit", "textCancel", "textFormat", "rotateUpdate", "marqueeSelect", "inkStrokeComplete", "eraserHit", "cellCommit", "tableChange"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
77506
78017
  }
77507
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SlideSorterOverlayComponent, decorators: [{
78018
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SlideSorterOverlayComponent, decorators: [{
77508
78019
  type: Component,
77509
78020
  args: [{ selector: 'pptx-slide-sorter-overlay', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [NgStyle, SlideCanvasComponent, TranslatePipe], template: `
77510
78021
  <!-- Backdrop -->
@@ -77643,8 +78154,8 @@ class SlidesPanelComponent {
77643
78154
  onAddSlide() {
77644
78155
  this.editor.addSlide(this.activeIndex());
77645
78156
  }
77646
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SlidesPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
77647
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: SlidesPanelComponent, isStandalone: true, selector: "pptx-slides-panel", inputs: { canvasSize: { classPropertyName: "canvasSize", publicName: "canvasSize", isSignal: true, isRequired: true, transformFunction: null }, mediaDataUrls: { classPropertyName: "mediaDataUrls", publicName: "mediaDataUrls", isSignal: true, isRequired: false, transformFunction: null }, activeIndex: { classPropertyName: "activeIndex", publicName: "activeIndex", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { select: "select" }, ngImport: i0, template: `
78157
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SlidesPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
78158
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: SlidesPanelComponent, isStandalone: true, selector: "pptx-slides-panel", inputs: { canvasSize: { classPropertyName: "canvasSize", publicName: "canvasSize", isSignal: true, isRequired: true, transformFunction: null }, mediaDataUrls: { classPropertyName: "mediaDataUrls", publicName: "mediaDataUrls", isSignal: true, isRequired: false, transformFunction: null }, activeIndex: { classPropertyName: "activeIndex", publicName: "activeIndex", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { select: "select" }, ngImport: i0, template: `
77648
78159
  <div class="pptx-ng-spanel">
77649
78160
  <!-- Scrollable slide list -->
77650
78161
  <div
@@ -77749,7 +78260,7 @@ class SlidesPanelComponent {
77749
78260
  </div>
77750
78261
  `, isInline: true, styles: [":host{display:flex;flex-direction:column;height:100%;overflow:hidden}.pptx-ng-spanel{display:flex;flex-direction:column;height:100%;background:#1e1e1e;color:#e5e5e5;border-right:1px solid rgba(255,255,255,.08);overflow:hidden}.pptx-ng-spanel-scroll{flex:1;overflow-y:auto;padding:.5rem .375rem;display:flex;flex-direction:column;gap:.375rem}.pptx-ng-spanel-card{position:relative;border-radius:.375rem;border:2px solid transparent;background:transparent;transition:border-color .15s,background .15s}.pptx-ng-spanel-card:hover,.pptx-ng-spanel-card:focus-within{background:#ffffff0d;border-color:#ffffff26}.pptx-ng-spanel-card.is-active{border-color:#3b82f6;background:#3b82f61a}.pptx-ng-spanel-thumb-btn{display:block;width:100%;padding:.375rem .375rem 0;border:none;background:transparent;cursor:pointer;color:inherit;line-height:0}.pptx-ng-spanel-thumb-btn:focus-visible{outline:2px solid #3b82f6;outline-offset:2px;border-radius:.25rem}.pptx-ng-spanel-clip{overflow:hidden;border-radius:2px}.pptx-ng-spanel-clip ::ng-deep .pptx-ng-canvas-wrapper{margin:0!important}.pptx-ng-spanel-num{display:block;text-align:center;font-size:.625rem;line-height:1.6;color:#ffffff73;-webkit-user-select:none;user-select:none;padding-bottom:.25rem}.pptx-ng-spanel-actions{position:absolute;top:.25rem;right:.25rem;display:flex;flex-direction:column;gap:.125rem;opacity:0;pointer-events:none;transition:opacity .12s}.pptx-ng-spanel-card:hover .pptx-ng-spanel-actions,.pptx-ng-spanel-card:focus-within .pptx-ng-spanel-actions{opacity:1;pointer-events:auto}.pptx-ng-spanel-action{display:flex;align-items:center;justify-content:center;width:1.375rem;height:1.375rem;padding:0;border:none;border-radius:.25rem;background:#1e1e1ed9;color:#e5e5e5;font-size:.6875rem;cursor:pointer;transition:background .12s;-webkit-backdrop-filter:blur(2px);backdrop-filter:blur(2px)}.pptx-ng-spanel-action:hover:not([disabled]){background:#3b82f6bf}.pptx-ng-spanel-action[disabled]{opacity:.3;cursor:not-allowed}.pptx-ng-spanel-footer{flex-shrink:0;padding:.5rem .375rem;border-top:1px solid rgba(255,255,255,.08)}.pptx-ng-spanel-add{display:block;width:100%;padding:.4375rem 0;border:1px dashed rgba(255,255,255,.2);border-radius:.375rem;background:transparent;color:#fff9;font-size:.75rem;cursor:pointer;transition:background .15s,border-color .15s,color .15s}.pptx-ng-spanel-add:hover{background:#3b82f626;border-color:#3b82f6;color:#e5e5e5}\n"], dependencies: [{ kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: SlideCanvasComponent, selector: "pptx-slide-canvas", inputs: ["slide", "canvasSize", "mediaDataUrls", "zoom", "editable", "showGrid", "showRulers", "showGuides", "snapToGrid", "snapToGuides", "autoFit", "interactive", "presenting", "selectedIds", "editingId", "editTemplateMode", "templateElements", "drawTool", "drawColor", "drawWidth"], outputs: ["elementSelect", "backgroundClick", "transformStart", "transformUpdate", "contextMenu", "textEditStart", "textCommit", "textCancel", "textFormat", "rotateUpdate", "marqueeSelect", "inkStrokeComplete", "eraserHit", "cellCommit", "tableChange"] }, { kind: "component", type: LucideCopy, selector: "svg[lucideCopy]" }, { kind: "component", type: LucideTrash2, selector: "svg[lucideTrash2]" }, { kind: "component", type: LucideArrowUp, selector: "svg[lucideArrowUp]" }, { kind: "component", type: LucideArrowDown, selector: "svg[lucideArrowDown]" }, { kind: "component", type: LucidePlus, selector: "svg[lucidePlus]" }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
77751
78262
  }
77752
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SlidesPanelComponent, decorators: [{
78263
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SlidesPanelComponent, decorators: [{
77753
78264
  type: Component,
77754
78265
  args: [{ selector: 'pptx-slides-panel', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [
77755
78266
  NgStyle,
@@ -77945,8 +78456,8 @@ class StatusBarComponent {
77945
78456
  }
77946
78457
  return this.translate.instant('pptx.autosave.minutesAgo', { count: minutes });
77947
78458
  }
77948
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: StatusBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
77949
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: StatusBarComponent, isStandalone: true, selector: "pptx-status-bar", inputs: { slideIndex: { classPropertyName: "slideIndex", publicName: "slideIndex", isSignal: true, isRequired: false, transformFunction: null }, slideCount: { classPropertyName: "slideCount", publicName: "slideCount", isSignal: true, isRequired: false, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null }, dirty: { classPropertyName: "dirty", publicName: "dirty", isSignal: true, isRequired: false, transformFunction: null }, autosaveStatus: { classPropertyName: "autosaveStatus", publicName: "autosaveStatus", isSignal: true, isRequired: false, transformFunction: null }, notesOpen: { classPropertyName: "notesOpen", publicName: "notesOpen", isSignal: true, isRequired: false, transformFunction: null }, zoomPercent: { classPropertyName: "zoomPercent", publicName: "zoomPercent", isSignal: true, isRequired: false, transformFunction: null }, sorterActive: { classPropertyName: "sorterActive", publicName: "sorterActive", isSignal: true, isRequired: false, transformFunction: null }, presenting: { classPropertyName: "presenting", publicName: "presenting", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { toggleNotes: "toggleNotes", normalView: "normalView", openSorter: "openSorter", slideShow: "slideShow", zoomIn: "zoomIn", zoomOut: "zoomOut", zoomReset: "zoomReset" }, ngImport: i0, template: `
78459
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: StatusBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
78460
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: StatusBarComponent, isStandalone: true, selector: "pptx-status-bar", inputs: { slideIndex: { classPropertyName: "slideIndex", publicName: "slideIndex", isSignal: true, isRequired: false, transformFunction: null }, slideCount: { classPropertyName: "slideCount", publicName: "slideCount", isSignal: true, isRequired: false, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null }, dirty: { classPropertyName: "dirty", publicName: "dirty", isSignal: true, isRequired: false, transformFunction: null }, autosaveStatus: { classPropertyName: "autosaveStatus", publicName: "autosaveStatus", isSignal: true, isRequired: false, transformFunction: null }, notesOpen: { classPropertyName: "notesOpen", publicName: "notesOpen", isSignal: true, isRequired: false, transformFunction: null }, zoomPercent: { classPropertyName: "zoomPercent", publicName: "zoomPercent", isSignal: true, isRequired: false, transformFunction: null }, sorterActive: { classPropertyName: "sorterActive", publicName: "sorterActive", isSignal: true, isRequired: false, transformFunction: null }, presenting: { classPropertyName: "presenting", publicName: "presenting", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { toggleNotes: "toggleNotes", normalView: "normalView", openSorter: "openSorter", slideShow: "slideShow", zoomIn: "zoomIn", zoomOut: "zoomOut", zoomReset: "zoomReset" }, ngImport: i0, template: `
77950
78461
  <div
77951
78462
  class="flex w-full items-center gap-1 border-t border-border bg-secondary/50 px-2 py-0.5 text-[10px] text-muted-foreground"
77952
78463
  >
@@ -78054,7 +78565,7 @@ class StatusBarComponent {
78054
78565
  </div>
78055
78566
  `, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: LucideStickyNote, selector: "svg[lucideStickyNote]" }, { kind: "component", type: LucideMonitor, selector: "svg[lucideMonitor]" }, { kind: "component", type: LucideColumns2, selector: "svg[lucideColumns2], svg[lucideColumns]" }, { kind: "component", type: LucidePresentation, selector: "svg[lucidePresentation]" }, { kind: "component", type: LucideMinus, selector: "svg[lucideMinus]" }, { kind: "component", type: LucidePlus, selector: "svg[lucidePlus]" }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
78056
78567
  }
78057
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: StatusBarComponent, decorators: [{
78568
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: StatusBarComponent, decorators: [{
78058
78569
  type: Component,
78059
78570
  args: [{
78060
78571
  selector: 'pptx-status-bar',
@@ -78362,8 +78873,8 @@ class ThemeGalleryComponent {
78362
78873
  this.close.emit();
78363
78874
  }
78364
78875
  }
78365
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ThemeGalleryComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
78366
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: ThemeGalleryComponent, isStandalone: true, selector: "pptx-theme-gallery", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, activeName: { classPropertyName: "activeName", publicName: "activeName", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { applyTheme: "applyTheme", close: "close" }, ngImport: i0, template: `
78876
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ThemeGalleryComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
78877
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: ThemeGalleryComponent, isStandalone: true, selector: "pptx-theme-gallery", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, activeName: { classPropertyName: "activeName", publicName: "activeName", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { applyTheme: "applyTheme", close: "close" }, ngImport: i0, template: `
78367
78878
  @if (open()) {
78368
78879
  <!-- Backdrop -->
78369
78880
  <div
@@ -78470,7 +78981,7 @@ class ThemeGalleryComponent {
78470
78981
  }
78471
78982
  `, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: LucideX, selector: "svg[lucideX]" }, { kind: "component", type: LucideCheck, selector: "svg[lucideCheck]" }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
78472
78983
  }
78473
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ThemeGalleryComponent, decorators: [{
78984
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ThemeGalleryComponent, decorators: [{
78474
78985
  type: Component,
78475
78986
  args: [{
78476
78987
  selector: 'pptx-theme-gallery',
@@ -78700,8 +79211,8 @@ class TitleBarComponent {
78700
79211
  this.searchFocused.set(false);
78701
79212
  }
78702
79213
  }
78703
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TitleBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
78704
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: TitleBarComponent, isStandalone: true, selector: "pptx-title-bar", inputs: { canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null }, fileName: { classPropertyName: "fileName", publicName: "fileName", isSignal: true, isRequired: false, transformFunction: null }, isDirty: { classPropertyName: "isDirty", publicName: "isDirty", isSignal: true, isRequired: false, transformFunction: null }, autosaveStatus: { classPropertyName: "autosaveStatus", publicName: "autosaveStatus", isSignal: true, isRequired: false, transformFunction: null }, autosaveEnabled: { classPropertyName: "autosaveEnabled", publicName: "autosaveEnabled", isSignal: true, isRequired: false, transformFunction: null }, canUndo: { classPropertyName: "canUndo", publicName: "canUndo", isSignal: true, isRequired: false, transformFunction: null }, canRedo: { classPropertyName: "canRedo", publicName: "canRedo", isSignal: true, isRequired: false, transformFunction: null }, undoLabel: { classPropertyName: "undoLabel", publicName: "undoLabel", isSignal: true, isRequired: false, transformFunction: null }, redoLabel: { classPropertyName: "redoLabel", publicName: "redoLabel", isSignal: true, isRequired: false, transformFunction: null }, findReplaceOpen: { classPropertyName: "findReplaceOpen", publicName: "findReplaceOpen", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { toggleAutosave: "toggleAutosave", save: "save", undo: "undo", redo: "redo", toggleFindReplace: "toggleFindReplace", commandSearch: "commandSearch" }, ngImport: i0, template: `
79214
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TitleBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
79215
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: TitleBarComponent, isStandalone: true, selector: "pptx-title-bar", inputs: { canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null }, fileName: { classPropertyName: "fileName", publicName: "fileName", isSignal: true, isRequired: false, transformFunction: null }, isDirty: { classPropertyName: "isDirty", publicName: "isDirty", isSignal: true, isRequired: false, transformFunction: null }, autosaveStatus: { classPropertyName: "autosaveStatus", publicName: "autosaveStatus", isSignal: true, isRequired: false, transformFunction: null }, autosaveEnabled: { classPropertyName: "autosaveEnabled", publicName: "autosaveEnabled", isSignal: true, isRequired: false, transformFunction: null }, canUndo: { classPropertyName: "canUndo", publicName: "canUndo", isSignal: true, isRequired: false, transformFunction: null }, canRedo: { classPropertyName: "canRedo", publicName: "canRedo", isSignal: true, isRequired: false, transformFunction: null }, undoLabel: { classPropertyName: "undoLabel", publicName: "undoLabel", isSignal: true, isRequired: false, transformFunction: null }, redoLabel: { classPropertyName: "redoLabel", publicName: "redoLabel", isSignal: true, isRequired: false, transformFunction: null }, findReplaceOpen: { classPropertyName: "findReplaceOpen", publicName: "findReplaceOpen", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { toggleAutosave: "toggleAutosave", save: "save", undo: "undo", redo: "redo", toggleFindReplace: "toggleFindReplace", commandSearch: "commandSearch" }, ngImport: i0, template: `
78705
79216
  <div [class]="tb.container" data-pptx-title-bar>
78706
79217
  <span [class]="tb.logo" aria-hidden="true">P</span>
78707
79218
 
@@ -78857,7 +79368,7 @@ class TitleBarComponent {
78857
79368
  </div>
78858
79369
  `, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: LucideSave, selector: "svg[lucideSave]" }, { kind: "component", type: LucideUndo, selector: "svg[lucideUndo]" }, { kind: "component", type: LucideRedo, selector: "svg[lucideRedo]" }, { kind: "component", type: LucideSearch, selector: "svg[lucideSearch]" }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
78859
79370
  }
78860
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TitleBarComponent, decorators: [{
79371
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TitleBarComponent, decorators: [{
78861
79372
  type: Component,
78862
79373
  args: [{
78863
79374
  selector: 'pptx-title-bar',
@@ -79117,10 +79628,10 @@ class ViewerDialogsService {
79117
79628
  this.editingEquationOmml.set(omml);
79118
79629
  this.showEquation.set(true);
79119
79630
  }
79120
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerDialogsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
79121
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerDialogsService });
79631
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerDialogsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
79632
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerDialogsService });
79122
79633
  }
79123
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerDialogsService, decorators: [{
79634
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerDialogsService, decorators: [{
79124
79635
  type: Injectable
79125
79636
  }] });
79126
79637
 
@@ -79379,10 +79890,10 @@ class ViewerFormatPainterService {
79379
79890
  await navigator.clipboard.writeText(color).catch(() => undefined);
79380
79891
  }
79381
79892
  }
79382
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerFormatPainterService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
79383
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerFormatPainterService });
79893
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerFormatPainterService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
79894
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerFormatPainterService });
79384
79895
  }
79385
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerFormatPainterService, decorators: [{
79896
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerFormatPainterService, decorators: [{
79386
79897
  type: Injectable
79387
79898
  }] });
79388
79899
 
@@ -79574,10 +80085,10 @@ class ViewerCanvasEditingService {
79574
80085
  tableData: event.tableData,
79575
80086
  });
79576
80087
  }
79577
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerCanvasEditingService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
79578
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerCanvasEditingService });
80088
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerCanvasEditingService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
80089
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerCanvasEditingService });
79579
80090
  }
79580
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerCanvasEditingService, decorators: [{
80091
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerCanvasEditingService, decorators: [{
79581
80092
  type: Injectable
79582
80093
  }] });
79583
80094
 
@@ -79641,10 +80152,10 @@ class ViewerCollabCursorService {
79641
80152
  const y = clampCursorPosition((event.clientY - rect.top) / zoom, 0, size.height);
79642
80153
  this.collab.setCursor(x, y, host.activeSlideIndex());
79643
80154
  }
79644
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerCollabCursorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
79645
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerCollabCursorService });
80155
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerCollabCursorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
80156
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerCollabCursorService });
79646
80157
  }
79647
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerCollabCursorService, decorators: [{
80158
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerCollabCursorService, decorators: [{
79648
80159
  type: Injectable
79649
80160
  }] });
79650
80161
 
@@ -79805,10 +80316,10 @@ class ViewerCollaborationSessionService {
79805
80316
  this.activeSession.set(null);
79806
80317
  this.requireHost().emitStop();
79807
80318
  }
79808
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerCollaborationSessionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
79809
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerCollaborationSessionService });
80319
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerCollaborationSessionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
80320
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerCollaborationSessionService });
79810
80321
  }
79811
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerCollaborationSessionService, decorators: [{
80322
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerCollaborationSessionService, decorators: [{
79812
80323
  type: Injectable
79813
80324
  }] });
79814
80325
 
@@ -80003,10 +80514,10 @@ class ViewerCompareService {
80003
80514
  diffAt(index) {
80004
80515
  return this.svc.compareResult()?.diffs[index];
80005
80516
  }
80006
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerCompareService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
80007
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerCompareService });
80517
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerCompareService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
80518
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerCompareService });
80008
80519
  }
80009
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerCompareService, decorators: [{
80520
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerCompareService, decorators: [{
80010
80521
  type: Injectable
80011
80522
  }] });
80012
80523
 
@@ -80102,10 +80613,10 @@ class ViewerCustomShowsService {
80102
80613
  .filter((s) => s !== undefined);
80103
80614
  return picked.length > 0 ? picked : null;
80104
80615
  }
80105
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerCustomShowsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
80106
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerCustomShowsService });
80616
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerCustomShowsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
80617
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerCustomShowsService });
80107
80618
  }
80108
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerCustomShowsService, decorators: [{
80619
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerCustomShowsService, decorators: [{
80109
80620
  type: Injectable
80110
80621
  }] });
80111
80622
 
@@ -80174,10 +80685,10 @@ class ViewerDocumentPropertiesService {
80174
80685
  }
80175
80686
  this.showHyperlink.set(false);
80176
80687
  }
80177
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerDocumentPropertiesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
80178
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerDocumentPropertiesService });
80688
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerDocumentPropertiesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
80689
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerDocumentPropertiesService });
80179
80690
  }
80180
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerDocumentPropertiesService, decorators: [{
80691
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerDocumentPropertiesService, decorators: [{
80181
80692
  type: Injectable
80182
80693
  }] });
80183
80694
 
@@ -80401,10 +80912,10 @@ class ViewerExportService {
80401
80912
  const canvas = await this.exportSvc.renderElement(el);
80402
80913
  return canvas.toDataURL('image/png');
80403
80914
  }
80404
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerExportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
80405
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerExportService });
80915
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerExportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
80916
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerExportService });
80406
80917
  }
80407
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerExportService, decorators: [{
80918
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerExportService, decorators: [{
80408
80919
  type: Injectable
80409
80920
  }] });
80410
80921
 
@@ -80471,8 +80982,8 @@ class SlideDiffChangesComponent {
80471
80982
  changes = input.required(/* @ts-ignore */
80472
80983
  ...(ngDevMode ? [{ debugName: "changes" }] : /* istanbul ignore next */ []));
80473
80984
  icon = changeIcon;
80474
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SlideDiffChangesComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
80475
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: SlideDiffChangesComponent, isStandalone: true, selector: "pptx-slide-diff-changes", inputs: { changes: { classPropertyName: "changes", publicName: "changes", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0, template: `
80985
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SlideDiffChangesComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
80986
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: SlideDiffChangesComponent, isStandalone: true, selector: "pptx-slide-diff-changes", inputs: { changes: { classPropertyName: "changes", publicName: "changes", isSignal: true, isRequired: true, transformFunction: null } }, ngImport: i0, template: `
80476
80987
  <div class="pptx-ng-diff-changes">
80477
80988
  @for (change of changes(); track $index) {
80478
80989
  <div class="pptx-ng-diff-change">
@@ -80485,7 +80996,7 @@ class SlideDiffChangesComponent {
80485
80996
  </div>
80486
80997
  `, isInline: true, styles: [".pptx-ng-diff-changes{display:flex;flex-direction:column;gap:.25rem}.pptx-ng-diff-change{display:flex;align-items:flex-start;gap:.5rem;padding:.375rem .5rem;border-radius:.25rem;background:#6b728026;font-size:.6875rem}.pptx-ng-diff-change-icon{flex-shrink:0;font-weight:700;color:var(--pptx-muted-foreground, #9ca3af)}.pptx-ng-diff-change-icon[data-kind=added]{color:#4ade80}.pptx-ng-diff-change-icon[data-kind=removed]{color:#f87171}.pptx-ng-diff-change-icon[data-kind=moved]{color:var(--pptx-primary, #6366f1)}.pptx-ng-diff-change-icon[data-kind=resized]{color:#fbbf24}.pptx-ng-diff-change-icon[data-kind=textChanged]{color:#c084fc}.pptx-ng-diff-change-desc{color:var(--pptx-foreground, #f3f4f6)}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
80487
80998
  }
80488
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SlideDiffChangesComponent, decorators: [{
80999
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SlideDiffChangesComponent, decorators: [{
80489
81000
  type: Component,
80490
81001
  args: [{ selector: 'pptx-slide-diff-changes', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, template: `
80491
81002
  <div class="pptx-ng-diff-changes">
@@ -80529,8 +81040,8 @@ class SlideDiffThumbnailsComponent {
80529
81040
  ...(ngDevMode ? [{ debugName: "thumbZoom" }] : /* istanbul ignore next */ []));
80530
81041
  thumbH = computed(() => thumbnailHeight(this.canvasSize().width, this.canvasSize().height, THUMB_W), /* @ts-ignore */
80531
81042
  ...(ngDevMode ? [{ debugName: "thumbH" }] : /* istanbul ignore next */ []));
80532
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SlideDiffThumbnailsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
80533
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: SlideDiffThumbnailsComponent, isStandalone: true, selector: "pptx-slide-diff-thumbnails", inputs: { diff: { classPropertyName: "diff", publicName: "diff", isSignal: true, isRequired: true, transformFunction: null }, canvasSize: { classPropertyName: "canvasSize", publicName: "canvasSize", isSignal: true, isRequired: true, transformFunction: null }, mediaDataUrls: { classPropertyName: "mediaDataUrls", publicName: "mediaDataUrls", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
81043
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SlideDiffThumbnailsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
81044
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: SlideDiffThumbnailsComponent, isStandalone: true, selector: "pptx-slide-diff-thumbnails", inputs: { diff: { classPropertyName: "diff", publicName: "diff", isSignal: true, isRequired: true, transformFunction: null }, canvasSize: { classPropertyName: "canvasSize", publicName: "canvasSize", isSignal: true, isRequired: true, transformFunction: null }, mediaDataUrls: { classPropertyName: "mediaDataUrls", publicName: "mediaDataUrls", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
80534
81045
  <div class="pptx-ng-diff-thumbs">
80535
81046
  @if (diff().baseSlide; as base) {
80536
81047
  <div class="pptx-ng-diff-thumb-col">
@@ -80578,7 +81089,7 @@ class SlideDiffThumbnailsComponent {
80578
81089
  </div>
80579
81090
  `, isInline: true, styles: [".pptx-ng-diff-thumbs{display:flex;gap:.5rem}.pptx-ng-diff-thumb-col{flex:1}.pptx-ng-diff-thumb-label{margin-bottom:.25rem;font-size:.625rem;color:var(--pptx-muted-foreground, #9ca3af)}.pptx-ng-diff-thumb-clip{overflow:hidden;border:1px solid var(--pptx-border, #374151);border-radius:.25rem}.pptx-ng-diff-thumb-clip[data-status=added]{border-color:#15803d99}.pptx-ng-diff-thumb-clip[data-status=changed]{border-color:#b4530999}.pptx-ng-diff-thumb-clip ::ng-deep .pptx-ng-canvas-wrapper{margin:0!important}\n"], dependencies: [{ kind: "component", type: SlideCanvasComponent, selector: "pptx-slide-canvas", inputs: ["slide", "canvasSize", "mediaDataUrls", "zoom", "editable", "showGrid", "showRulers", "showGuides", "snapToGrid", "snapToGuides", "autoFit", "interactive", "presenting", "selectedIds", "editingId", "editTemplateMode", "templateElements", "drawTool", "drawColor", "drawWidth"], outputs: ["elementSelect", "backgroundClick", "transformStart", "transformUpdate", "contextMenu", "textEditStart", "textCommit", "textCancel", "textFormat", "rotateUpdate", "marqueeSelect", "inkStrokeComplete", "eraserHit", "cellCommit", "tableChange"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
80580
81091
  }
80581
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SlideDiffThumbnailsComponent, decorators: [{
81092
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SlideDiffThumbnailsComponent, decorators: [{
80582
81093
  type: Component,
80583
81094
  args: [{ selector: 'pptx-slide-diff-thumbnails', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [SlideCanvasComponent, TranslatePipe], template: `
80584
81095
  <div class="pptx-ng-diff-thumbs">
@@ -80677,8 +81188,8 @@ class SlideDiffRowComponent {
80677
81188
  toggle() {
80678
81189
  this.expandedOverride.set(!this.expanded());
80679
81190
  }
80680
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SlideDiffRowComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
80681
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: SlideDiffRowComponent, isStandalone: true, selector: "pptx-slide-diff-row", inputs: { diff: { classPropertyName: "diff", publicName: "diff", isSignal: true, isRequired: true, transformFunction: null }, diffIndex: { classPropertyName: "diffIndex", publicName: "diffIndex", isSignal: true, isRequired: true, transformFunction: null }, canvasSize: { classPropertyName: "canvasSize", publicName: "canvasSize", isSignal: true, isRequired: true, transformFunction: null }, mediaDataUrls: { classPropertyName: "mediaDataUrls", publicName: "mediaDataUrls", isSignal: true, isRequired: false, transformFunction: null }, accepted: { classPropertyName: "accepted", publicName: "accepted", isSignal: true, isRequired: false, transformFunction: null }, rejected: { classPropertyName: "rejected", publicName: "rejected", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { accept: "accept", reject: "reject" }, ngImport: i0, template: `
81191
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SlideDiffRowComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
81192
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: SlideDiffRowComponent, isStandalone: true, selector: "pptx-slide-diff-row", inputs: { diff: { classPropertyName: "diff", publicName: "diff", isSignal: true, isRequired: true, transformFunction: null }, diffIndex: { classPropertyName: "diffIndex", publicName: "diffIndex", isSignal: true, isRequired: true, transformFunction: null }, canvasSize: { classPropertyName: "canvasSize", publicName: "canvasSize", isSignal: true, isRequired: true, transformFunction: null }, mediaDataUrls: { classPropertyName: "mediaDataUrls", publicName: "mediaDataUrls", isSignal: true, isRequired: false, transformFunction: null }, accepted: { classPropertyName: "accepted", publicName: "accepted", isSignal: true, isRequired: false, transformFunction: null }, rejected: { classPropertyName: "rejected", publicName: "rejected", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { accept: "accept", reject: "reject" }, ngImport: i0, template: `
80682
81193
  @if (diff().status !== 'unchanged') {
80683
81194
  <div class="pptx-ng-diff-row" [class.is-resolved]="isResolved()">
80684
81195
  <!-- Header (toggles expand) -->
@@ -80745,7 +81256,7 @@ class SlideDiffRowComponent {
80745
81256
  }
80746
81257
  `, isInline: true, styles: [".pptx-ng-diff-row{border:1px solid var(--pptx-border, #374151);border-radius:.5rem;background:var(--pptx-background, #030712)}.pptx-ng-diff-row.is-resolved{opacity:.6;background:var(--pptx-card, #111827)}.pptx-ng-diff-head{display:flex;align-items:center;gap:.5rem;width:100%;padding:.5rem .75rem;text-align:left;border:none;background:transparent;color:var(--pptx-foreground, #f3f4f6);cursor:pointer}.pptx-ng-diff-chevron{flex-shrink:0;color:var(--pptx-muted-foreground, #9ca3af);font-size:.75rem}.pptx-ng-diff-slide{font-size:.75rem}.pptx-ng-diff-pill{border-radius:9999px;padding:.0625rem .5rem;font-size:.625rem;font-weight:500;color:var(--pptx-muted-foreground, #9ca3af);background:#6b728033}.pptx-ng-diff-pill[data-status=added]{color:#4ade80;background:#14532d4d}.pptx-ng-diff-pill[data-status=removed]{color:#f87171;background:#7f1d1d4d}.pptx-ng-diff-pill[data-status=changed]{color:#fbbf24;background:#78350f4d}.pptx-ng-diff-count{font-size:.625rem;color:var(--pptx-muted-foreground, #9ca3af)}.pptx-ng-diff-spacer{flex:1}.pptx-ng-diff-tag{font-size:.625rem;font-weight:500;color:var(--pptx-muted-foreground, #9ca3af)}.pptx-ng-diff-tag.is-accepted{color:#4ade80}.pptx-ng-diff-body{display:flex;flex-direction:column;gap:.5rem;padding:0 .75rem .75rem}.pptx-ng-diff-actions{display:flex;gap:.5rem;padding-top:.25rem}.pptx-ng-diff-btn{display:inline-flex;align-items:center;gap:.25rem;padding:.25rem .625rem;border:none;border-radius:.25rem;font-size:.6875rem;cursor:pointer}.pptx-ng-diff-btn.is-accept{background:#15803dcc;color:#f0fdf4}.pptx-ng-diff-btn.is-accept:hover{background:#16a34a}.pptx-ng-diff-btn.is-reject{background:var(--pptx-card, #111827);color:var(--pptx-foreground, #f3f4f6)}.pptx-ng-diff-btn.is-reject:hover{filter:brightness(1.2)}\n"], dependencies: [{ kind: "component", type: SlideDiffThumbnailsComponent, selector: "pptx-slide-diff-thumbnails", inputs: ["diff", "canvasSize", "mediaDataUrls"] }, { kind: "component", type: SlideDiffChangesComponent, selector: "pptx-slide-diff-changes", inputs: ["changes"] }, { kind: "component", type: LucideChevronDown, selector: "svg[lucideChevronDown]" }, { kind: "component", type: LucideChevronRight, selector: "svg[lucideChevronRight]" }, { kind: "component", type: LucideCheck, selector: "svg[lucideCheck]" }, { kind: "component", type: LucideX, selector: "svg[lucideX]" }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
80747
81258
  }
80748
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SlideDiffRowComponent, decorators: [{
81259
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SlideDiffRowComponent, decorators: [{
80749
81260
  type: Component,
80750
81261
  args: [{ selector: 'pptx-slide-diff-row', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [
80751
81262
  SlideDiffThumbnailsComponent,
@@ -80897,8 +81408,8 @@ class ComparePanelComponent {
80897
81408
  this.rejected.set({});
80898
81409
  this.acceptAll.emit();
80899
81410
  }
80900
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ComparePanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
80901
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: ComparePanelComponent, isStandalone: true, selector: "pptx-compare-panel", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, compareResult: { classPropertyName: "compareResult", publicName: "compareResult", isSignal: true, isRequired: false, transformFunction: null }, canvasSize: { classPropertyName: "canvasSize", publicName: "canvasSize", isSignal: true, isRequired: true, transformFunction: null }, mediaDataUrls: { classPropertyName: "mediaDataUrls", publicName: "mediaDataUrls", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { close: "close", acceptSlide: "acceptSlide", rejectSlide: "rejectSlide", acceptAll: "acceptAll" }, ngImport: i0, template: `
81411
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ComparePanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
81412
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: ComparePanelComponent, isStandalone: true, selector: "pptx-compare-panel", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, compareResult: { classPropertyName: "compareResult", publicName: "compareResult", isSignal: true, isRequired: false, transformFunction: null }, canvasSize: { classPropertyName: "canvasSize", publicName: "canvasSize", isSignal: true, isRequired: true, transformFunction: null }, mediaDataUrls: { classPropertyName: "mediaDataUrls", publicName: "mediaDataUrls", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { close: "close", acceptSlide: "acceptSlide", rejectSlide: "rejectSlide", acceptAll: "acceptAll" }, ngImport: i0, template: `
80902
81413
  @if (open() && compareResult(); as result) {
80903
81414
  <div class="pptx-ng-compare">
80904
81415
  <!-- Header -->
@@ -80964,7 +81475,7 @@ class ComparePanelComponent {
80964
81475
  }
80965
81476
  `, isInline: true, styles: [".pptx-ng-compare{position:fixed;inset-block:0;right:0;z-index:50;display:flex;flex-direction:column;width:440px;max-width:100%;border-left:1px solid var(--pptx-border, #374151);background:var(--pptx-popover, #0b1220);-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);box-shadow:-12px 0 40px #00000080}.pptx-ng-compare-head{display:flex;align-items:center;justify-content:space-between;padding:.75rem 1rem;border-bottom:1px solid var(--pptx-border, #374151)}.pptx-ng-compare-title{margin:0;font-size:.875rem;font-weight:500;color:var(--pptx-foreground, #f3f4f6)}.pptx-ng-compare-summary{margin:.125rem 0 0;font-size:.6875rem;color:var(--pptx-muted-foreground, #9ca3af)}.pptx-ng-compare-close{padding:.375rem;border:none;border-radius:.25rem;background:transparent;color:var(--pptx-muted-foreground, #9ca3af);cursor:pointer;transition:background .15s ease}.pptx-ng-compare-close:hover{background:var(--pptx-muted, #1f2937);color:var(--pptx-foreground, #f3f4f6)}.pptx-ng-compare-acceptall{padding:.5rem 1rem;border-bottom:1px solid var(--pptx-border, #374151)}.pptx-ng-compare-acceptall-btn{display:inline-flex;align-items:center;gap:.375rem;padding:.375rem .75rem;border:none;border-radius:.25rem;background:#15803dcc;color:#f0fdf4;font-size:.75rem;cursor:pointer;transition:background .15s ease}.pptx-ng-compare-acceptall-btn:hover{background:#16a34a}.pptx-ng-compare-list{flex:1;overflow-y:auto;display:flex;flex-direction:column;gap:.5rem;padding:.75rem}.pptx-ng-compare-empty{padding:2rem 0;text-align:center;font-size:.75rem;color:var(--pptx-muted-foreground, #9ca3af)}\n"], dependencies: [{ kind: "component", type: SlideDiffRowComponent, selector: "pptx-slide-diff-row", inputs: ["diff", "diffIndex", "canvasSize", "mediaDataUrls", "accepted", "rejected"], outputs: ["accept", "reject"] }, { kind: "component", type: LucideCheck, selector: "svg[lucideCheck]" }, { kind: "component", type: LucideX, selector: "svg[lucideX]" }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
80966
81477
  }
80967
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ComparePanelComponent, decorators: [{
81478
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ComparePanelComponent, decorators: [{
80968
81479
  type: Component,
80969
81480
  args: [{ selector: 'pptx-compare-panel', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [SlideDiffRowComponent, TranslatePipe, LucideCheck, LucideX], template: `
80970
81481
  @if (open() && compareResult(); as result) {
@@ -81051,8 +81562,8 @@ class EncryptedFileDialogComponent {
81051
81562
  ...(ngDevMode ? [{ debugName: "open" }] : /* istanbul ignore next */ []));
81052
81563
  /** Fired when the dialog is dismissed. */
81053
81564
  close = output();
81054
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EncryptedFileDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
81055
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.5", type: EncryptedFileDialogComponent, isStandalone: true, selector: "pptx-encrypted-file-dialog", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { close: "close" }, ngImport: i0, template: `
81565
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EncryptedFileDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
81566
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.6", type: EncryptedFileDialogComponent, isStandalone: true, selector: "pptx-encrypted-file-dialog", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { close: "close" }, ngImport: i0, template: `
81056
81567
  <pptx-modal-dialog
81057
81568
  [open]="open()"
81058
81569
  [title]="'pptx.encryptedFile.title' | translate"
@@ -81078,7 +81589,7 @@ class EncryptedFileDialogComponent {
81078
81589
  </pptx-modal-dialog>
81079
81590
  `, isInline: true, styles: [".pptx-ng-enc{display:flex;flex-direction:column;gap:1rem}.pptx-ng-enc-callout{display:flex;align-items:flex-start;gap:.75rem;padding:.75rem 1rem;border:1px solid rgba(239,68,68,.3);border-radius:.5rem;background:#ef44441f}.pptx-ng-enc-icon{flex-shrink:0;font-size:1.125rem;line-height:1.4}.pptx-ng-enc-text{display:flex;flex-direction:column;gap:.5rem}.pptx-ng-enc-message{margin:0;font-size:.75rem;line-height:1.5;color:#fecaca}.pptx-ng-enc-instructions{margin:0;font-size:.6875rem;line-height:1.5;color:#fca5a5b3}.pptx-ng-enc-btn{padding:.375rem .75rem;border:1px solid var(--pptx-border, #374151);border-radius:.375rem;background:var(--pptx-card, #111827);color:var(--pptx-foreground, #f3f4f6);font-size:.75rem;cursor:pointer}.pptx-ng-enc-btn:hover{background:var(--pptx-border, #374151)}\n"], dependencies: [{ kind: "component", type: ModalDialogComponent, selector: "pptx-modal-dialog", inputs: ["open", "title"], outputs: ["close"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
81080
81591
  }
81081
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EncryptedFileDialogComponent, decorators: [{
81592
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EncryptedFileDialogComponent, decorators: [{
81082
81593
  type: Component,
81083
81594
  args: [{ selector: 'pptx-encrypted-file-dialog', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [ModalDialogComponent, TranslatePipe], template: `
81084
81595
  <pptx-modal-dialog
@@ -81185,8 +81696,8 @@ class EquationTemplateGalleryComponent {
81185
81696
  mathml: this.sanitizer.bypassSecurityTrustHtml(latexToMathml(tmpl.latex)),
81186
81697
  i18nKey: TEMPLATE_I18N_KEYS[tmpl.label] ?? tmpl.label,
81187
81698
  }));
81188
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EquationTemplateGalleryComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
81189
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: EquationTemplateGalleryComponent, isStandalone: true, selector: "pptx-equation-template-gallery", inputs: { activeLatex: { classPropertyName: "activeLatex", publicName: "activeLatex", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { select: "select" }, ngImport: i0, template: `
81699
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EquationTemplateGalleryComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
81700
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: EquationTemplateGalleryComponent, isStandalone: true, selector: "pptx-equation-template-gallery", inputs: { activeLatex: { classPropertyName: "activeLatex", publicName: "activeLatex", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { select: "select" }, ngImport: i0, template: `
81190
81701
  <div class="pptx-ng-eq-field">
81191
81702
  <h3 class="pptx-ng-eq-templates-title">{{ 'pptx.equation.templates' | translate }}</h3>
81192
81703
  <div class="pptx-ng-eq-grid">
@@ -81206,7 +81717,7 @@ class EquationTemplateGalleryComponent {
81206
81717
  </div>
81207
81718
  `, isInline: true, styles: [".pptx-ng-eq-field{display:flex;flex-direction:column;gap:.375rem}.pptx-ng-eq-templates-title{margin:0;font-size:.75rem;font-weight:500;color:var(--pptx-muted-foreground, #9ca3af)}.pptx-ng-eq-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:.375rem}.pptx-ng-eq-template{display:flex;flex-direction:column;align-items:center;gap:.25rem;padding:.5rem;border:1px solid var(--pptx-border, #374151);border-radius:.5rem;background:var(--pptx-card, #111827);cursor:pointer;transition:background .15s ease,border-color .15s ease}.pptx-ng-eq-template:hover{background:var(--pptx-border, #374151)}.pptx-ng-eq-template.is-active{border-color:var(--pptx-primary, #6366f1);background:color-mix(in srgb,var(--pptx-primary, #6366f1) 12%,transparent)}.pptx-ng-eq-template-math{display:flex;align-items:center;justify-content:center;height:2rem;overflow:hidden;font-size:.875rem;color:var(--pptx-foreground, #f3f4f6);font-family:\"Cambria Math\",\"STIX Two Math\",serif}.pptx-ng-eq-template-label{width:100%;text-align:center;font-size:.625rem;color:var(--pptx-muted-foreground, #9ca3af);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
81208
81719
  }
81209
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EquationTemplateGalleryComponent, decorators: [{
81720
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EquationTemplateGalleryComponent, decorators: [{
81210
81721
  type: Component,
81211
81722
  args: [{ selector: 'pptx-equation-template-gallery', standalone: true, imports: [TranslatePipe], changeDetection: ChangeDetectionStrategy.OnPush, template: `
81212
81723
  <div class="pptx-ng-eq-field">
@@ -81318,8 +81829,8 @@ class EquationEditorDialogComponent {
81318
81829
  this.insert.emit(this.omml());
81319
81830
  this.close.emit();
81320
81831
  }
81321
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EquationEditorDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
81322
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: EquationEditorDialogComponent, isStandalone: true, selector: "pptx-equation-editor-dialog", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, existingOmml: { classPropertyName: "existingOmml", publicName: "existingOmml", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { insert: "insert", close: "close" }, ngImport: i0, template: `
81832
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EquationEditorDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
81833
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: EquationEditorDialogComponent, isStandalone: true, selector: "pptx-equation-editor-dialog", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, existingOmml: { classPropertyName: "existingOmml", publicName: "existingOmml", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { insert: "insert", close: "close" }, ngImport: i0, template: `
81323
81834
  <pptx-modal-dialog [open]="open()" [title]="dialogTitle() | translate" (close)="close.emit()">
81324
81835
  <div class="pptx-ng-eq">
81325
81836
  <!-- Live preview -->
@@ -81369,7 +81880,7 @@ class EquationEditorDialogComponent {
81369
81880
  </pptx-modal-dialog>
81370
81881
  `, isInline: true, styles: [".pptx-ng-eq{display:flex;flex-direction:column;gap:1rem;width:min(88vw,600px)}.pptx-ng-eq-preview{display:flex;align-items:center;justify-content:center;min-height:80px;padding:1rem;border:1px solid var(--pptx-border, #374151);border-radius:.5rem;background:var(--pptx-muted, #111827)}.pptx-ng-eq-math{font-size:1.5rem;color:var(--pptx-foreground, #f3f4f6);font-family:\"Cambria Math\",\"STIX Two Math\",serif}.pptx-ng-eq-placeholder{font-size:.8125rem;font-style:italic;color:var(--pptx-muted-foreground, #9ca3af)}.pptx-ng-eq-field{display:flex;flex-direction:column;gap:.375rem}.pptx-ng-eq-label{font-size:.75rem;font-weight:500;color:var(--pptx-muted-foreground, #9ca3af)}.pptx-ng-eq-textarea{width:100%;height:6rem;padding:.5rem .75rem;border:1px solid var(--pptx-border, #374151);border-radius:.5rem;background:var(--pptx-muted, #111827);color:var(--pptx-foreground, #f3f4f6);font-size:.8125rem;font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;resize:none}.pptx-ng-eq-textarea:focus{outline:none;border-color:var(--pptx-primary, #6366f1)}.pptx-ng-eq-hint{margin:0;font-size:.6875rem;color:var(--pptx-muted-foreground, #9ca3af)}.pptx-ng-eq-btn{padding:.375rem .75rem;border:1px solid var(--pptx-border, #374151);border-radius:.375rem;background:var(--pptx-card, #111827);color:var(--pptx-foreground, #f3f4f6);font-size:.75rem;cursor:pointer;transition:background .15s ease}.pptx-ng-eq-btn:hover:not(:disabled){background:var(--pptx-border, #374151)}.pptx-ng-eq-btn:disabled{opacity:.4;cursor:not-allowed}.pptx-ng-eq-btn-primary{border-color:var(--pptx-primary, #6366f1);background:var(--pptx-primary, #6366f1);color:#fff;font-weight:500}.pptx-ng-eq-btn-primary:hover:not(:disabled){filter:brightness(1.1)}\n"], dependencies: [{ kind: "component", type: ModalDialogComponent, selector: "pptx-modal-dialog", inputs: ["open", "title"], outputs: ["close"] }, { kind: "component", type: EquationTemplateGalleryComponent, selector: "pptx-equation-template-gallery", inputs: ["activeLatex"], outputs: ["select"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
81371
81882
  }
81372
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EquationEditorDialogComponent, decorators: [{
81883
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EquationEditorDialogComponent, decorators: [{
81373
81884
  type: Component,
81374
81885
  args: [{ selector: 'pptx-equation-editor-dialog', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [ModalDialogComponent, EquationTemplateGalleryComponent, TranslatePipe], template: `
81375
81886
  <pptx-modal-dialog [open]="open()" [title]="dialogTitle() | translate" (close)="close.emit()">
@@ -81491,8 +82002,8 @@ class FontEmbeddingListComponent {
81491
82002
  /** How many used families failed to resolve in the browser. */
81492
82003
  missingCount = input(0, /* @ts-ignore */
81493
82004
  ...(ngDevMode ? [{ debugName: "missingCount" }] : /* istanbul ignore next */ []));
81494
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FontEmbeddingListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
81495
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: FontEmbeddingListComponent, isStandalone: true, selector: "pptx-font-embedding-list", inputs: { usedFontFamilies: { classPropertyName: "usedFontFamilies", publicName: "usedFontFamilies", isSignal: true, isRequired: false, transformFunction: null }, availableFamilies: { classPropertyName: "availableFamilies", publicName: "availableFamilies", isSignal: true, isRequired: false, transformFunction: null }, embeddedSet: { classPropertyName: "embeddedSet", publicName: "embeddedSet", isSignal: true, isRequired: false, transformFunction: null }, scanning: { classPropertyName: "scanning", publicName: "scanning", isSignal: true, isRequired: false, transformFunction: null }, missingCount: { classPropertyName: "missingCount", publicName: "missingCount", isSignal: true, isRequired: false, transformFunction: null } }, host: { classAttribute: "contents" }, ngImport: i0, template: `
82005
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: FontEmbeddingListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
82006
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: FontEmbeddingListComponent, isStandalone: true, selector: "pptx-font-embedding-list", inputs: { usedFontFamilies: { classPropertyName: "usedFontFamilies", publicName: "usedFontFamilies", isSignal: true, isRequired: false, transformFunction: null }, availableFamilies: { classPropertyName: "availableFamilies", publicName: "availableFamilies", isSignal: true, isRequired: false, transformFunction: null }, embeddedSet: { classPropertyName: "embeddedSet", publicName: "embeddedSet", isSignal: true, isRequired: false, transformFunction: null }, scanning: { classPropertyName: "scanning", publicName: "scanning", isSignal: true, isRequired: false, transformFunction: null }, missingCount: { classPropertyName: "missingCount", publicName: "missingCount", isSignal: true, isRequired: false, transformFunction: null } }, host: { classAttribute: "contents" }, ngImport: i0, template: `
81496
82007
  <div class="pptx-ng-fonts-section">
81497
82008
  <h3 class="pptx-ng-fonts-section-title">
81498
82009
  {{ 'pptx.fontEmbedding.usedFonts' | translate: { count: usedFontFamilies().length } }}
@@ -81539,7 +82050,7 @@ class FontEmbeddingListComponent {
81539
82050
  }
81540
82051
  `, isInline: true, styles: [".pptx-ng-fonts-section{display:flex;flex-direction:column;gap:.25rem}.pptx-ng-fonts-section-title{margin:0;font-size:.75rem;font-weight:500;color:var(--pptx-foreground, #f3f4f6)}.pptx-ng-fonts-scanning{display:flex;align-items:center;justify-content:center;gap:.5rem;padding:1rem 0;font-size:.75rem;color:var(--pptx-muted-foreground, #9ca3af)}.pptx-ng-fonts-spinner{width:1rem;height:1rem;border:2px solid var(--pptx-muted-foreground, #9ca3af);border-top-color:transparent;border-radius:9999px;animation:pptx-ng-fonts-spin .7s linear infinite}@keyframes pptx-ng-fonts-spin{to{transform:rotate(360deg)}}.pptx-ng-fonts-list{display:flex;flex-direction:column;gap:.25rem;max-height:280px;overflow-y:auto}.pptx-ng-fonts-row{display:flex;align-items:center;justify-content:space-between;gap:.5rem;padding:.5rem .75rem;border-radius:.5rem;background:var(--pptx-muted, rgba(31, 41, 55, .6))}.pptx-ng-fonts-name{font-size:.75rem;color:var(--pptx-foreground, #f3f4f6)}.pptx-ng-fonts-status{display:flex;align-items:center;gap:.5rem}.pptx-ng-fonts-badge{padding:.0625rem .375rem;font-size:.625rem;color:#4ade80;background:#14532d66;border:1px solid rgba(21,128,61,.4);border-radius:.25rem}.pptx-ng-fonts-check{font-size:.875rem;color:#4ade80}.pptx-ng-fonts-missing{font-size:.625rem;color:#facc15}.pptx-ng-fonts-warning{margin:0;font-size:.6875rem;color:#facc15cc}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
81541
82052
  }
81542
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FontEmbeddingListComponent, decorators: [{
82053
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: FontEmbeddingListComponent, decorators: [{
81543
82054
  type: Component,
81544
82055
  args: [{ selector: 'pptx-font-embedding-list', standalone: true, imports: [TranslatePipe], changeDetection: ChangeDetectionStrategy.OnPush, host: { class: 'contents' }, template: `
81545
82056
  <div class="pptx-ng-fonts-section">
@@ -81663,8 +82174,8 @@ class FontEmbeddingPanelComponent {
81663
82174
  this.scanning.set(false);
81664
82175
  }
81665
82176
  }
81666
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FontEmbeddingPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
81667
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.5", type: FontEmbeddingPanelComponent, isStandalone: true, selector: "pptx-font-embedding-panel", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, embedFontsEnabled: { classPropertyName: "embedFontsEnabled", publicName: "embedFontsEnabled", isSignal: true, isRequired: false, transformFunction: null }, usedFontFamilies: { classPropertyName: "usedFontFamilies", publicName: "usedFontFamilies", isSignal: true, isRequired: false, transformFunction: null }, embeddedFonts: { classPropertyName: "embeddedFonts", publicName: "embeddedFonts", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { close: "close", toggleEmbedFonts: "toggleEmbedFonts" }, ngImport: i0, template: `
82177
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: FontEmbeddingPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
82178
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.6", type: FontEmbeddingPanelComponent, isStandalone: true, selector: "pptx-font-embedding-panel", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, embedFontsEnabled: { classPropertyName: "embedFontsEnabled", publicName: "embedFontsEnabled", isSignal: true, isRequired: false, transformFunction: null }, usedFontFamilies: { classPropertyName: "usedFontFamilies", publicName: "usedFontFamilies", isSignal: true, isRequired: false, transformFunction: null }, embeddedFonts: { classPropertyName: "embeddedFonts", publicName: "embeddedFonts", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { close: "close", toggleEmbedFonts: "toggleEmbedFonts" }, ngImport: i0, template: `
81668
82179
  <pptx-modal-dialog
81669
82180
  [open]="open()"
81670
82181
  [title]="'pptx.fontEmbedding.title' | translate"
@@ -81707,7 +82218,7 @@ class FontEmbeddingPanelComponent {
81707
82218
  </pptx-modal-dialog>
81708
82219
  `, isInline: true, styles: [".pptx-ng-fonts{display:flex;flex-direction:column;gap:1rem}.pptx-ng-fonts-desc{margin:0;font-size:.75rem;line-height:1.5;color:var(--pptx-muted-foreground, #9ca3af)}.pptx-ng-fonts-toggle{display:flex;align-items:center;gap:.75rem;cursor:pointer}.pptx-ng-fonts-switch{position:relative;display:inline-block;width:2.25rem;height:1.25rem;border-radius:9999px;background:var(--pptx-muted-foreground, #6b7280);transition:background .15s ease}.pptx-ng-fonts-switch.is-on{background:var(--pptx-primary, #6366f1)}.pptx-ng-fonts-switch-input{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.pptx-ng-fonts-switch-knob{position:absolute;top:.125rem;left:.125rem;width:1rem;height:1rem;border-radius:9999px;background:#fff;transition:transform .15s ease}.pptx-ng-fonts-switch-knob.is-on{transform:translate(1rem)}.pptx-ng-fonts-toggle-label{font-size:.75rem;color:var(--pptx-foreground, #f3f4f6)}.pptx-ng-fonts-done{padding:.375rem .75rem;font-size:.75rem;color:#fff;background:var(--pptx-primary, #6366f1);border:1px solid var(--pptx-primary, #6366f1);border-radius:.5rem;cursor:pointer;transition:filter .15s ease}.pptx-ng-fonts-done:hover{filter:brightness(1.1)}\n"], dependencies: [{ kind: "component", type: ModalDialogComponent, selector: "pptx-modal-dialog", inputs: ["open", "title"], outputs: ["close"] }, { kind: "component", type: FontEmbeddingListComponent, selector: "pptx-font-embedding-list", inputs: ["usedFontFamilies", "availableFamilies", "embeddedSet", "scanning", "missingCount"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
81709
82220
  }
81710
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FontEmbeddingPanelComponent, decorators: [{
82221
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: FontEmbeddingPanelComponent, decorators: [{
81711
82222
  type: Component,
81712
82223
  args: [{ selector: 'pptx-font-embedding-panel', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [ModalDialogComponent, FontEmbeddingListComponent, TranslatePipe], template: `
81713
82224
  <pptx-modal-dialog
@@ -81780,8 +82291,8 @@ class KeepAnnotationsDialogComponent {
81780
82291
  keep = output();
81781
82292
  /** Fired when the user discards the annotations (also on dismiss). */
81782
82293
  discard = output();
81783
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: KeepAnnotationsDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
81784
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.5", type: KeepAnnotationsDialogComponent, isStandalone: true, selector: "pptx-keep-annotations-dialog", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, annotationCount: { classPropertyName: "annotationCount", publicName: "annotationCount", isSignal: true, isRequired: false, transformFunction: null }, slideCount: { classPropertyName: "slideCount", publicName: "slideCount", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { keep: "keep", discard: "discard" }, ngImport: i0, template: `
82294
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: KeepAnnotationsDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
82295
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.6", type: KeepAnnotationsDialogComponent, isStandalone: true, selector: "pptx-keep-annotations-dialog", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, annotationCount: { classPropertyName: "annotationCount", publicName: "annotationCount", isSignal: true, isRequired: false, transformFunction: null }, slideCount: { classPropertyName: "slideCount", publicName: "slideCount", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { keep: "keep", discard: "discard" }, ngImport: i0, template: `
81785
82296
  <pptx-modal-dialog
81786
82297
  [open]="open()"
81787
82298
  [title]="'pptx.keepAnnotations.title' | translate"
@@ -81812,7 +82323,7 @@ class KeepAnnotationsDialogComponent {
81812
82323
  </pptx-modal-dialog>
81813
82324
  `, isInline: true, styles: [".pptx-ng-keep{display:flex;align-items:flex-start;gap:.75rem}.pptx-ng-keep-badge{display:flex;align-items:center;justify-content:center;width:2.5rem;height:2.5rem;flex-shrink:0;border-radius:9999px;background:#6366f126;font-size:1.125rem}.pptx-ng-keep-desc{margin:0;font-size:.8125rem;line-height:1.5;color:var(--pptx-muted-foreground, #9ca3af)}.pptx-ng-keep-btn{display:inline-flex;align-items:center;gap:.375rem;padding:.375rem .875rem;border:1px solid var(--pptx-border, #374151);border-radius:.375rem;background:var(--pptx-card, #111827);color:var(--pptx-foreground, #f3f4f6);font-size:.75rem;font-weight:500;cursor:pointer;white-space:nowrap}.pptx-ng-keep-btn:hover{background:var(--pptx-border, #374151)}.pptx-ng-keep-btn-primary{border-color:var(--pptx-primary, #6366f1);background:var(--pptx-primary, #6366f1);color:#fff}.pptx-ng-keep-btn-primary:hover{filter:brightness(1.1)}\n"], dependencies: [{ kind: "component", type: ModalDialogComponent, selector: "pptx-modal-dialog", inputs: ["open", "title"], outputs: ["close"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
81814
82325
  }
81815
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: KeepAnnotationsDialogComponent, decorators: [{
82326
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: KeepAnnotationsDialogComponent, decorators: [{
81816
82327
  type: Component,
81817
82328
  args: [{ selector: 'pptx-keep-annotations-dialog', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [ModalDialogComponent, TranslatePipe], template: `
81818
82329
  <pptx-modal-dialog
@@ -81942,8 +82453,8 @@ class PasswordStrengthMeterComponent {
81942
82453
  ...(ngDevMode ? [{ debugName: "strengthColor" }] : /* istanbul ignore next */ []));
81943
82454
  strengthLabel = computed(() => this.password() ? getStrengthLabel(this.strength(), this.translate) : '', /* @ts-ignore */
81944
82455
  ...(ngDevMode ? [{ debugName: "strengthLabel" }] : /* istanbul ignore next */ []));
81945
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PasswordStrengthMeterComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
81946
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: PasswordStrengthMeterComponent, isStandalone: true, selector: "pptx-password-strength-meter", inputs: { password: { classPropertyName: "password", publicName: "password", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
82456
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PasswordStrengthMeterComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
82457
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: PasswordStrengthMeterComponent, isStandalone: true, selector: "pptx-password-strength-meter", inputs: { password: { classPropertyName: "password", publicName: "password", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: `
81947
82458
  @if (password()) {
81948
82459
  <div class="pptx-ng-pw-strength">
81949
82460
  <div class="pptx-ng-pw-bars">
@@ -81959,7 +82470,7 @@ class PasswordStrengthMeterComponent {
81959
82470
  }
81960
82471
  `, isInline: true, styles: [".pptx-ng-pw-strength{display:flex;flex-direction:column;gap:.25rem}.pptx-ng-pw-bars{display:flex;gap:.25rem}.pptx-ng-pw-bar{height:.25rem;flex:1;border-radius:9999px;transition:background .15s ease}.pptx-ng-pw-strength-label{margin:0;font-size:.6875rem;color:var(--pptx-muted-foreground, #9ca3af)}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
81961
82472
  }
81962
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PasswordStrengthMeterComponent, decorators: [{
82473
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PasswordStrengthMeterComponent, decorators: [{
81963
82474
  type: Component,
81964
82475
  args: [{ selector: 'pptx-password-strength-meter', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, template: `
81965
82476
  @if (password()) {
@@ -82053,8 +82564,8 @@ class PasswordProtectionDialogComponent {
82053
82564
  this.confirmPassword.set('');
82054
82565
  this.error.set('');
82055
82566
  }
82056
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PasswordProtectionDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
82057
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: PasswordProtectionDialogComponent, isStandalone: true, selector: "pptx-password-protection-dialog", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, isCurrentlyProtected: { classPropertyName: "isCurrentlyProtected", publicName: "isCurrentlyProtected", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { setPassword: "setPassword", removePassword: "removePassword", close: "close" }, ngImport: i0, template: `
82567
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PasswordProtectionDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
82568
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: PasswordProtectionDialogComponent, isStandalone: true, selector: "pptx-password-protection-dialog", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, isCurrentlyProtected: { classPropertyName: "isCurrentlyProtected", publicName: "isCurrentlyProtected", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { setPassword: "setPassword", removePassword: "removePassword", close: "close" }, ngImport: i0, template: `
82058
82569
  <pptx-modal-dialog
82059
82570
  [open]="open()"
82060
82571
  [title]="'pptx.security.protectPresentation' | translate"
@@ -82145,7 +82656,7 @@ class PasswordProtectionDialogComponent {
82145
82656
  </pptx-modal-dialog>
82146
82657
  `, isInline: true, styles: [".pptx-ng-pw{display:flex;flex-direction:column;gap:1rem}.pptx-ng-pw-banner{display:flex;align-items:center;gap:.5rem;padding:.5rem .75rem;border:1px solid rgba(34,197,94,.4);border-radius:.5rem;background:#22c55e1f;color:#22c55e;font-size:.75rem}.pptx-ng-pw-desc{margin:0;font-size:.75rem;line-height:1.5;color:var(--pptx-muted-foreground, #9ca3af)}.pptx-ng-pw-field{display:flex;flex-direction:column;gap:.375rem}.pptx-ng-pw-label{font-size:.75rem;font-weight:500;color:var(--pptx-foreground, #f3f4f6)}.pptx-ng-pw-input-wrap{position:relative;display:flex;align-items:center}.pptx-ng-pw-input{width:100%;padding:.375rem .75rem;border:1px solid var(--pptx-border, #374151);border-radius:.375rem;background:var(--pptx-background, #030712);color:var(--pptx-foreground, #f3f4f6);font-size:.8125rem}.pptx-ng-pw-input:focus{outline:none;border-color:var(--pptx-primary, #6366f1)}.pptx-ng-pw-toggle{position:absolute;right:.375rem;padding:.125rem .375rem;border:none;background:transparent;color:var(--pptx-muted-foreground, #9ca3af);font-size:.6875rem;cursor:pointer}.pptx-ng-pw-toggle:hover{color:var(--pptx-foreground, #f3f4f6)}.pptx-ng-pw-error{margin:0;font-size:.75rem;color:#f87171}.pptx-ng-pw-footer{display:flex;flex:1;align-items:center;justify-content:space-between}.pptx-ng-pw-footer-right{display:flex;gap:.5rem}.pptx-ng-pw-remove{border:none;background:transparent;color:#f87171;font-size:.75rem;cursor:pointer}.pptx-ng-pw-remove:hover{filter:brightness(1.15)}.pptx-ng-pw-btn{padding:.375rem .75rem;border:1px solid var(--pptx-border, #374151);border-radius:.375rem;background:var(--pptx-card, #111827);color:var(--pptx-foreground, #f3f4f6);font-size:.75rem;cursor:pointer;white-space:nowrap}.pptx-ng-pw-btn:hover{background:var(--pptx-border, #374151)}.pptx-ng-pw-btn-primary{border-color:var(--pptx-primary, #6366f1);background:var(--pptx-primary, #6366f1);color:#fff}.pptx-ng-pw-btn-primary:hover{filter:brightness(1.1)}\n"], dependencies: [{ kind: "component", type: ModalDialogComponent, selector: "pptx-modal-dialog", inputs: ["open", "title"], outputs: ["close"] }, { kind: "component", type: PasswordStrengthMeterComponent, selector: "pptx-password-strength-meter", inputs: ["password"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
82147
82658
  }
82148
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PasswordProtectionDialogComponent, decorators: [{
82659
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PasswordProtectionDialogComponent, decorators: [{
82149
82660
  type: Component,
82150
82661
  args: [{ selector: 'pptx-password-protection-dialog', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [ModalDialogComponent, PasswordStrengthMeterComponent, TranslatePipe], template: `
82151
82662
  <pptx-modal-dialog
@@ -82258,8 +82769,8 @@ class ShowOptionsFieldsetComponent {
82258
82769
  isChecked(event) {
82259
82770
  return event.target.checked;
82260
82771
  }
82261
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ShowOptionsFieldsetComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
82262
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.5", type: ShowOptionsFieldsetComponent, isStandalone: true, selector: "pptx-show-options-fieldset", inputs: { draft: { classPropertyName: "draft", publicName: "draft", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { patch: "patch" }, ngImport: i0, template: `
82772
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ShowOptionsFieldsetComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
82773
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.6", type: ShowOptionsFieldsetComponent, isStandalone: true, selector: "pptx-show-options-fieldset", inputs: { draft: { classPropertyName: "draft", publicName: "draft", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { patch: "patch" }, ngImport: i0, template: `
82263
82774
  <fieldset class="pptx-ng-sss-fieldset">
82264
82775
  <legend class="pptx-ng-sss-legend">{{ 'pptx.slideShow.showOptions' | translate }}</legend>
82265
82776
 
@@ -82305,7 +82816,7 @@ class ShowOptionsFieldsetComponent {
82305
82816
  </fieldset>
82306
82817
  `, isInline: true, styles: [".pptx-ng-sss-fieldset{display:flex;flex-direction:column;gap:.375rem;margin:0;padding:0;border:none}.pptx-ng-sss-legend{margin-bottom:.25rem;padding:0;font-size:.6875rem;font-weight:500;text-transform:uppercase;letter-spacing:.03em;color:var(--pptx-muted-foreground, #9ca3af)}.pptx-ng-sss-option{display:flex;align-items:center;gap:.5rem;font-size:.75rem;color:var(--pptx-foreground, #f3f4f6);cursor:pointer}.pptx-ng-sss-radio{accent-color:var(--pptx-primary, #6366f1)}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
82307
82818
  }
82308
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ShowOptionsFieldsetComponent, decorators: [{
82819
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ShowOptionsFieldsetComponent, decorators: [{
82309
82820
  type: Component,
82310
82821
  args: [{ selector: 'pptx-show-options-fieldset', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
82311
82822
  <fieldset class="pptx-ng-sss-fieldset">
@@ -82407,8 +82918,8 @@ class ShowSlidesFieldsetComponent {
82407
82918
  onSelectCustomShowId(event) {
82408
82919
  this.patch.emit({ showSlidesCustomShowId: event.target.value });
82409
82920
  }
82410
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ShowSlidesFieldsetComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
82411
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: ShowSlidesFieldsetComponent, isStandalone: true, selector: "pptx-show-slides-fieldset", inputs: { draft: { classPropertyName: "draft", publicName: "draft", isSignal: true, isRequired: false, transformFunction: null }, showSlidesMode: { classPropertyName: "showSlidesMode", publicName: "showSlidesMode", isSignal: true, isRequired: false, transformFunction: null }, slideCount: { classPropertyName: "slideCount", publicName: "slideCount", isSignal: true, isRequired: false, transformFunction: null }, customShows: { classPropertyName: "customShows", publicName: "customShows", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { patch: "patch" }, ngImport: i0, template: `
82921
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ShowSlidesFieldsetComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
82922
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: ShowSlidesFieldsetComponent, isStandalone: true, selector: "pptx-show-slides-fieldset", inputs: { draft: { classPropertyName: "draft", publicName: "draft", isSignal: true, isRequired: false, transformFunction: null }, showSlidesMode: { classPropertyName: "showSlidesMode", publicName: "showSlidesMode", isSignal: true, isRequired: false, transformFunction: null }, slideCount: { classPropertyName: "slideCount", publicName: "slideCount", isSignal: true, isRequired: false, transformFunction: null }, customShows: { classPropertyName: "customShows", publicName: "customShows", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { patch: "patch" }, ngImport: i0, template: `
82412
82923
  <fieldset class="pptx-ng-sss-fieldset">
82413
82924
  <legend class="pptx-ng-sss-legend">{{ 'pptx.slideShow.showSlides' | translate }}</legend>
82414
82925
 
@@ -82494,7 +83005,7 @@ class ShowSlidesFieldsetComponent {
82494
83005
  </fieldset>
82495
83006
  `, isInline: true, styles: [".pptx-ng-sss-fieldset{display:flex;flex-direction:column;gap:.375rem;margin:0;padding:0;border:none}.pptx-ng-sss-legend{margin-bottom:.25rem;padding:0;font-size:.6875rem;font-weight:500;text-transform:uppercase;letter-spacing:.03em;color:var(--pptx-muted-foreground, #9ca3af)}.pptx-ng-sss-option{display:flex;align-items:center;gap:.5rem;font-size:.75rem;color:var(--pptx-foreground, #f3f4f6);cursor:pointer}.pptx-ng-sss-radio{accent-color:var(--pptx-primary, #6366f1)}.pptx-ng-sss-range{display:flex;align-items:center;gap:.75rem;margin-left:1.5rem}.pptx-ng-sss-range-field{display:flex;align-items:center;gap:.375rem}.pptx-ng-sss-range-label{color:var(--pptx-muted-foreground, #9ca3af)}.pptx-ng-sss-number{width:3.5rem;padding:.125rem .375rem;border:1px solid var(--pptx-border, #374151);border-radius:.25rem;background:var(--pptx-background, #030712);color:var(--pptx-foreground, #f3f4f6);font-size:.6875rem}.pptx-ng-sss-custom{margin-left:1.5rem}.pptx-ng-sss-select{width:100%;padding:.25rem .5rem;border:1px solid var(--pptx-border, #374151);border-radius:.25rem;background:var(--pptx-background, #030712);color:var(--pptx-foreground, #f3f4f6);font-size:.6875rem}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
82496
83007
  }
82497
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ShowSlidesFieldsetComponent, decorators: [{
83008
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ShowSlidesFieldsetComponent, decorators: [{
82498
83009
  type: Component,
82499
83010
  args: [{ selector: 'pptx-show-slides-fieldset', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
82500
83011
  <fieldset class="pptx-ng-sss-fieldset">
@@ -82641,8 +83152,8 @@ class SetUpSlideShowDialogComponent {
82641
83152
  this.save.emit(this.draft());
82642
83153
  this.close.emit();
82643
83154
  }
82644
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SetUpSlideShowDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
82645
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.5", type: SetUpSlideShowDialogComponent, isStandalone: true, selector: "pptx-set-up-slide-show-dialog", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, properties: { classPropertyName: "properties", publicName: "properties", isSignal: true, isRequired: false, transformFunction: null }, customShows: { classPropertyName: "customShows", publicName: "customShows", isSignal: true, isRequired: false, transformFunction: null }, slideCount: { classPropertyName: "slideCount", publicName: "slideCount", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { save: "save", close: "close" }, ngImport: i0, template: `
83155
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SetUpSlideShowDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
83156
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.6", type: SetUpSlideShowDialogComponent, isStandalone: true, selector: "pptx-set-up-slide-show-dialog", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, properties: { classPropertyName: "properties", publicName: "properties", isSignal: true, isRequired: false, transformFunction: null }, customShows: { classPropertyName: "customShows", publicName: "customShows", isSignal: true, isRequired: false, transformFunction: null }, slideCount: { classPropertyName: "slideCount", publicName: "slideCount", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { save: "save", close: "close" }, ngImport: i0, template: `
82646
83157
  <pptx-modal-dialog
82647
83158
  [open]="open()"
82648
83159
  [title]="'pptx.slideShow.setUpTitle' | translate"
@@ -82740,7 +83251,7 @@ class SetUpSlideShowDialogComponent {
82740
83251
  </pptx-modal-dialog>
82741
83252
  `, isInline: true, styles: [".pptx-ng-sss-body{display:flex;flex-direction:column;gap:1.25rem;font-size:.75rem;color:var(--pptx-foreground, #f3f4f6)}.pptx-ng-sss-fieldset{display:flex;flex-direction:column;gap:.375rem;margin:0;padding:0;border:none}.pptx-ng-sss-legend{margin-bottom:.25rem;padding:0;font-size:.6875rem;font-weight:500;text-transform:uppercase;letter-spacing:.03em;color:var(--pptx-muted-foreground, #9ca3af)}.pptx-ng-sss-option{display:flex;align-items:center;gap:.5rem;font-size:.75rem;color:var(--pptx-foreground, #f3f4f6);cursor:pointer}.pptx-ng-sss-radio{accent-color:var(--pptx-primary, #6366f1)}.pptx-ng-sss-btn{padding:.375rem .75rem;border:1px solid var(--pptx-border, #374151);border-radius:.375rem;background:var(--pptx-card, #111827);color:var(--pptx-foreground, #f3f4f6);font-size:.75rem;cursor:pointer;white-space:nowrap;transition:background .15s ease}.pptx-ng-sss-btn:hover{background:var(--pptx-border, #374151)}.pptx-ng-sss-btn-primary{border-color:var(--pptx-primary, #6366f1);background:var(--pptx-primary, #6366f1);color:#fff}.pptx-ng-sss-btn-primary:hover{background:var(--pptx-primary, #6366f1);filter:brightness(1.1)}\n"], dependencies: [{ kind: "component", type: ModalDialogComponent, selector: "pptx-modal-dialog", inputs: ["open", "title"], outputs: ["close"] }, { kind: "component", type: ShowSlidesFieldsetComponent, selector: "pptx-show-slides-fieldset", inputs: ["draft", "showSlidesMode", "slideCount", "customShows"], outputs: ["patch"] }, { kind: "component", type: ShowOptionsFieldsetComponent, selector: "pptx-show-options-fieldset", inputs: ["draft"], outputs: ["patch"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
82742
83253
  }
82743
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SetUpSlideShowDialogComponent, decorators: [{
83254
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SetUpSlideShowDialogComponent, decorators: [{
82744
83255
  type: Component,
82745
83256
  args: [{ selector: 'pptx-set-up-slide-show-dialog', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [
82746
83257
  ModalDialogComponent,
@@ -82889,8 +83400,8 @@ class ShortcutPanelComponent {
82889
83400
  close = output();
82890
83401
  /** Static shortcut reference rows. */
82891
83402
  items = SHORTCUT_REFERENCE_ITEMS;
82892
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ShortcutPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
82893
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: ShortcutPanelComponent, isStandalone: true, selector: "pptx-shortcut-panel", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { close: "close" }, ngImport: i0, template: `
83403
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ShortcutPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
83404
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: ShortcutPanelComponent, isStandalone: true, selector: "pptx-shortcut-panel", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { close: "close" }, ngImport: i0, template: `
82894
83405
  @if (open()) {
82895
83406
  <div class="pptx-ng-shortcuts" data-pptx-shortcuts-panel="true">
82896
83407
  <div class="pptx-ng-shortcuts-header">
@@ -82911,7 +83422,7 @@ class ShortcutPanelComponent {
82911
83422
  }
82912
83423
  `, isInline: true, styles: [".pptx-ng-shortcuts{position:absolute;top:3.5rem;right:.75rem;z-index:40;width:min(24rem,calc(100% - 1.5rem));border:1px solid var(--pptx-border, #374151);border-radius:.25rem;background:var(--pptx-popover, #111827);color:var(--pptx-foreground, #f3f4f6);box-shadow:0 10px 40px #00000059}.pptx-ng-shortcuts-header{display:flex;align-items:center;justify-content:space-between;gap:.5rem;padding:.5rem .75rem;border-bottom:1px solid var(--pptx-border, #374151)}.pptx-ng-shortcuts-title{font-size:.75rem;text-transform:uppercase;letter-spacing:.05em;color:var(--pptx-foreground, #f3f4f6)}.pptx-ng-shortcuts-close{padding:.25rem .5rem;font-size:.6875rem;color:var(--pptx-foreground, #f3f4f6);background:transparent;border:none;border-radius:.25rem;cursor:pointer}.pptx-ng-shortcuts-close:hover{background:var(--pptx-muted, #1f2937)}.pptx-ng-shortcuts-list{max-height:16rem;overflow-y:auto;padding:.5rem;display:flex;flex-direction:column;gap:.25rem}.pptx-ng-shortcuts-row{display:flex;align-items:center;justify-content:space-between;gap:.75rem;padding:.375rem .5rem;border-radius:.25rem;background:var(--pptx-muted, rgba(31, 41, 55, .8))}.pptx-ng-shortcuts-action{font-size:.75rem;color:var(--pptx-foreground, #f3f4f6)}.pptx-ng-shortcuts-keys{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;font-size:.6875rem;white-space:nowrap;color:var(--pptx-foreground, #f3f4f6)}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
82913
83424
  }
82914
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ShortcutPanelComponent, decorators: [{
83425
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ShortcutPanelComponent, decorators: [{
82915
83426
  type: Component,
82916
83427
  args: [{ selector: 'pptx-shortcut-panel', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
82917
83428
  @if (open()) {
@@ -82959,8 +83470,8 @@ class SignatureStrippedDialogComponent {
82959
83470
  confirm = output();
82960
83471
  /** Fired when the user backs out (also on dismiss). */
82961
83472
  cancel = output();
82962
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SignatureStrippedDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
82963
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.5", type: SignatureStrippedDialogComponent, isStandalone: true, selector: "pptx-signature-stripped-dialog", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, signatureCount: { classPropertyName: "signatureCount", publicName: "signatureCount", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { confirm: "confirm", cancel: "cancel" }, ngImport: i0, template: `
83473
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SignatureStrippedDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
83474
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.6", type: SignatureStrippedDialogComponent, isStandalone: true, selector: "pptx-signature-stripped-dialog", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, signatureCount: { classPropertyName: "signatureCount", publicName: "signatureCount", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { confirm: "confirm", cancel: "cancel" }, ngImport: i0, template: `
82964
83475
  <pptx-modal-dialog
82965
83476
  [open]="open()"
82966
83477
  [title]="'pptx.digitalSignatures.strippedTitle' | translate"
@@ -82997,7 +83508,7 @@ class SignatureStrippedDialogComponent {
82997
83508
  </pptx-modal-dialog>
82998
83509
  `, isInline: true, styles: [".pptx-ng-sig{display:flex;flex-direction:column;gap:1rem}.pptx-ng-sig-callout{display:flex;align-items:flex-start;gap:.75rem;padding:.75rem 1rem;border:1px solid rgba(217,119,6,.3);border-radius:.5rem;background:#d977061f}.pptx-ng-sig-icon{flex-shrink:0;font-size:1.125rem;line-height:1.4}.pptx-ng-sig-text{display:flex;flex-direction:column;gap:.5rem}.pptx-ng-sig-message{margin:0;font-size:.75rem;line-height:1.5;color:#fde68a}.pptx-ng-sig-warning{margin:0;font-size:.6875rem;line-height:1.5;color:#fcd34db3}.pptx-ng-sig-btn{padding:.375rem .75rem;border:1px solid var(--pptx-border, #374151);border-radius:.375rem;background:var(--pptx-card, #111827);color:var(--pptx-foreground, #f3f4f6);font-size:.75rem;cursor:pointer;white-space:nowrap}.pptx-ng-sig-btn:hover{background:var(--pptx-border, #374151)}.pptx-ng-sig-btn-danger{border-color:#d97706;background:#d97706;color:#fff}.pptx-ng-sig-btn-danger:hover{filter:brightness(1.1)}\n"], dependencies: [{ kind: "component", type: ModalDialogComponent, selector: "pptx-modal-dialog", inputs: ["open", "title"], outputs: ["close"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
82999
83510
  }
83000
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SignatureStrippedDialogComponent, decorators: [{
83511
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SignatureStrippedDialogComponent, decorators: [{
83001
83512
  type: Component,
83002
83513
  args: [{ selector: 'pptx-signature-stripped-dialog', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [ModalDialogComponent, TranslatePipe], template: `
83003
83514
  <pptx-modal-dialog
@@ -83198,8 +83709,8 @@ class VersionHistoryPanelComponent {
83198
83709
  }
83199
83710
  })();
83200
83711
  }
83201
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: VersionHistoryPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
83202
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: VersionHistoryPanelComponent, isStandalone: true, selector: "pptx-version-history-panel", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, filePath: { classPropertyName: "filePath", publicName: "filePath", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { close: "close", restore: "restore" }, ngImport: i0, template: `
83712
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: VersionHistoryPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
83713
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: VersionHistoryPanelComponent, isStandalone: true, selector: "pptx-version-history-panel", inputs: { open: { classPropertyName: "open", publicName: "open", isSignal: true, isRequired: false, transformFunction: null }, filePath: { classPropertyName: "filePath", publicName: "filePath", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { close: "close", restore: "restore" }, ngImport: i0, template: `
83203
83714
  @if (open()) {
83204
83715
  <div class="pptx-ng-versions">
83205
83716
  <div class="pptx-ng-versions-header">
@@ -83260,7 +83771,7 @@ class VersionHistoryPanelComponent {
83260
83771
  }
83261
83772
  `, isInline: true, styles: [".pptx-ng-versions{position:absolute;inset-block:0;right:0;z-index:50;display:flex;flex-direction:column;width:20rem;background:var(--pptx-background, #030712);border-left:1px solid var(--pptx-border, #374151);box-shadow:0 10px 40px #00000059}.pptx-ng-versions-header{display:flex;align-items:center;justify-content:space-between;padding:.5rem .75rem;border-bottom:1px solid var(--pptx-border, #374151)}.pptx-ng-versions-title{display:flex;align-items:center;gap:.5rem;font-size:.875rem;font-weight:500;color:var(--pptx-foreground, #f3f4f6)}.pptx-ng-versions-close{display:inline-flex;align-items:center;justify-content:center;width:1.5rem;height:1.5rem;padding:0;font-size:1.125rem;line-height:1;color:var(--pptx-muted-foreground, #9ca3af);background:transparent;border:none;border-radius:.25rem;cursor:pointer}.pptx-ng-versions-close:hover{color:var(--pptx-foreground, #f3f4f6);background:var(--pptx-muted, #1f2937)}.pptx-ng-versions-body{flex:1;overflow-y:auto}.pptx-ng-versions-empty{padding:2rem .75rem;text-align:center;font-size:.75rem;color:var(--pptx-muted-foreground, #9ca3af)}.pptx-ng-versions-row{padding:.625rem .75rem;border-bottom:1px solid var(--pptx-border, #374151)}.pptx-ng-versions-row:hover{background:var(--pptx-muted, rgba(31, 41, 55, .5))}.pptx-ng-versions-row-top{display:flex;align-items:center;justify-content:space-between}.pptx-ng-versions-time{font-size:.75rem;color:var(--pptx-foreground, #f3f4f6)}.pptx-ng-versions-rel{font-size:.625rem;color:var(--pptx-muted-foreground, #9ca3af)}.pptx-ng-versions-size{margin-top:.125rem;font-size:.625rem;color:var(--pptx-muted-foreground, #9ca3af)}.pptx-ng-versions-actions{display:flex;align-items:center;gap:.25rem;margin-top:.375rem}.pptx-ng-versions-btn{display:inline-flex;align-items:center;gap:.25rem;padding:.25rem .5rem;font-size:.625rem;border:none;border-radius:.25rem;cursor:pointer}.pptx-ng-versions-btn:disabled{opacity:.4;cursor:not-allowed}.pptx-ng-versions-btn.is-restore{color:var(--pptx-primary, #818cf8);background:#6366f133}.pptx-ng-versions-btn.is-restore:hover:not(:disabled){background:#6366f14d}.pptx-ng-versions-btn.is-delete{color:#f87171;background:#dc262633}.pptx-ng-versions-btn.is-delete:hover:not(:disabled){background:#dc26264d}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
83262
83773
  }
83263
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: VersionHistoryPanelComponent, decorators: [{
83774
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: VersionHistoryPanelComponent, decorators: [{
83264
83775
  type: Component,
83265
83776
  args: [{ selector: 'pptx-version-history-panel', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
83266
83777
  @if (open()) {
@@ -83450,8 +83961,8 @@ class ViewerExtraDialogsComponent {
83450
83961
  this.svc.isPasswordProtected.set(false);
83451
83962
  this.svc.showPassword.set(false);
83452
83963
  }
83453
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerExtraDialogsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
83454
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.5", type: ViewerExtraDialogsComponent, isStandalone: true, selector: "pptx-viewer-extra-dialogs", inputs: { activeSlideIndex: { classPropertyName: "activeSlideIndex", publicName: "activeSlideIndex", isSignal: true, isRequired: false, transformFunction: null }, selectedElementId: { classPropertyName: "selectedElementId", publicName: "selectedElementId", isSignal: true, isRequired: false, transformFunction: null }, filePath: { classPropertyName: "filePath", publicName: "filePath", isSignal: true, isRequired: false, transformFunction: null }, customShows: { classPropertyName: "customShows", publicName: "customShows", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { restoreContent: "restoreContent" }, host: { classAttribute: "contents" }, ngImport: i0, template: `
83964
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerExtraDialogsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
83965
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "22.0.6", type: ViewerExtraDialogsComponent, isStandalone: true, selector: "pptx-viewer-extra-dialogs", inputs: { activeSlideIndex: { classPropertyName: "activeSlideIndex", publicName: "activeSlideIndex", isSignal: true, isRequired: false, transformFunction: null }, selectedElementId: { classPropertyName: "selectedElementId", publicName: "selectedElementId", isSignal: true, isRequired: false, transformFunction: null }, filePath: { classPropertyName: "filePath", publicName: "filePath", isSignal: true, isRequired: false, transformFunction: null }, customShows: { classPropertyName: "customShows", publicName: "customShows", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { restoreContent: "restoreContent" }, host: { classAttribute: "contents" }, ngImport: i0, template: `
83455
83966
  <pptx-equation-editor-dialog
83456
83967
  [open]="svc.showEquation()"
83457
83968
  [existingOmml]="svc.editingEquationOmml()"
@@ -83526,7 +84037,7 @@ class ViewerExtraDialogsComponent {
83526
84037
  />
83527
84038
  `, isInline: true, dependencies: [{ kind: "component", type: EquationEditorDialogComponent, selector: "pptx-equation-editor-dialog", inputs: ["open", "existingOmml"], outputs: ["insert", "close"] }, { kind: "component", type: SetUpSlideShowDialogComponent, selector: "pptx-set-up-slide-show-dialog", inputs: ["open", "properties", "customShows", "slideCount"], outputs: ["save", "close"] }, { kind: "component", type: PasswordProtectionDialogComponent, selector: "pptx-password-protection-dialog", inputs: ["open", "isCurrentlyProtected"], outputs: ["setPassword", "removePassword", "close"] }, { kind: "component", type: EncryptedFileDialogComponent, selector: "pptx-encrypted-file-dialog", inputs: ["open"], outputs: ["close"] }, { kind: "component", type: ComparePanelComponent, selector: "pptx-compare-panel", inputs: ["open", "compareResult", "canvasSize", "mediaDataUrls"], outputs: ["close", "acceptSlide", "rejectSlide", "acceptAll"] }, { kind: "component", type: FontEmbeddingPanelComponent, selector: "pptx-font-embedding-panel", inputs: ["open", "embedFontsEnabled", "usedFontFamilies", "embeddedFonts"], outputs: ["close", "toggleEmbedFonts"] }, { kind: "component", type: VersionHistoryPanelComponent, selector: "pptx-version-history-panel", inputs: ["open", "filePath"], outputs: ["close", "restore"] }, { kind: "component", type: ShortcutPanelComponent, selector: "pptx-shortcut-panel", inputs: ["open"], outputs: ["close"] }, { kind: "component", type: KeepAnnotationsDialogComponent, selector: "pptx-keep-annotations-dialog", inputs: ["open", "annotationCount", "slideCount"], outputs: ["keep", "discard"] }, { kind: "component", type: SignatureStrippedDialogComponent, selector: "pptx-signature-stripped-dialog", inputs: ["open", "signatureCount"], outputs: ["confirm", "cancel"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
83528
84039
  }
83529
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerExtraDialogsComponent, decorators: [{
84040
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerExtraDialogsComponent, decorators: [{
83530
84041
  type: Component,
83531
84042
  args: [{
83532
84043
  selector: 'pptx-viewer-extra-dialogs',
@@ -83713,10 +84224,10 @@ class ViewerFileIOService {
83713
84224
  }
83714
84225
  })();
83715
84226
  }
83716
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerFileIOService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
83717
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerFileIOService });
84227
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerFileIOService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
84228
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerFileIOService });
83718
84229
  }
83719
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerFileIOService, decorators: [{
84230
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerFileIOService, decorators: [{
83720
84231
  type: Injectable
83721
84232
  }] });
83722
84233
 
@@ -83804,10 +84315,10 @@ class ViewerFindReplaceService {
83804
84315
  this.goTo(results[0].slideIndex);
83805
84316
  }
83806
84317
  }
83807
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerFindReplaceService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
83808
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerFindReplaceService });
84318
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerFindReplaceService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
84319
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerFindReplaceService });
83809
84320
  }
83810
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerFindReplaceService, decorators: [{
84321
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerFindReplaceService, decorators: [{
83811
84322
  type: Injectable
83812
84323
  }] });
83813
84324
 
@@ -84016,10 +84527,10 @@ class ViewerInspectorPanelService {
84016
84527
  this.formatPanelClosed.update((closed) => !closed);
84017
84528
  }
84018
84529
  }
84019
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerInspectorPanelService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
84020
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerInspectorPanelService });
84530
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerInspectorPanelService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
84531
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerInspectorPanelService });
84021
84532
  }
84022
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerInspectorPanelService, decorators: [{
84533
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerInspectorPanelService, decorators: [{
84023
84534
  type: Injectable
84024
84535
  }] });
84025
84536
 
@@ -84150,10 +84661,10 @@ class ViewerKeyboardService {
84150
84661
  break;
84151
84662
  }
84152
84663
  }
84153
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerKeyboardService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
84154
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerKeyboardService });
84664
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerKeyboardService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
84665
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerKeyboardService });
84155
84666
  }
84156
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerKeyboardService, decorators: [{
84667
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerKeyboardService, decorators: [{
84157
84668
  type: Injectable
84158
84669
  }] });
84159
84670
 
@@ -84213,10 +84724,10 @@ class ViewerMobileSheetService {
84213
84724
  this.mobileSheet.set(null);
84214
84725
  this.editor.addElement(host.activeSlideIndex(), newTextElement());
84215
84726
  }
84216
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerMobileSheetService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
84217
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerMobileSheetService });
84727
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerMobileSheetService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
84728
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerMobileSheetService });
84218
84729
  }
84219
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerMobileSheetService, decorators: [{
84730
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerMobileSheetService, decorators: [{
84220
84731
  type: Injectable
84221
84732
  }] });
84222
84733
 
@@ -84324,10 +84835,10 @@ class ViewerPresentationModeService {
84324
84835
  host.promptKeepAnnotations(map);
84325
84836
  }
84326
84837
  }
84327
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerPresentationModeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
84328
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerPresentationModeService });
84838
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerPresentationModeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
84839
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerPresentationModeService });
84329
84840
  }
84330
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerPresentationModeService, decorators: [{
84841
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerPresentationModeService, decorators: [{
84331
84842
  type: Injectable
84332
84843
  }] });
84333
84844
 
@@ -84377,10 +84888,10 @@ class ViewerThemeGalleryService {
84377
84888
  this.loader.themeColorMap.set(result.themeColorMap);
84378
84889
  this.showThemeGallery.set(false);
84379
84890
  }
84380
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerThemeGalleryService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
84381
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerThemeGalleryService });
84891
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerThemeGalleryService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
84892
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerThemeGalleryService });
84382
84893
  }
84383
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerThemeGalleryService, decorators: [{
84894
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerThemeGalleryService, decorators: [{
84384
84895
  type: Injectable
84385
84896
  }] });
84386
84897
 
@@ -84412,10 +84923,10 @@ class ViewerZoomService {
84412
84923
  zoomReset() {
84413
84924
  this.zoom.set(1);
84414
84925
  }
84415
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerZoomService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
84416
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerZoomService });
84926
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerZoomService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
84927
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerZoomService });
84417
84928
  }
84418
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerZoomService, decorators: [{
84929
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerZoomService, decorators: [{
84419
84930
  type: Injectable
84420
84931
  }] });
84421
84932
 
@@ -84486,10 +84997,10 @@ class ViewerTouchGesturesService {
84486
84997
  this.destroyRef.onDestroy(teardown);
84487
84998
  });
84488
84999
  }
84489
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerTouchGesturesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
84490
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerTouchGesturesService });
85000
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerTouchGesturesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
85001
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerTouchGesturesService });
84491
85002
  }
84492
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerTouchGesturesService, decorators: [{
85003
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerTouchGesturesService, decorators: [{
84493
85004
  type: Injectable
84494
85005
  }] });
84495
85006
 
@@ -85402,8 +85913,8 @@ class PowerPointViewerComponent {
85402
85913
  stageElement() {
85403
85914
  return (this.mainEl()?.nativeElement.querySelector('.pptx-ng-canvas-stage') ?? undefined);
85404
85915
  }
85405
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PowerPointViewerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
85406
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: PowerPointViewerComponent, isStandalone: true, selector: "pptx-viewer", inputs: { content: { classPropertyName: "content", publicName: "content", isSignal: true, isRequired: false, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null }, class: { classPropertyName: "class", publicName: "class", isSignal: true, isRequired: false, transformFunction: null }, theme: { classPropertyName: "theme", publicName: "theme", isSignal: true, isRequired: false, transformFunction: null }, filePath: { classPropertyName: "filePath", publicName: "filePath", isSignal: true, isRequired: false, transformFunction: null }, fileName: { classPropertyName: "fileName", publicName: "fileName", isSignal: true, isRequired: false, transformFunction: null }, collaboration: { classPropertyName: "collaboration", publicName: "collaboration", isSignal: true, isRequired: false, transformFunction: null }, authorName: { classPropertyName: "authorName", publicName: "authorName", isSignal: true, isRequired: false, transformFunction: null }, shareDefaults: { classPropertyName: "shareDefaults", publicName: "shareDefaults", isSignal: true, isRequired: false, transformFunction: null }, onOpenFile: { classPropertyName: "onOpenFile", publicName: "onOpenFile", isSignal: true, isRequired: false, transformFunction: null }, smartArt3D: { classPropertyName: "smartArt3D", publicName: "smartArt3D", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { activeSlideChange: "activeSlideChange", dirtyChange: "dirtyChange", contentChange: "contentChange", propertiesChange: "propertiesChange", modeChange: "modeChange", zoomChange: "zoomChange", selectionChange: "selectionChange", slideCountChange: "slideCountChange", startCollaboration: "startCollaboration", stopCollaboration: "stopCollaboration" }, host: { listeners: { "document:keydown": "onKeyDown($event)" } }, providers: [
85916
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PowerPointViewerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
85917
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: PowerPointViewerComponent, isStandalone: true, selector: "pptx-viewer", inputs: { content: { classPropertyName: "content", publicName: "content", isSignal: true, isRequired: false, transformFunction: null }, canEdit: { classPropertyName: "canEdit", publicName: "canEdit", isSignal: true, isRequired: false, transformFunction: null }, class: { classPropertyName: "class", publicName: "class", isSignal: true, isRequired: false, transformFunction: null }, theme: { classPropertyName: "theme", publicName: "theme", isSignal: true, isRequired: false, transformFunction: null }, filePath: { classPropertyName: "filePath", publicName: "filePath", isSignal: true, isRequired: false, transformFunction: null }, fileName: { classPropertyName: "fileName", publicName: "fileName", isSignal: true, isRequired: false, transformFunction: null }, collaboration: { classPropertyName: "collaboration", publicName: "collaboration", isSignal: true, isRequired: false, transformFunction: null }, authorName: { classPropertyName: "authorName", publicName: "authorName", isSignal: true, isRequired: false, transformFunction: null }, shareDefaults: { classPropertyName: "shareDefaults", publicName: "shareDefaults", isSignal: true, isRequired: false, transformFunction: null }, onOpenFile: { classPropertyName: "onOpenFile", publicName: "onOpenFile", isSignal: true, isRequired: false, transformFunction: null }, smartArt3D: { classPropertyName: "smartArt3D", publicName: "smartArt3D", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { activeSlideChange: "activeSlideChange", dirtyChange: "dirtyChange", contentChange: "contentChange", propertiesChange: "propertiesChange", modeChange: "modeChange", zoomChange: "zoomChange", selectionChange: "selectionChange", slideCountChange: "slideCountChange", startCollaboration: "startCollaboration", stopCollaboration: "stopCollaboration" }, host: { listeners: { "document:keydown": "onKeyDown($event)" } }, providers: [
85407
85918
  LoadContentService,
85408
85919
  ExportService,
85409
85920
  EditorStateService,
@@ -86032,7 +86543,7 @@ class PowerPointViewerComponent {
86032
86543
  </div>
86033
86544
  `, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: SlideCanvasComponent, selector: "pptx-slide-canvas", inputs: ["slide", "canvasSize", "mediaDataUrls", "zoom", "editable", "showGrid", "showRulers", "showGuides", "snapToGrid", "snapToGuides", "autoFit", "interactive", "presenting", "selectedIds", "editingId", "editTemplateMode", "templateElements", "drawTool", "drawColor", "drawWidth"], outputs: ["elementSelect", "backgroundClick", "transformStart", "transformUpdate", "contextMenu", "textEditStart", "textCommit", "textCancel", "textFormat", "rotateUpdate", "marqueeSelect", "inkStrokeComplete", "eraserHit", "cellCommit", "tableChange"] }, { kind: "component", type: PresentationOverlayComponent, selector: "pptx-presentation-overlay", inputs: ["slides", "canvasSize", "mediaDataUrls", "startIndex"], outputs: ["indexChange", "closed", "annotationsExit"] }, { kind: "component", type: PresenterViewComponent, selector: "pptx-presenter-view", inputs: ["slides", "currentSlideIndex", "canvasSize", "templateElements", "mediaDataUrls", "presentationStartTime", "isAudienceWindowOpen"], outputs: ["movePresentationSlide", "exit", "openAudienceWindow", "closeAudienceWindow"] }, { kind: "component", type: MobilePresenterViewComponent, selector: "pptx-mobile-presenter-view", inputs: ["slides", "currentSlideIndex", "canvasSize", "templateElements", "mediaDataUrls", "presentationStartTime"], outputs: ["movePresentationSlide", "exit"] }, { kind: "component", type: SlideSorterOverlayComponent, selector: "pptx-slide-sorter-overlay", inputs: ["slides", "canvasSize", "mediaDataUrls", "activeIndex"], outputs: ["select", "closed"] }, { kind: "component", type: FindBarComponent, selector: "pptx-find-bar", inputs: ["slides"], outputs: ["navigate", "closed"] }, { kind: "component", type: FindReplaceBarComponent, selector: "pptx-find-replace-bar", inputs: ["matchCount", "matchIndex"], outputs: ["find", "navigate", "replaceOne", "replaceAll", "close"] }, { kind: "component", type: InspectorPanelComponent, selector: "pptx-inspector-panel", inputs: ["element", "slideIndex"] }, { kind: "component", type: SlidesPanelComponent, selector: "pptx-slides-panel", inputs: ["canvasSize", "mediaDataUrls", "activeIndex"], outputs: ["select"] }, { kind: "component", type: StatusBarComponent, selector: "pptx-status-bar", inputs: ["slideIndex", "slideCount", "canEdit", "dirty", "autosaveStatus", "notesOpen", "zoomPercent", "sorterActive", "presenting"], outputs: ["toggleNotes", "normalView", "openSorter", "slideShow", "zoomIn", "zoomOut", "zoomReset"] }, { kind: "component", type: EditorContextMenuComponent, selector: "pptx-editor-context-menu", inputs: ["x", "y", "slideIndex"], outputs: ["closed"] }, { kind: "component", type: ExportProgressModalComponent, selector: "pptx-export-progress-modal", inputs: ["open", "title", "progress", "statusMessage"], outputs: ["cancel"] }, { kind: "component", type: CommentsPanelComponent, selector: "pptx-comments-panel", inputs: ["comments", "authorName"], outputs: ["add", "remove", "resolve"] }, { kind: "component", type: SignaturesPanelComponent, selector: "pptx-signatures-panel", inputs: ["signatures"] }, { kind: "component", type: AccessibilityPanelComponent, selector: "pptx-accessibility-panel", inputs: ["issues"], outputs: ["selectSlide"] }, { kind: "component", type: CollaborationCursorsComponent, selector: "pptx-collaboration-cursors", inputs: ["cursors", "zoom"] }, { kind: "component", type: RemoteSelectionOverlayComponent, selector: "pptx-remote-selection-overlay", inputs: ["presences", "elements", "activeSlideIndex", "zoom"] }, { kind: "component", type: FollowModeBarComponent, selector: "pptx-follow-mode-bar", inputs: ["presences", "followedClientId"], outputs: ["follow"] }, { kind: "component", type: PropertiesDialogComponent, selector: "pptx-properties-dialog", inputs: ["open", "properties"], outputs: ["save", "close"] }, { kind: "component", type: HyperlinkDialogComponent, selector: "pptx-hyperlink-dialog", inputs: ["open", "element"], outputs: ["save", "close"] }, { kind: "component", type: PrintDialogComponent, selector: "pptx-print-dialog", inputs: ["slides", "activeSlideIndex", "defaultSlidesPerPage", "defaultFrameSlides"], outputs: ["print", "cancel"] }, { kind: "component", type: ShareDialogComponent, selector: "pptx-share-dialog", inputs: ["open", "defaults", "active", "connected", "userCount", "shareUrl", "p2p"], outputs: ["start", "stop", "close"] }, { kind: "component", type: BroadcastDialogComponent, selector: "pptx-broadcast-dialog", inputs: ["open", "defaults", "active", "connected", "viewerCount", "viewerUrl", "p2p"], outputs: ["start", "stop", "close"] }, { kind: "component", type: MobileBottomBarComponent, selector: "pptx-mobile-bottom-bar", inputs: ["slideCount", "commentCount", "activeSheet"], outputs: ["openSlides", "insert", "openFormat", "openComments", "notes"] }, { kind: "component", type: MobileMenuSheetComponent, selector: "pptx-mobile-menu-sheet", inputs: ["open", "slideCount", "exporting", "showNotes", "canEdit"], outputs: ["closed", "openFind", "openSorter", "toggleNotes", "insertText", "present", "openFile", "savePptx", "exportPng", "exportPdf", "exportGif", "exportVideo", "print"] }, { kind: "component", type: MobileSlidesSheetComponent, selector: "pptx-mobile-slides-sheet", inputs: ["open", "slides", "canvasSize", "mediaDataUrls", "activeIndex"], outputs: ["closed", "jumpToSlide"] }, { kind: "component", type: MobileToolbarComponent, selector: "pptx-mobile-toolbar", inputs: ["canUndo", "canRedo", "canPresent", "canEdit", "menuOpen"], outputs: ["toggleMenu", "undo", "redo", "save", "present"] }, { kind: "component", type: NotesPanelComponent, selector: "pptx-notes-panel", inputs: ["slide", "expanded"], outputs: ["update", "notesToggle"] }, { kind: "component", type: RibbonComponent, selector: "pptx-ribbon", inputs: ["slideIndex", "slideCount", "canEdit", "selectedElement", "zoomPercent", "formatPainterActive", "canActivateFormatPainter", "exporting", "showGrid", "showRulers", "showGuides", "snapToGrid", "eyedropperActive", "themeGalleryOpen", "sidebarCollapsed", "inspectorOpen", "commentsOpen", "commentCount", "findOpen", "collabConnected", "connectedCount"], outputs: ["prev", "next", "zoomIn", "zoomOut", "zoomReset", "find", "present", "presenter", "record", "share", "broadcast", "openFile", "save", "toggleSidebar", "signatures", "info", "print", "comments", "a11y", "link", "openSorter", "toggleNotes", "toggleFormatPainter", "exportPng", "exportPdf", "exportGif", "exportVideo", "replace", "toggleInspector", "drawToolChange", "toggleThemeGallery", "toggleGrid", "toggleRulers", "toggleGuides", "toggleSelectionPane", "openCustomShows", "toggleSnapToGrid", "toggleEyedropper", "openSmartArtDialog", "openEquationDialog", "openSetUpSlideShow", "openCompare", "openPassword", "openFontEmbedding", "openVersionHistory", "openShortcuts", "shapeInsert", "moveLayer", "moveLayerToEdge"] }, { kind: "component", type: TitleBarComponent, selector: "pptx-title-bar", inputs: ["canEdit", "fileName", "isDirty", "autosaveStatus", "autosaveEnabled", "canUndo", "canRedo", "undoLabel", "redoLabel", "findReplaceOpen"], outputs: ["toggleAutosave", "save", "undo", "redo", "toggleFindReplace", "commandSearch"] }, { kind: "component", type: ThemeGalleryComponent, selector: "pptx-theme-gallery", inputs: ["open", "activeName"], outputs: ["applyTheme", "close"] }, { kind: "component", type: SelectionPaneComponent, selector: "pptx-selection-pane", inputs: ["elements", "selectedIds"], outputs: ["selectElement", "bringForward", "sendBackward", "toggleHidden"] }, { kind: "component", type: CustomShowsComponent, selector: "pptx-custom-shows", inputs: ["open", "slides", "customShows", "activeCustomShowId"], outputs: ["create", "remove", "update", "setActive", "close"] }, { kind: "component", type: InsertSmartArtDialogComponent, selector: "pptx-insert-smart-art-dialog", inputs: ["open"], outputs: ["close", "insert"] }, { kind: "component", type: ViewerExtraDialogsComponent, selector: "pptx-viewer-extra-dialogs", inputs: ["activeSlideIndex", "selectedElementId", "filePath", "customShows"], outputs: ["restoreContent"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
86034
86545
  }
86035
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PowerPointViewerComponent, decorators: [{
86546
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PowerPointViewerComponent, decorators: [{
86036
86547
  type: Component,
86037
86548
  args: [{
86038
86549
  selector: 'pptx-viewer',
@@ -86812,10 +87323,10 @@ class CommentsService {
86812
87323
  resolveComment(id) {
86813
87324
  return toggleCommentResolvedInList(this.slideComments(), id);
86814
87325
  }
86815
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CommentsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
86816
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CommentsService });
87326
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: CommentsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
87327
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: CommentsService });
86817
87328
  }
86818
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CommentsService, decorators: [{
87329
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: CommentsService, decorators: [{
86819
87330
  type: Injectable
86820
87331
  }] });
86821
87332
 
@@ -86866,10 +87377,10 @@ class SignaturesService {
86866
87377
  clear() {
86867
87378
  this._signatures.set([]);
86868
87379
  }
86869
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SignaturesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
86870
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SignaturesService });
87380
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SignaturesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
87381
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SignaturesService });
86871
87382
  }
86872
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SignaturesService, decorators: [{
87383
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SignaturesService, decorators: [{
86873
87384
  type: Injectable
86874
87385
  }] });
86875
87386
 
@@ -86966,8 +87477,8 @@ class AnimationPanelComponent {
86966
87477
  });
86967
87478
  }, /* @ts-ignore */
86968
87479
  ...(ngDevMode ? [{ debugName: "steps" }] : /* istanbul ignore next */ []));
86969
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AnimationPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
86970
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.5", type: AnimationPanelComponent, isStandalone: true, selector: "pptx-animation-panel", inputs: { groups: { classPropertyName: "groups", publicName: "groups", isSignal: true, isRequired: true, transformFunction: null }, step: { classPropertyName: "step", publicName: "step", isSignal: true, isRequired: false, transformFunction: null }, isPlaying: { classPropertyName: "isPlaying", publicName: "isPlaying", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { playRequested: "playRequested", pauseRequested: "pauseRequested", stepRequested: "stepRequested", resetRequested: "resetRequested", seek: "seek" }, ngImport: i0, template: `
87480
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: AnimationPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
87481
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "22.0.6", type: AnimationPanelComponent, isStandalone: true, selector: "pptx-animation-panel", inputs: { groups: { classPropertyName: "groups", publicName: "groups", isSignal: true, isRequired: true, transformFunction: null }, step: { classPropertyName: "step", publicName: "step", isSignal: true, isRequired: false, transformFunction: null }, isPlaying: { classPropertyName: "isPlaying", publicName: "isPlaying", isSignal: true, isRequired: false, transformFunction: null } }, outputs: { playRequested: "playRequested", pauseRequested: "pauseRequested", stepRequested: "stepRequested", resetRequested: "resetRequested", seek: "seek" }, ngImport: i0, template: `
86971
87482
  <div class="pptx-ng-anim-panel">
86972
87483
  <div class="pptx-ng-anim-heading">
86973
87484
  <span>{{ 'pptx.animations.animations' | translate }}</span>
@@ -87035,7 +87546,7 @@ class AnimationPanelComponent {
87035
87546
  </div>
87036
87547
  `, isInline: true, styles: [".pptx-ng-anim-panel{display:flex;flex-direction:column;gap:.5rem;padding:.5rem;border:1px solid var(--pptx-ng-border, #d4d4d8);border-radius:.375rem;background:var(--pptx-ng-card, #fff);font-size:.75rem}.pptx-ng-anim-heading{display:flex;align-items:baseline;justify-content:space-between;font-size:.6875rem;text-transform:uppercase;letter-spacing:.05em;color:var(--pptx-ng-muted, #71717a)}.pptx-ng-anim-progress{font-variant-numeric:tabular-nums}.pptx-ng-anim-controls{display:flex;gap:.25rem}.pptx-ng-anim-btn{flex:1;padding:.375rem .5rem;border:1px solid var(--pptx-ng-border, #d4d4d8);border-radius:.25rem;background:var(--pptx-ng-muted-bg, #f4f4f5);color:inherit;font-size:.75rem;cursor:pointer}.pptx-ng-anim-btn--primary{background:var(--pptx-ng-primary, #2563eb);border-color:var(--pptx-ng-primary, #2563eb);color:#fff}.pptx-ng-anim-btn:disabled{opacity:.5;cursor:not-allowed}.pptx-ng-anim-list{display:flex;flex-direction:column;gap:.25rem;margin:0;padding:0;list-style:none}.pptx-ng-anim-row{display:flex;align-items:center;gap:.5rem;width:100%;padding:.25rem .375rem;border:1px solid var(--pptx-ng-border, #d4d4d8);border-radius:.25rem;background:var(--pptx-ng-muted-bg, #f4f4f5);color:inherit;font:inherit;text-align:left;cursor:pointer}.pptx-ng-anim-row--revealed{background:var(--pptx-ng-accent-bg, #dbeafe);border-color:var(--pptx-ng-primary, #2563eb)}.pptx-ng-anim-step-no{display:inline-flex;align-items:center;justify-content:center;width:1.25rem;height:1.25rem;border-radius:50%;background:var(--pptx-ng-border, #d4d4d8);font-size:.6875rem;line-height:1}.pptx-ng-anim-name{flex:1;font-weight:500;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.pptx-ng-anim-trigger{color:var(--pptx-ng-muted, #71717a)}.pptx-ng-anim-empty{margin:0;color:var(--pptx-ng-muted, #71717a)}\n"], dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
87037
87548
  }
87038
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AnimationPanelComponent, decorators: [{
87549
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: AnimationPanelComponent, decorators: [{
87039
87550
  type: Component,
87040
87551
  args: [{ selector: 'pptx-animation-panel', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
87041
87552
  <div class="pptx-ng-anim-panel">
@@ -87179,5 +87690,5 @@ function cn(...values) {
87179
87690
  * Generated bundle index. Do not edit.
87180
87691
  */
87181
87692
 
87182
- export { ALIGN_OPTIONS, AUDIENCE_HASH, AUDIENCE_NONCE_KEY, AccessibilityPanelComponent, AccessibilityService, AdvancedChartEditorComponent, AnimationAuthorPanelComponent, AnimationPanelComponent, AnimationPlaybackService, AutosaveService, BroadcastDialogComponent, CHART_EDITOR_STYLES, CURSOR_PALETTE, CanvasFitService, ChartAxisOptionsComponent, ChartAxisStyleOptionsComponent, ChartComboTypeOptionsComponent, ChartDataEditorComponent, ChartDataLabelOptionsComponent, ChartDatapointOptionsComponent, ChartDisplayOptionsComponent, ChartElementViewComponent, ChartErrorBarOptionsComponent, ChartMarkerOptionsComponent, ChartPartSelectionService, ChartPrimitivesComponent, ChartRendererComponent, ChartTrendlineOptionsComponent, CollaborationCursorsComponent, CollaborationService, ColorChangedImageComponent, CommentsPanelComponent, CommentsService, ComparePanelComponent, ConnectorRendererComponent, ConnectorTextOverlayComponent, CustomShowsComponent, DATA_TABLE_HEADER_H, DATA_TABLE_KEY_W, DATA_TABLE_PADDING, DATA_TABLE_ROW_H, DEFAULT_BOUNDS, DEFAULT_BROADCAST_SERVER_URL, DEFAULT_CANVAS_HEIGHT, DEFAULT_CANVAS_WIDTH, DEFAULT_COLOR_SCHEME, DEFAULT_FILL_COLOR, DEFAULT_LAYOUT, DEFAULT_PALETTE$1 as DEFAULT_PALETTE, DEFAULT_PRINT_SETTINGS, DEFAULT_SLIDE_BACKGROUND, DEFAULT_STROKE_COLOR, DEFAULT_STYLE, DEFAULT_TABLE_ROW_HEIGHT, DEFAULT_TEXT_COLOR$1 as DEFAULT_TEXT_COLOR, DIRECTIONAL_PRESETS, DIRECTION_OPTIONS, EMBEDDED_FONTS_STYLE_ID, EMPHASIS_PRESETS, ENTRANCE_PRESETS, TEMPLATES as EQUATION_TEMPLATES, EXIT_PRESETS, EditorContextMenuComponent, EditorHistory, EditorStateService, EditorToolbarComponent, EffectsPanelComponent, ElementRendererComponent, EmbeddedFontsService, EncryptedFileDialogComponent, EquationEditorDialogComponent, EquationRendererComponent, EquationTemplateGalleryComponent, ExportProgressModalComponent, ExportService, FieldContextService, FindBarComponent, FindReplaceBarComponent, FollowModeBarComponent, FontEmbeddingListComponent, FontEmbeddingPanelComponent, GALLERY_THEME_PRESETS, GradientPickerComponent, HANDOUT_OPTIONS, HyperlinkDialogComponent, InkDrawingService, InkRendererComponent, InsertSmartArtDialogComponent, InspectorPanelComponent, IsMobileService, KeepAnnotationsDialogComponent, LONG_PRESS_DURATION_MS, LONG_PRESS_MOVE_TOLERANCE_PX, LoadContentService, LocalPresencePublisher, MAX_ZOOM_SCALE, MIN_ZOOM_SCALE, MediaRendererComponent, MobileBottomBarComponent, MobileMenuSheetComponent, MobilePresenterViewComponent, MobileSheetComponent, MobileSlidesSheetComponent, MobileToolbarComponent, ModalDialogComponent, Model3DRendererComponent, NotesPanelComponent, NotesToolbarComponent, OleRendererComponent, PRESENTER_CHANNEL_NAME, PRESENTER_MSG_ORIGIN, PasswordProtectionDialogComponent, PasswordStrengthMeterComponent, PowerPointViewerComponent, PresentationAnnotationOverlayComponent, PresentationAnnotationsService, PresentationOverlayComponent, PresentationSubtitleBarComponent, PresentationTransitionOverlayComponent, PresenterViewComponent, PresenterWindowService, PrintDialogComponent, PrintService, PrintSettingsPanelComponent, PropertiesDialogComponent, REPEAT_MODE_OPTIONS, RESIZE_HANDLES, RULER_THICKNESS, RemoteSelectionOverlayComponent, RibbonAnimationsSectionComponent, RibbonArrangeSectionComponent, RibbonColorPopoverComponent, RibbonComponent, RibbonDesignSectionComponent, RibbonDrawSectionComponent, RibbonDrawingGroupComponent, RibbonEditingSectionComponent, RibbonFileSectionComponent, RibbonFontControlsComponent, RibbonHomeSectionComponent, RibbonInsertFieldsComponent, RibbonInsertSectionComponent, RibbonParagraphControlsComponent, RibbonPrimaryRowComponent, RibbonReviewSectionComponent, RibbonSlideshowSectionComponent, RibbonTransitionsSectionComponent, RibbonViewSectionComponent, RulerGuidesService, SEQUENCE_OPTIONS, SEVERITY_GROUPS, SEVERITY_LABELS, SHORTCUT_REFERENCE_ITEMS, SLIDE_PX_PER_INCH, SLIDE_TRANSITION_KEYFRAMES, DEFAULT_PALETTE as SMARTART_DEFAULT_PALETTE, PALETTES$1 as SMARTART_PALETTES, SMART_ART_COLOR_SCHEMES, SMART_ART_STYLE_OPTIONS, SUB_ITEM_LABEL, SVG_WARP_PRESETS, SWIPE_MAX_VERTICAL_PX, SWIPE_THRESHOLD_PX, SelectionPaneComponent, SetUpSlideShowDialogComponent, ShareDialogComponent, ShortcutPanelComponent, ShowOptionsFieldsetComponent, ShowSlidesFieldsetComponent, SignatureStrippedDialogComponent, SignaturesPanelComponent, SignaturesService, SlideCanvasComponent, SlideDiffChangesComponent, SlideDiffRowComponent, SlideDiffThumbnailsComponent, SlideSorterOverlayComponent, SlidesPanelComponent, SmartArt3DRendererComponent, SmartArt3DService, SmartArtPreviewComponent, SmartArtPropertiesComponent, SmartArtRendererComponent, StatusBarComponent, TABLE_STRUCTURE_TOGGLES, TEXT_DIRECTION_OPTIONS$1 as TEXT_DIRECTION_OPTIONS, TIMING_CURVE_OPTIONS, TRIGGER_OPTIONS, TYPE_LABELS, TableCellAdvancedFillComponent, TableCellFormattingComponent, TableDataEditorComponent, TablePropertiesComponent, TableRendererComponent, TableResizeOverlayComponent, TableSelectionService, TextAdvancedPanelComponent, ThemeGalleryComponent, TitleBarComponent, VALIGN_OPTIONS, VIEWER_THEME, VersionHistoryPanelComponent, ViewerCanvasEditingService, ViewerCollabCursorService, ViewerCollaborationSessionService, ViewerCompareService, ViewerCustomShowsService, ViewerDialogsService, ViewerDocumentPropertiesService, ViewerExportService, ViewerExtraDialogsComponent, ViewerFileIOService, ViewerFindReplaceService, ViewerFormatPainterService, ViewerInspectorPanelService, ViewerKeyboardService, ViewerMobileSheetService, ViewerPresentationModeService, ViewerThemeGalleryService, ViewerTouchGesturesService, ViewerZoomService, WEBM_MIME_CANDIDATES, WriteBackScheduler, ZoomNavigationService, ZoomRendererComponent, ZoomTargetService, addCategory, addCommentToList, addGradientStopPatch, addItem, addSeries, addSubItem, advanceStep, alignPatch, animationFor, annotationMapToInkInserts, applyAcceptedDiff, applyAnimationPreset, applyFindReplacements, applyFormatToElement, applyMove, applyResize, applyTableStylePreset, asMediaElement, assignUserColor, attachTouchGestures, beginNodeEdit, boolFromEvent, bringForward, bringToFront, buildBarActions, buildBroadcastConfig, buildBroadcastViewerUrl, buildCategoryLabels, buildCellParagraphs, buildChartViewModel, buildChromeStyle, buildClearHyperlinkPatch, buildClickGroups, buildColStyles, buildCollaborationConfig, buildComboViewModel, buildCssGradientFromShapeStyle, buildDuotoneFilter, buildDuotoneFilterId, buildEmbeddedFontStyles, buildEquationElement, buildEquationSegment, buildFallbackViewModel, buildFontFaceRule, buildGradientFillCss, buildGridlinesAndLabels, buildHyperlinkPatch, buildInkContainerStyle, buildInkStrokes, buildLegend, buildModel3DContainerStyle, buildModel3DViewModel, buildOleActionModel, buildOleInfoRows, buildPatternFillCss, buildPrintHtmlDocument as buildPrintDocument, buildPropertiesPatch, buildRegionMapViewModel, buildSaveSlides, buildShareUrl, buildSmartArtInsertElement, buildSmartArtNodes, buildStockViewModel, buildSurfaceViewModel, buildTableViewModel, buildTreemapViewModel, buildTrimFragment, buildWaterfallViewModel, buildZeroLine, buildZoomContainerStyle, buildZoomViewModel, bulletIndentPx, canAddTopLevelNode, canRemoveTopLevelNode, canStartBroadcast, canStartShare, canUseClipboard, captionDisplayText, cellRunStyle, cellStyleToStyleMap, cellTdStyle, changeCountLabel, changeIcon, characterSpacingPatch, checkFontAvailable, clampCursorPosition, clampGifDimensions, clampIndex, clampNotesFontSize, clampScale, clampStep, clearAudienceContent, cn, collectAccessibilityIssues, collectElementText, collectSlideText, collectUsedFontFamilies, columnWidthStyle, commitNodeText, computeAlign, computeAxisTitlePrimitives, computeBarRects, computeBubbleRadius, computeCornerHandle, computeDataTablePrimitives, computeDistribute, computeDrawingViewBox, computeErrorBarPrimitives, computeHandleBoxes, computeHandoutLayout, computeIsMobile, computeIsTablet, computeLinePoints, computeLinearRegression, computePageCount, computePieLayout, computePieSlicePath, computePieSlices, computePlotLayout, computeRSquared, computeRadarPoints, computeScatterDots, computeSelectionBoxes, computeSingleSelected, computeSlideIndices, computeSnap, computeStackedBarRects, computeStackedValueRange, computeTextLines, computeTimerProgress, computeTrendlinePrimitives, computeValueRange, convertOmmlToMathMl, copyFormatFromElement, countAccessibilityIssues, countAnnotationStrokes, createCustomShow, createSwipeDismissDrag, createWebrtcBundle, createWebsocketBundle, cssObjectToStyleMap, currentColorScheme, currentLayout, currentStyle, defaultCssVars, defaultRadius, defaultThemeColors, deleteElementsByIds, deleteVersion as deleteRecoveryVersion, demoteNode, deriveModel3DBlobUrl, derivePresenceList, describeSmartArtBounds, disableGlowPatch, disableInnerShadowPatch, disableOuterShadowPatch, disableReflectionPatch, disableSoftEdgePatch, duplicateElementById, durationOf, effectsStateOf, enableGlowPatch, enableInnerShadowPatch, enableOuterShadowPatch, enableReflectionPatch, enableSoftEdgePatch, encodeGif, estimatePageCount, evenColumnWidths, evenRowHeights, exitPresentationFullscreen, extractPathPoints, eyedropperAvailable, fillColorOf, findInSlides, findOwningSlideIndex, findSlideIndexByElementId, fitPolynomial, fitZoom, fontMimeForFormat, fontSizeOf, formatAutoNumber, formatAxisValue, formatBytes, formatCursorLabel, formatElapsed, formatFileSize, formatPropertyDate, formatTime, fpsToFrameIntervalMs, generateBroadcastRoomId, generateCommentId, generateCustomShowId, generatePressureCircles, generateRulerTicks, getClrChangeParams, getContainerStyle, getDuotoneFilterDef, getImageSrc, getOleAriaLabel, getOleBadgeLabel, getOleDisplayName, getOleDownloadFileName, getOleTypeColor, getOleTypeLabel, getPasswordStrength, getPatternSvg, getPlaceholderStyle, getVersions as getRecoveryVersions, getResolvedShapeClipPath, getResolvedShapeClipPathFor, getShapeFillStrokeStyle, getSlideBackgroundStyle, getSlideTransitionAnimations, getSmartArtNodeBounds, getSpeechRecognitionCtor, getTextBlockStyle, getTextWarp, getTouchDistance, getWarpCategory, getWarpPath, gradientStateFromStyle, gradientStateOf, gradientStatePatch, gridColumns, groupElements, groupIssuesBySeverity, hasAnimation, hasCopyableFormat, hasExistingLink, hasExitedFullscreen, hasGradientFill, hasPressureVariation, headerLabel, inkViewBox, insertColumn, insertRow, interpolateWidth, isAudienceTab, isBold, isBrowserOpenableMime, isChildNode, isElementInteractive, isInjectableUrl, isItalic, isPpactionUrl, isPresenterMessage, isSigned, isTextElement, isUnderline, isUrlSafe, isValidRoomId, isViewportBackgroundPressTarget, isZoomActivationKey, issueTrackKey, issueTypeLabel, keyToLabel, latexToMathml, linePointsToSvgString, lineSpacingPatch, loadAudienceContent, mergeCaptionResults, mergeDown, mergeRight, mergeSelection, moveElementBy, moveNodeDown, moveNodeUp, msToFrameDelayCs, narrowToCircle, narrowToPolygon, narrowToRect, newChartElement, newEquationElement, newShapeElement, newSmartArtElement, newTableElement, newTextElement, nextVisibleIndex, nodeBold, nodeEditBox, nodeFillColor, nodeFontColor, nodeIdFromKey, nodeItalic, nodeStyle, normalizeFontFormat, normalizeSlidesPerPage, normalizeValue, numFromEvent, ommlToMathml, ooxmlDashToCssBorderStyle, openNativeEyeDropper, overallStatus, paletteColor, parseAudienceNonce, parseNodeTextarea, partitionSlides, patchChartData, patchChartStyle, patchTableData, patchTextStyle, pendingElementStyles, pickColorByClickFallback, pickSupportedMimeType, planGifFrames, planVideoSegments, pointsToSvgPathD, presenceToCursors, presetByLayout, presetsForCategory, pressuresToWidths, prevVisibleIndex, projectDrawingShapes, promoteNode, provideViewerTheme, radarAngle, radarRingPoints, recordWebm, redistributeColumnWidth, removeAnimation, removeCategory, removeColumn, removeCommentFromList, removeElementAnimation, removeGradientStopPatch, removeNode, removeRow, removeSeries, renderToCanvas, reorderAnimationDown, reorderAnimationUp, replaceInSlides, replaceMatch, requestPresentationFullscreen, resizeElement, resolveCaptionTracks, resolveChartKind, resolveFontVariant, resolveHyperlinkHref, resolveInteractiveElementId, resolveMediaSrc, resolveOleType, resolveParagraphBullet, resolvePresenterNotes, resolveRegionCode, resolvePalette as resolveSmartArtPalette, resolveTransitionDuration, revealedElementStyles, routeOrthogonalConnector, rowStyle, sampleColorFromSlide, sanitizeColor, sanitizeSlideIndex, sanitizeUserName, scanAvailableFonts, searchSlides, seedBroadcastFields, seedHyperlinkDraft, seedPropertiesDraft, seedShareFields, segmentFrameCount, selectValue$2 as selectValue, sendBackward, sendToBack, sequentialColorScale, serializeWriteBack, seriesColor, setAnimationEmphasis, setAnimationEntrance, setAnimationExit, setAxis, setAxisLogScale, setAxisTitleStyle, setCategoryLabel, setCellText, setColorScheme, setDataLabels, setDataPointExplosion, setDataPointFill, setDataPointLabel, setDelay, setDirection, setDuration, setElementPosition, setGridlineStyle, setLayout, setLegend, setNodeStyle, setNodeText, setRepeatCount, setRepeatMode, setSequence, setSeriesChartType, setSeriesColor, setSeriesErrorBars, setSeriesMarker, setSeriesName, setSeriesTrendline, setSeriesValue, setStyle, setTimingCurve, setTitle, setTrigger, setTriggerShapeId, shapeStylePatch, sheetAfterNavigate, shouldUseSvgWarp, showDirectionPicker, showsTemplateAffordance, signatureCountLabel, signatureKey, signatureTimestamp, signerName, statusLabel as slideDiffStatusLabel, slideNumberOf, smartArtNodes, paletteColour as smartArtPaletteColour, snapToGridStep, splitCursorCell, splitMergedCell, statusKind, statusLabel$1 as statusLabel, storeAudienceContent, stringFromEvent$5 as stringFromEvent, strokeColorOf, strokeToInkElement, styleShadowFilter, textAdvancedPatch, textAdvancedStateFromStyle, textAdvancedStateOf, textColorOf, textDirectionPatch, textStyleOf, textStylePatch, themeStyle, themeToCssVars, thumbnailHeight, thumbnailZoom, toggleCommentResolvedInList, toggleNodeBold, toggleNodeItalic, toggleSheet, topLevelNodeCount, translationsEn, ungroupElements, updateElementById, updateGlowPatch, updateGradientStopPatch, updateInnerShadowPatch, updateOuterShadowPatch, updateReflectionPatch, vAlignPatch, validatePassword, validatePrintSettings, validateRoomId, valueToY, vermilionDarkColors, vermilionDarkTheme, vermilionLightColors, vermilionLightTheme, vermilionRadius, waypointsToPathD, worstStatus, zoomTargetSlideIndex };
87693
+ export { ALIGN_OPTIONS, AUDIENCE_HASH, AUDIENCE_NONCE_KEY, AccessibilityPanelComponent, AccessibilityService, AdvancedChartEditorComponent, AnimationAuthorPanelComponent, AnimationPanelComponent, AnimationPlaybackService, AutosaveService, BroadcastDialogComponent, CHART_EDITOR_STYLES, CURSOR_PALETTE, CanvasFitService, ChartAxisOptionsComponent, ChartAxisStyleOptionsComponent, ChartComboTypeOptionsComponent, ChartDataEditorComponent, ChartDataLabelOptionsComponent, ChartDatapointOptionsComponent, ChartDisplayOptionsComponent, ChartElementViewComponent, ChartErrorBarOptionsComponent, ChartMarkerOptionsComponent, ChartPartSelectionService, ChartPrimitivesComponent, ChartRendererComponent, ChartTrendlineOptionsComponent, CollaborationCursorsComponent, CollaborationService, ColorChangedImageComponent, CommentsPanelComponent, CommentsService, ComparePanelComponent, ConnectorRendererComponent, ConnectorTextOverlayComponent, CustomShowsComponent, DATA_TABLE_HEADER_H, DATA_TABLE_KEY_W, DATA_TABLE_PADDING, DATA_TABLE_ROW_H, DEFAULT_BOUNDS, DEFAULT_BROADCAST_SERVER_URL, DEFAULT_CANVAS_HEIGHT, DEFAULT_CANVAS_WIDTH, DEFAULT_COLOR_SCHEME, DEFAULT_FILL_COLOR, DEFAULT_LAYOUT, DEFAULT_PALETTE$1 as DEFAULT_PALETTE, DEFAULT_PRINT_SETTINGS, DEFAULT_SLIDE_BACKGROUND, DEFAULT_STROKE_COLOR, DEFAULT_STYLE, DEFAULT_TABLE_ROW_HEIGHT, DEFAULT_TEXT_COLOR$1 as DEFAULT_TEXT_COLOR, DIRECTIONAL_PRESETS, DIRECTION_OPTIONS, EMBEDDED_FONTS_STYLE_ID, EMPHASIS_PRESETS, ENTRANCE_PRESETS, TEMPLATES as EQUATION_TEMPLATES, EXIT_PRESETS, EditorContextMenuComponent, EditorHistory, EditorStateService, EditorToolbarComponent, EffectsPanelComponent, ElementRendererComponent, EmbeddedFontsService, EncryptedFileDialogComponent, EquationEditorDialogComponent, EquationRendererComponent, EquationTemplateGalleryComponent, ExportProgressModalComponent, ExportService, FieldContextService, FindBarComponent, FindReplaceBarComponent, FollowModeBarComponent, FontEmbeddingListComponent, FontEmbeddingPanelComponent, GALLERY_THEME_PRESETS, GradientPickerComponent, HANDOUT_OPTIONS, HyperlinkDialogComponent, InkDrawingService, InkRendererComponent, InsertSmartArtDialogComponent, InspectorPanelComponent, IsMobileService, KeepAnnotationsDialogComponent, LONG_PRESS_DURATION_MS, LONG_PRESS_MOVE_TOLERANCE_PX, LoadContentService, LocalPresencePublisher, MAX_ZOOM_SCALE, MIN_ZOOM_SCALE, MediaRendererComponent, MobileBottomBarComponent, MobileMenuSheetComponent, MobilePresenterViewComponent, MobileSheetComponent, MobileSlidesSheetComponent, MobileToolbarComponent, ModalDialogComponent, Model3DRendererComponent, NotesPanelComponent, NotesToolbarComponent, OleRendererComponent, PRESENTER_CHANNEL_NAME, PRESENTER_MSG_ORIGIN, PasswordProtectionDialogComponent, PasswordStrengthMeterComponent, PowerPointViewerComponent, PresentationAnnotationOverlayComponent, PresentationAnnotationsService, PresentationOverlayComponent, PresentationSubtitleBarComponent, PresentationTransitionOverlayComponent, PresenterViewComponent, PresenterWindowService, PrintDialogComponent, PrintService, PrintSettingsPanelComponent, PropertiesDialogComponent, REPEAT_MODE_OPTIONS, RESIZE_HANDLES, RULER_THICKNESS, RemoteSelectionOverlayComponent, RibbonAnimationsSectionComponent, RibbonArrangeSectionComponent, RibbonColorPopoverComponent, RibbonComponent, RibbonDesignSectionComponent, RibbonDrawSectionComponent, RibbonDrawingGroupComponent, RibbonEditingSectionComponent, RibbonFileSectionComponent, RibbonFontControlsComponent, RibbonHomeSectionComponent, RibbonInsertFieldsComponent, RibbonInsertSectionComponent, RibbonParagraphControlsComponent, RibbonPrimaryRowComponent, RibbonReviewSectionComponent, RibbonSlideshowSectionComponent, RibbonTransitionsSectionComponent, RibbonViewSectionComponent, RulerGuidesService, SEQUENCE_OPTIONS, SEVERITY_GROUPS, SEVERITY_LABELS, SHORTCUT_REFERENCE_ITEMS, SLIDE_PX_PER_INCH, SLIDE_TRANSITION_KEYFRAMES, DEFAULT_PALETTE as SMARTART_DEFAULT_PALETTE, PALETTES$1 as SMARTART_PALETTES, SMART_ART_COLOR_SCHEMES, SMART_ART_STYLE_OPTIONS, SUB_ITEM_LABEL, SVG_WARP_PRESETS, SWIPE_MAX_VERTICAL_PX, SWIPE_THRESHOLD_PX, SelectionPaneComponent, SetUpSlideShowDialogComponent, ShareDialogComponent, ShortcutPanelComponent, ShowOptionsFieldsetComponent, ShowSlidesFieldsetComponent, SignatureStrippedDialogComponent, SignaturesPanelComponent, SignaturesService, SlideCanvasComponent, SlideDiffChangesComponent, SlideDiffRowComponent, SlideDiffThumbnailsComponent, SlideSorterOverlayComponent, SlidesPanelComponent, SmartArt3DRendererComponent, SmartArt3DService, SmartArtPreviewComponent, SmartArtPropertiesComponent, SmartArtRendererComponent, StatusBarComponent, TABLE_STRUCTURE_TOGGLES, TEXT_DIRECTION_OPTIONS$1 as TEXT_DIRECTION_OPTIONS, TIMING_CURVE_OPTIONS, TRIGGER_OPTIONS, TYPE_LABELS, TableCellAdvancedFillComponent, TableCellFormattingComponent, TableDataEditorComponent, TablePropertiesComponent, TableRendererComponent, TableResizeOverlayComponent, TableSelectionService, TextAdvancedPanelComponent, ThemeGalleryComponent, TitleBarComponent, VALIGN_OPTIONS, VIEWER_THEME, VersionHistoryPanelComponent, ViewerCanvasEditingService, ViewerCollabCursorService, ViewerCollaborationSessionService, ViewerCompareService, ViewerCustomShowsService, ViewerDialogsService, ViewerDocumentPropertiesService, ViewerExportService, ViewerExtraDialogsComponent, ViewerFileIOService, ViewerFindReplaceService, ViewerFormatPainterService, ViewerInspectorPanelService, ViewerKeyboardService, ViewerMobileSheetService, ViewerPresentationModeService, ViewerThemeGalleryService, ViewerTouchGesturesService, ViewerZoomService, WEBM_MIME_CANDIDATES, WriteBackScheduler, ZoomNavigationService, ZoomRendererComponent, ZoomTargetService, addCategory, addCommentToList, addGradientStopPatch, addItem, addSeries, addSubItem, advanceStep, alignPatch, animationFor, annotationMapToInkInserts, applyAcceptedDiff, applyAnimationPreset, applyFindReplacements, applyFormatToElement, applyMove, applyResize, applyTableStylePreset, asMediaElement, assignUserColor, attachTouchGestures, beginNodeEdit, boolFromEvent, bringForward, bringToFront, buildBarActions, buildBroadcastConfig, buildBroadcastViewerUrl, buildCategoryLabels, buildCellParagraphs, buildChartViewModel, buildChromeStyle, buildClearHyperlinkPatch, buildClickGroups, buildColStyles, buildCollaborationConfig, buildComboViewModel, buildCssGradientFromShapeStyle, buildDuotoneFilter, buildDuotoneFilterId, buildEmbeddedFontStyles, buildEquationElement, buildEquationSegment, buildFallbackViewModel, buildFontFaceRule, buildGradientFillCss, buildGridlinesAndLabels, buildHyperlinkPatch, buildInkContainerStyle, buildInkStrokes, buildLegend, buildModel3DContainerStyle, buildModel3DViewModel, buildOleActionModel, buildOleInfoRows, buildPatternFillCss, buildPrintHtmlDocument as buildPrintDocument, buildPropertiesPatch, buildRegionMapViewModel, buildSaveSlides, buildShareUrl, buildSmartArtInsertElement, buildSmartArtNodes, buildStockViewModel, buildSurfaceViewModel, buildTableViewModel, buildTreemapViewModel, buildTrimFragment, buildWaterfallViewModel, buildZeroLine, buildZoomContainerStyle, buildZoomViewModel, bulletIndentPx, canAddTopLevelNode, canRemoveTopLevelNode, canStartBroadcast, canStartShare, canUseClipboard, captionDisplayText, cellRunStyle, cellStyleToStyleMap, cellTdStyle, changeCountLabel, changeIcon, characterSpacingPatch, checkFontAvailable, clampCursorPosition, clampGifDimensions, clampIndex, clampNotesFontSize, clampScale, clampStep, clearAudienceContent, cn, collectAccessibilityIssues, collectElementText, collectSlideText, collectUsedFontFamilies, columnWidthStyle, commitNodeText, computeAlign, computeAxisTitlePrimitives, computeBarRects, computeBubbleRadius, computeCornerHandle, computeDataTablePrimitives, computeDistribute, computeDrawingViewBox, computeErrorBarPrimitives, computeHandleBoxes, computeHandoutLayout, computeIsMobile, computeIsTablet, computeLinePoints, computeLinearRegression, computePageCount, computePieLayout, computePieSlicePath, computePieSlices, computePlotLayout, computeRSquared, computeRadarPoints, computeScatterDots, computeSelectionBoxes, computeSingleSelected, computeSlideIndices, computeSnap, computeStackedBarRects, computeStackedValueRange, computeTextLines, computeTimerProgress, computeTrendlinePrimitives, computeValueRange, convertOmmlToMathMl, copyFormatFromElement, countAccessibilityIssues, countAnnotationStrokes, createCustomShow, createSwipeDismissDrag, createWebrtcBundle, createWebsocketBundle, cssObjectToStyleMap, currentColorScheme, currentLayout, currentStyle, defaultCssVars, defaultRadius, defaultThemeColors, deleteElementsByIds, deleteVersion as deleteRecoveryVersion, demoteNode, deriveModel3DBlobUrl, derivePresenceList, describeSmartArtBounds, disableGlowPatch, disableInnerShadowPatch, disableOuterShadowPatch, disableReflectionPatch, disableSoftEdgePatch, duplicateElementById, durationOf, effectsStateOf, enableGlowPatch, enableInnerShadowPatch, enableOuterShadowPatch, enableReflectionPatch, enableSoftEdgePatch, encodeGif, estimatePageCount, evenColumnWidths, evenRowHeights, exitPresentationFullscreen, extractPathPoints, eyedropperAvailable, fillColorOf, findInSlides, findOwningSlideIndex, findSlideIndexByElementId, fitPolynomial, fitZoom, fontMimeForFormat, fontSizeOf, formatAutoNumber, formatAxisValue, formatBytes, formatCursorLabel, formatElapsed, formatFileSize, formatPropertyDate, formatTime, fpsToFrameIntervalMs, generateBroadcastRoomId, generateCommentId, generateCustomShowId, generatePressureCircles, generateRulerTicks, getClrChangeParams, getContainerStyle, getDuotoneFilterDef, getImageSrc, getOleAriaLabel, getOleBadgeLabel, getOleDisplayName, getOleDownloadFileName, getOleTypeColor, getOleTypeLabel, getPasswordStrength, getPatternSvg, getPlaceholderStyle, getVersions as getRecoveryVersions, getResolvedShapeClipPath, getResolvedShapeClipPathFor, getShapeFillStrokeStyle, getSlideBackgroundStyle, getSlideTransitionAnimations, getSmartArtNodeBounds, getSpeechRecognitionCtor, getTextBlockStyle, getTextWarp, getTouchDistance, getWarpCategory, getWarpPath, gradientStateFromStyle, gradientStateOf, gradientStatePatch, gridColumns, groupElements, groupIssuesBySeverity, hasAnimation, hasCopyableFormat, hasExistingLink, hasExitedFullscreen, hasGradientFill, hasPressureVariation, headerLabel, inkViewBox, insertColumn, insertRow, interpolateWidth, isAudienceTab, isBold, isBrowserOpenableMime, isChildNode, isElementInteractive, isInjectableUrl, isItalic, isPpactionUrl, isPresenterMessage, isSigned, isTextElement, isUnderline, isUrlSafe, isValidRoomId, isViewportBackgroundPressTarget, isZoomActivationKey, issueTrackKey, issueTypeLabel, keyToLabel, latexToMathml, linePointsToSvgString, lineSpacingPatch, loadAudienceContent, mergeCaptionResults, mergeDown, mergeRight, mergeSelection, moveElementBy, moveNodeDown, moveNodeUp, msToFrameDelayCs, narrowToCircle, narrowToPolygon, narrowToRect, newChartElement, newEquationElement, newShapeElement, newSmartArtElement, newTableElement, newTextElement, nextVisibleIndex, nodeBold, nodeEditBox, nodeFillColor, nodeFontColor, nodeIdFromKey, nodeItalic, nodeStyle, normalizeFontFormat, normalizeSlidesPerPage, normalizeValue, numFromEvent, ommlToMathml, ooxmlDashToCssBorderStyle, openNativeEyeDropper, overallStatus, paletteColor, parseAudienceNonce, parseNodeTextarea, partitionSlides, patchChartData, patchChartStyle, patchTableData, patchTextStyle, pendingElementStyles, pickColorByClickFallback, pickSupportedMimeType, planGifFrames, planVideoSegments, pointsToSvgPathD, presenceToCursors, presetByLayout, presetsForCategory, pressuresToWidths, prevVisibleIndex, projectDrawingShapes, promoteNode, provideViewerTheme, radarAngle, radarRingPoints, recordWebm, redistributeColumnWidth, removeAnimation, removeCategory, removeColumn, removeCommentFromList, removeElementAnimation, removeGradientStopPatch, removeNode, removeRow, removeSeries, renderToCanvas, reorderAnimationDown, reorderAnimationUp, replaceInSlides, replaceMatch, requestPresentationFullscreen, resizeElement, resolveCaptionTracks, resolveChartKind, resolveFontVariant, resolveHyperlinkHref, resolveInteractiveElementId, resolveMediaSrc, resolveOleType, resolveParagraphBullet, resolvePresenterNotes, resolveRegionCode, resolvePalette as resolveSmartArtPalette, resolveTransitionDuration, revealedElementStyles, routeOrthogonalConnector, rowStyle, sampleColorFromSlide, sanitizeColor, sanitizeSlideIndex, sanitizeUserName, scanAvailableFonts, searchSlides, seedBroadcastFields, seedHyperlinkDraft, seedPropertiesDraft, seedShareFields, segmentFrameCount, selectValue$2 as selectValue, sendBackward, sendToBack, sequentialColorScale, serializeWriteBack, seriesColor, setAnimationEmphasis, setAnimationEntrance, setAnimationExit, setAxis, setAxisLogScale, setAxisTitleStyle, setCategoryLabel, setCellText, setColorScheme, setDataLabels, setDataPointExplosion, setDataPointFill, setDataPointLabel, setDelay, setDirection, setDuration, setElementPosition, setGridlineStyle, setLayout, setLegend, setNodeStyle, setNodeText, setRepeatCount, setRepeatMode, setSequence, setSeriesChartType, setSeriesColor, setSeriesErrorBars, setSeriesMarker, setSeriesName, setSeriesTrendline, setSeriesValue, setStyle, setTimingCurve, setTitle, setTrigger, setTriggerShapeId, shapeStylePatch, sheetAfterNavigate, shouldUseSvgWarp, showDirectionPicker, showsTemplateAffordance, signatureCountLabel, signatureKey, signatureTimestamp, signerName, statusLabel as slideDiffStatusLabel, slideNumberOf, smartArtNodes, paletteColour as smartArtPaletteColour, snapToGridStep, splitCursorCell, splitMergedCell, statusKind, statusLabel$1 as statusLabel, storeAudienceContent, stringFromEvent$5 as stringFromEvent, strokeColorOf, strokeToInkElement, styleShadowFilter, textAdvancedPatch, textAdvancedStateFromStyle, textAdvancedStateOf, textColorOf, textDirectionPatch, textStyleOf, textStylePatch, themeStyle, themeToCssVars, thumbnailHeight, thumbnailZoom, toggleCommentResolvedInList, toggleNodeBold, toggleNodeItalic, toggleSheet, topLevelNodeCount, transformSelectedTextCase, translationsEn, ungroupElements, updateElementById, updateGlowPatch, updateGradientStopPatch, updateInnerShadowPatch, updateOuterShadowPatch, updateReflectionPatch, vAlignPatch, validatePassword, validatePrintSettings, validateRoomId, valueToY, vermilionDarkColors, vermilionDarkTheme, vermilionLightColors, vermilionLightTheme, vermilionRadius, waypointsToPathD, worstStatus, zoomTargetSlideIndex };
87183
87694
  //# sourceMappingURL=pptx-angular-viewer.mjs.map