pptx-angular-viewer 1.13.1 → 1.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -20400,6 +20400,39 @@ function buildRunEffectStyle(style) {
20400
20400
  return css;
20401
20401
  }
20402
20402
 
20403
+ /**
20404
+ * DOMPurify wrappers shared by every markup-sanitising call site (MathML/SVG
20405
+ * equation rendering, print-document/SVG assembly). DOMPurify's factory has
20406
+ * no working `sanitize` until handed a `window`, so in non-DOM contexts
20407
+ * (node-based tests, SSR without jsdom) these degrade rather than throw.
20408
+ *
20409
+ * Two degradation strategies, picked per call site by how the sanitised
20410
+ * output is used:
20411
+ * - {@link sanitizeMarkupOrRaw}: returns the untouched input outside a DOM.
20412
+ * Safe when the caller only ever renders the result in the browser (e.g.
20413
+ * `dangerouslySetInnerHTML` / `v-html`), so the fallback path never
20414
+ * reaches a real sink.
20415
+ * - {@link sanitizeMarkupOrEmpty}: returns `''` outside a DOM (fail closed).
20416
+ * Used where the sanitised string is unconditionally spliced into a
20417
+ * larger assembled document (print HTML/SVG) with no further gate, so a
20418
+ * silent pass-through of the raw, unsanitised input would defeat the
20419
+ * sanitisation entirely.
20420
+ */
20421
+ function purifyFn() {
20422
+ const purify = DOMPurify;
20423
+ return typeof purify.sanitize === 'function' ? purify.sanitize : undefined;
20424
+ }
20425
+ /** Sanitise `markup`; outside a DOM, returns the raw input unchanged. */
20426
+ function sanitizeMarkupOrRaw(markup, config) {
20427
+ const sanitize = purifyFn();
20428
+ return sanitize ? sanitize(markup, config) : markup;
20429
+ }
20430
+ /** Sanitise `markup`; outside a DOM, returns `''` (fail closed). */
20431
+ function sanitizeMarkupOrEmpty(markup, config) {
20432
+ const sanitize = purifyFn();
20433
+ return sanitize ? sanitize(markup, config) : '';
20434
+ }
20435
+
20403
20436
  /**
20404
20437
  * MathML / SVG markup sanitisation, shared by every binding's equation
20405
20438
  * renderer.
@@ -20418,20 +20451,15 @@ function buildRunEffectStyle(style) {
20418
20451
  * Safely sanitise a MathML/SVG markup string.
20419
20452
  *
20420
20453
  * In browser environments DOMPurify ships with `sanitize` ready to go. In
20421
- * non-DOM contexts (node-based tests, SSR without jsdom) DOMPurify returns a
20422
- * factory that lacks `sanitize` until handed a window; there we fall back to
20423
- * the raw input. The XSS surface only matters in the browser, so this fallback
20454
+ * non-DOM contexts (node-based tests, SSR without jsdom) it falls back to the
20455
+ * raw input; the XSS surface only matters in the browser, so this fallback
20424
20456
  * is safe for non-DOM consumers.
20425
20457
  *
20426
20458
  * @param markup - MathML (optionally with embedded SVG) markup to sanitise.
20427
20459
  * @returns The sanitised markup, or the raw input when no DOM is available.
20428
20460
  */
20429
20461
  function sanitizeMathMl(markup) {
20430
- const purify = DOMPurify;
20431
- if (typeof purify.sanitize !== 'function') {
20432
- return markup;
20433
- }
20434
- return purify.sanitize(markup, { USE_PROFILES: { mathMl: true, svg: true } });
20462
+ return sanitizeMarkupOrRaw(markup, { USE_PROFILES: { mathMl: true, svg: true } });
20435
20463
  }
20436
20464
 
20437
20465
  /**
@@ -33366,7 +33394,7 @@ function encodeGif(frames, delay = {}) {
33366
33394
  // Graphic Control Extension
33367
33395
  out.push(0x21, 0xf9, 0x04);
33368
33396
  out.push(0x00); // disposal=none, no transparency
33369
- writeU16(out, delayCs);
33397
+ writeU16(out, frame.delayCs ?? delayCs);
33370
33398
  out.push(0x00); // transparent colour index (unused)
33371
33399
  out.push(0x00); // block terminator
33372
33400
  // Image Descriptor
@@ -33982,13 +34010,13 @@ function buildNotesTextStream(lines, startY) {
33982
34010
  }
33983
34011
 
33984
34012
  /**
33985
- * Pure SVG-print string helpers shared by bindings that offer a vector print
34013
+ * Pure SVG-print string helpers, shared by bindings that offer a vector print
33986
34014
  * path (currently React). These build self-contained SVG / print-HTML strings
33987
34015
  * and escape text; they touch no DOM.
33988
34016
  *
33989
34017
  * The DOM-bound driver pieces (cloning the live element tree, reading
33990
34018
  * `getComputedStyle`, fetching images to base64, `Blob` wrapping) stay in the
33991
- * binding only the string assembly and escaping live here.
34019
+ * binding; only the string assembly and escaping live here.
33992
34020
  */
33993
34021
  /* ------------------------------------------------------------------ */
33994
34022
  /* XML escaping */
@@ -34122,7 +34150,14 @@ function buildPrintDocument(svgs, width, height, options = {}) {
34122
34150
  const safeColorFilter = sanitizeCssDeclaration(colorFilter);
34123
34151
  const slidePages = svgs
34124
34152
  .map((svg, i) => {
34125
- const safeSvg = isSafeSvgMarkup(svg) ? svg : '';
34153
+ // Belt-and-suspenders: the structural allow/deny-list guard runs
34154
+ // first, then DOMPurify's SVG profile actually transforms the
34155
+ // markup (stripping `<script>`/`<foreignObject>`/event handlers/
34156
+ // `javascript:` URIs) before it is spliced in, rather than merely
34157
+ // gating the raw, untransformed string behind a boolean check.
34158
+ const safeSvg = isSafeSvgMarkup(svg)
34159
+ ? sanitizeMarkupOrEmpty(svg, { USE_PROFILES: { svg: true } })
34160
+ : '';
34126
34161
  return `<section class="print-slide-page" aria-label="Slide ${i + 1}">
34127
34162
  ${safeSvg}
34128
34163
  </section>`;
@@ -35621,6 +35656,8 @@ function isSafePrintBodyHtml(html) {
35621
35656
  }
35622
35657
  return !EVENT_HANDLER_ATTR_RE.test(html);
35623
35658
  }
35659
+ /** DOMPurify config for the assembled print-window body: plain HTML, no MathML/SVG needed. */
35660
+ const PRINT_BODY_SANITIZE_CONFIG = { USE_PROFILES: { html: true } };
35624
35661
  /**
35625
35662
  * Assemble the complete printable HTML document string (doctype + head with
35626
35663
  * print CSS + body). Pure: the caller writes it into a print window.
@@ -35629,7 +35666,13 @@ function buildPrintHtmlDocument(options) {
35629
35666
  const { title, bodyHtml, frameSlides } = options;
35630
35667
  const orientation = sanitizeOrientation(options.orientation);
35631
35668
  const colorFilter = options.colorFilter;
35632
- const safeBodyHtml = isSafePrintBodyHtml(bodyHtml) ? bodyHtml : '';
35669
+ // Belt-and-suspenders: the deny-list guard runs first, then DOMPurify
35670
+ // actually transforms the markup (stripping `<script>`/`<iframe>`/event
35671
+ // handlers/`javascript:` URIs) before it is spliced in, rather than
35672
+ // merely gating the raw, untransformed string behind a boolean check.
35673
+ const safeBodyHtml = isSafePrintBodyHtml(bodyHtml)
35674
+ ? sanitizeMarkupOrEmpty(bodyHtml, PRINT_BODY_SANITIZE_CONFIG)
35675
+ : '';
35633
35676
  const frameStyle = frameSlides
35634
35677
  ? 'img.slide-img, .notes-slide, .handout-cell img { border: 2px solid #000 !important; }'
35635
35678
  : '';
@@ -35909,8 +35952,8 @@ class AccessibilityPanelComponent {
35909
35952
  onSelect(issue) {
35910
35953
  this.selectSlide.emit(issue.slideIndex);
35911
35954
  }
35912
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AccessibilityPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
35913
- 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: `
35955
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: AccessibilityPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
35956
+ 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: `
35914
35957
  <section class="pptx-ng-a11y-panel" [attr.aria-label]="'pptx.accessibility.title' | translate">
35915
35958
  <header class="pptx-ng-a11y-panel__header">
35916
35959
  <h2 class="pptx-ng-a11y-panel__title">{{ 'pptx.accessibility.heading' | translate }}</h2>
@@ -35962,7 +36005,7 @@ class AccessibilityPanelComponent {
35962
36005
  </section>
35963
36006
  `, 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 });
35964
36007
  }
35965
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AccessibilityPanelComponent, decorators: [{
36008
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: AccessibilityPanelComponent, decorators: [{
35966
36009
  type: Component,
35967
36010
  args: [{ selector: 'pptx-accessibility-panel', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
35968
36011
  <section class="pptx-ng-a11y-panel" [attr.aria-label]="'pptx.accessibility.title' | translate">
@@ -36073,10 +36116,10 @@ class AccessibilityService {
36073
36116
  setOptions(options) {
36074
36117
  this.options.set(options);
36075
36118
  }
36076
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AccessibilityService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
36077
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AccessibilityService });
36119
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: AccessibilityService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
36120
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: AccessibilityService });
36078
36121
  }
36079
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AccessibilityService, decorators: [{
36122
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: AccessibilityService, decorators: [{
36080
36123
  type: Injectable
36081
36124
  }] });
36082
36125
 
@@ -36175,10 +36218,10 @@ class AutosaveService {
36175
36218
  this.timer = null;
36176
36219
  }
36177
36220
  }
36178
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AutosaveService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
36179
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AutosaveService });
36221
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: AutosaveService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
36222
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: AutosaveService });
36180
36223
  }
36181
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AutosaveService, decorators: [{
36224
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: AutosaveService, decorators: [{
36182
36225
  type: Injectable
36183
36226
  }] });
36184
36227
 
@@ -36379,10 +36422,10 @@ class IsMobileService {
36379
36422
  window.scrollBy({ top: delta, behavior: 'smooth' });
36380
36423
  }
36381
36424
  }
36382
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: IsMobileService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
36383
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: IsMobileService });
36425
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: IsMobileService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
36426
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: IsMobileService });
36384
36427
  }
36385
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: IsMobileService, decorators: [{
36428
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: IsMobileService, decorators: [{
36386
36429
  type: Injectable
36387
36430
  }], ctorParameters: () => [] });
36388
36431
 
@@ -36500,8 +36543,8 @@ class ModalDialogComponent {
36500
36543
  }
36501
36544
  this.dragY.set(0);
36502
36545
  }
36503
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ModalDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
36504
- 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: `
36546
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ModalDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
36547
+ 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: `
36505
36548
  @if (open()) {
36506
36549
  <div
36507
36550
  class="pptx-ng-modal-backdrop"
@@ -36551,7 +36594,7 @@ class ModalDialogComponent {
36551
36594
  }
36552
36595
  `, 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 });
36553
36596
  }
36554
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ModalDialogComponent, decorators: [{
36597
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ModalDialogComponent, decorators: [{
36555
36598
  type: Component,
36556
36599
  args: [{ selector: 'pptx-modal-dialog', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], providers: [IsMobileService], template: `
36557
36600
  @if (open()) {
@@ -36708,8 +36751,8 @@ class BroadcastDialogComponent {
36708
36751
  return undefined;
36709
36752
  });
36710
36753
  }
36711
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: BroadcastDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
36712
- 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: `
36754
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: BroadcastDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
36755
+ 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: `
36713
36756
  <pptx-modal-dialog [open]="open()" [title]="dialogTitle()" (close)="onClose()">
36714
36757
  @if (active()) {
36715
36758
  <!-- Active: share the follow link + stop control -->
@@ -36824,7 +36867,7 @@ class BroadcastDialogComponent {
36824
36867
  </pptx-modal-dialog>
36825
36868
  `, 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 });
36826
36869
  }
36827
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: BroadcastDialogComponent, decorators: [{
36870
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: BroadcastDialogComponent, decorators: [{
36828
36871
  type: Component,
36829
36872
  args: [{ selector: 'pptx-broadcast-dialog', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [ModalDialogComponent, TranslatePipe], template: `
36830
36873
  <pptx-modal-dialog [open]="open()" [title]="dialogTitle()" (close)="onClose()">
@@ -36970,10 +37013,10 @@ class ChartPartSelectionService {
36970
37013
  this.selection.set(null);
36971
37014
  }
36972
37015
  }
36973
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartPartSelectionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
36974
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartPartSelectionService });
37016
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartPartSelectionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
37017
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartPartSelectionService });
36975
37018
  }
36976
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartPartSelectionService, decorators: [{
37019
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartPartSelectionService, decorators: [{
36977
37020
  type: Injectable
36978
37021
  }] });
36979
37022
 
@@ -37047,8 +37090,8 @@ class CollaborationCursorsComponent {
37047
37090
  }));
37048
37091
  }, /* @ts-ignore */
37049
37092
  ...(ngDevMode ? [{ debugName: "positioned" }] : /* istanbul ignore next */ []));
37050
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CollaborationCursorsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
37051
- 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: `
37093
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: CollaborationCursorsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
37094
+ 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: `
37052
37095
  <div class="pptx-ng-collab-cursors" aria-hidden="true" data-export-ignore="true">
37053
37096
  @for (cursor of positioned(); track cursor.clientId) {
37054
37097
  <div
@@ -37078,7 +37121,7 @@ class CollaborationCursorsComponent {
37078
37121
  </div>
37079
37122
  `, 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 });
37080
37123
  }
37081
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CollaborationCursorsComponent, decorators: [{
37124
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: CollaborationCursorsComponent, decorators: [{
37082
37125
  type: Component,
37083
37126
  args: [{ selector: 'pptx-collaboration-cursors', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, template: `
37084
37127
  <div class="pptx-ng-collab-cursors" aria-hidden="true" data-export-ignore="true">
@@ -37664,10 +37707,10 @@ class CollaborationService {
37664
37707
  scheduleWriteBack() {
37665
37708
  this.writeBack.schedule(this.currentConfig, this.ydoc, this.getSourceBytes, this.getTemplateElements);
37666
37709
  }
37667
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CollaborationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
37668
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CollaborationService });
37710
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: CollaborationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
37711
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: CollaborationService });
37669
37712
  }
37670
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CollaborationService, decorators: [{
37713
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: CollaborationService, decorators: [{
37671
37714
  type: Injectable
37672
37715
  }], ctorParameters: () => [] });
37673
37716
 
@@ -37748,8 +37791,8 @@ class CommentsPanelComponent {
37748
37791
  formatTimestamp(value) {
37749
37792
  return formatCommentTimestamp$1(value);
37750
37793
  }
37751
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CommentsPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
37752
- 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: `
37794
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: CommentsPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
37795
+ 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: `
37753
37796
  <aside class="pptx-ng-comments" [attr.aria-label]="'pptx.comments.slideComments' | translate">
37754
37797
  <header class="pptx-ng-comments__header">
37755
37798
  <h2 class="pptx-ng-comments__title">{{ 'pptx.toolbar.comments' | translate }}</h2>
@@ -37834,7 +37877,7 @@ class CommentsPanelComponent {
37834
37877
  </aside>
37835
37878
  `, 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 });
37836
37879
  }
37837
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CommentsPanelComponent, decorators: [{
37880
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: CommentsPanelComponent, decorators: [{
37838
37881
  type: Component,
37839
37882
  args: [{ selector: 'pptx-comments-panel', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
37840
37883
  <aside class="pptx-ng-comments" [attr.aria-label]="'pptx.comments.slideComments' | translate">
@@ -38028,8 +38071,8 @@ class CustomShowsComponent {
38028
38071
  onToggleActive(id) {
38029
38072
  this.setActive.emit(this.activeCustomShowId() === id ? null : id);
38030
38073
  }
38031
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CustomShowsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
38032
- 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: `
38074
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: CustomShowsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
38075
+ 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: `
38033
38076
  @if (open()) {
38034
38077
  <!-- Backdrop -->
38035
38078
  <div class="pptx-ng-cs-backdrop" aria-hidden="true" (click)="close.emit()"></div>
@@ -38216,7 +38259,7 @@ class CustomShowsComponent {
38216
38259
  }
38217
38260
  `, 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 });
38218
38261
  }
38219
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CustomShowsComponent, decorators: [{
38262
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: CustomShowsComponent, decorators: [{
38220
38263
  type: Component,
38221
38264
  args: [{ selector: 'pptx-custom-shows', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe, LucideX], template: `
38222
38265
  @if (open()) {
@@ -41498,10 +41541,10 @@ class EditorStateService {
41498
41541
  return `el-${this.idCounter}`;
41499
41542
  }
41500
41543
  idCounter = 0;
41501
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EditorStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
41502
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EditorStateService });
41544
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EditorStateService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
41545
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EditorStateService });
41503
41546
  }
41504
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EditorStateService, decorators: [{
41547
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EditorStateService, decorators: [{
41505
41548
  type: Injectable
41506
41549
  }] });
41507
41550
 
@@ -41695,10 +41738,10 @@ class TableSelectionService {
41695
41738
  this.selection.set(null);
41696
41739
  }
41697
41740
  }
41698
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableSelectionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
41699
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableSelectionService });
41741
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TableSelectionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
41742
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TableSelectionService });
41700
41743
  }
41701
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableSelectionService, decorators: [{
41744
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TableSelectionService, decorators: [{
41702
41745
  type: Injectable
41703
41746
  }] });
41704
41747
 
@@ -41860,8 +41903,8 @@ class EditorContextMenuComponent {
41860
41903
  }
41861
41904
  this.closed.emit();
41862
41905
  }
41863
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EditorContextMenuComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
41864
- 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: `
41906
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EditorContextMenuComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
41907
+ 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: `
41865
41908
  <ul
41866
41909
  class="pptx-ctx__menu"
41867
41910
  role="menu"
@@ -42053,7 +42096,7 @@ class EditorContextMenuComponent {
42053
42096
  </ul>
42054
42097
  `, 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 });
42055
42098
  }
42056
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EditorContextMenuComponent, decorators: [{
42099
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EditorContextMenuComponent, decorators: [{
42057
42100
  type: Component,
42058
42101
  args: [{ selector: 'pptx-editor-context-menu', standalone: true, imports: [TranslatePipe], changeDetection: ChangeDetectionStrategy.OnPush, template: `
42059
42102
  <ul
@@ -42328,8 +42371,8 @@ class EditorToolbarComponent {
42328
42371
  onInsertShape(shapeType) {
42329
42372
  this.editor.addElement(this.slideIndex(), newShapeElement(shapeType));
42330
42373
  }
42331
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EditorToolbarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
42332
- 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: `
42374
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EditorToolbarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
42375
+ 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: `
42333
42376
  <div
42334
42377
  class="pptx-ng-toolbar"
42335
42378
  role="toolbar"
@@ -42560,7 +42603,7 @@ class EditorToolbarComponent {
42560
42603
  </div>
42561
42604
  `, 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 });
42562
42605
  }
42563
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EditorToolbarComponent, decorators: [{
42606
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EditorToolbarComponent, decorators: [{
42564
42607
  type: Component,
42565
42608
  args: [{ selector: 'pptx-editor-toolbar', standalone: true, imports: [
42566
42609
  TranslatePipe,
@@ -42949,10 +42992,10 @@ class EmbeddedFontsService {
42949
42992
  URL.revokeObjectURL(url);
42950
42993
  }
42951
42994
  }
42952
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EmbeddedFontsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
42953
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EmbeddedFontsService });
42995
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EmbeddedFontsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
42996
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EmbeddedFontsService });
42954
42997
  }
42955
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EmbeddedFontsService, decorators: [{
42998
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EmbeddedFontsService, decorators: [{
42956
42999
  type: Injectable
42957
43000
  }], ctorParameters: () => [] });
42958
43001
 
@@ -42998,8 +43041,8 @@ class ExportProgressModalComponent {
42998
43041
  /** Progress clamped to the inclusive `[0, 100]` integer range for display. */
42999
43042
  clampedProgress = computed(() => clampPercent(this.progress()), /* @ts-ignore */
43000
43043
  ...(ngDevMode ? [{ debugName: "clampedProgress" }] : /* istanbul ignore next */ []));
43001
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ExportProgressModalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
43002
- 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: `
43044
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ExportProgressModalComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
43045
+ 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: `
43003
43046
  @if (open()) {
43004
43047
  <div
43005
43048
  class="pptx-ng-export-progress__backdrop"
@@ -43029,7 +43072,7 @@ class ExportProgressModalComponent {
43029
43072
  }
43030
43073
  `, 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 });
43031
43074
  }
43032
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ExportProgressModalComponent, decorators: [{
43075
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ExportProgressModalComponent, decorators: [{
43033
43076
  type: Component,
43034
43077
  args: [{ selector: 'pptx-export-progress-modal', standalone: true, imports: [TranslatePipe], changeDetection: ChangeDetectionStrategy.OnPush, template: `
43035
43078
  @if (open()) {
@@ -43358,10 +43401,10 @@ class ExportService {
43358
43401
  const blob = await recordWebm(canvases, { slideDurationMs, signal, onProgress });
43359
43402
  downloadBlob(blob, sanitizeFileName(fileName));
43360
43403
  }
43361
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ExportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
43362
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ExportService });
43404
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ExportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
43405
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ExportService });
43363
43406
  }
43364
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ExportService, decorators: [{
43407
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ExportService, decorators: [{
43365
43408
  type: Injectable
43366
43409
  }] });
43367
43410
 
@@ -43648,10 +43691,10 @@ class LoadContentService {
43648
43691
  }
43649
43692
  }
43650
43693
  }
43651
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: LoadContentService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
43652
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: LoadContentService });
43694
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: LoadContentService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
43695
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: LoadContentService });
43653
43696
  }
43654
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: LoadContentService, decorators: [{
43697
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: LoadContentService, decorators: [{
43655
43698
  type: Injectable
43656
43699
  }], ctorParameters: () => [] });
43657
43700
  /**
@@ -43726,10 +43769,10 @@ class FieldContextService {
43726
43769
  slideTitle: resolveSlideTitle(slide),
43727
43770
  };
43728
43771
  }
43729
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FieldContextService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
43730
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FieldContextService });
43772
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: FieldContextService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
43773
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: FieldContextService });
43731
43774
  }
43732
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FieldContextService, decorators: [{
43775
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: FieldContextService, decorators: [{
43733
43776
  type: Injectable
43734
43777
  }] });
43735
43778
  /**
@@ -43890,8 +43933,8 @@ class FindBarComponent {
43890
43933
  const idx = Math.min(this.activeMatchIndex(), ms.length - 1);
43891
43934
  this.navigate.emit(ms[idx].slideIndex);
43892
43935
  }
43893
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FindBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
43894
- 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: `
43936
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: FindBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
43937
+ 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: `
43895
43938
  <div
43896
43939
  class="pptx-find-bar"
43897
43940
  role="search"
@@ -43970,7 +44013,7 @@ class FindBarComponent {
43970
44013
  </div>
43971
44014
  `, 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 });
43972
44015
  }
43973
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FindBarComponent, decorators: [{
44016
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: FindBarComponent, decorators: [{
43974
44017
  type: Component,
43975
44018
  args: [{ selector: 'pptx-find-bar', standalone: true, imports: [TranslatePipe], changeDetection: ChangeDetectionStrategy.OnPush, template: `
43976
44019
  <div
@@ -44213,8 +44256,8 @@ class FindReplaceBarComponent {
44213
44256
  focusFindInput() {
44214
44257
  this.findInputRef()?.nativeElement.focus();
44215
44258
  }
44216
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FindReplaceBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
44217
- 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: `
44259
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: FindReplaceBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
44260
+ 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: `
44218
44261
  <div
44219
44262
  class="pptx-frb"
44220
44263
  role="dialog"
@@ -44325,7 +44368,7 @@ class FindReplaceBarComponent {
44325
44368
  </div>
44326
44369
  `, 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 });
44327
44370
  }
44328
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FindReplaceBarComponent, decorators: [{
44371
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: FindReplaceBarComponent, decorators: [{
44329
44372
  type: Component,
44330
44373
  args: [{ selector: 'pptx-find-replace-bar', standalone: true, imports: [TranslatePipe], changeDetection: ChangeDetectionStrategy.OnPush, template: `
44331
44374
  <div
@@ -44485,8 +44528,8 @@ class FollowModeBarComponent {
44485
44528
  toggle(clientId) {
44486
44529
  this.follow.emit(this.followedClientId() === clientId ? null : clientId);
44487
44530
  }
44488
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FollowModeBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
44489
- 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: `
44531
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: FollowModeBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
44532
+ 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: `
44490
44533
  @if (chips().length > 0) {
44491
44534
  <div class="pptx-ng-follow-bar" data-export-ignore="true">
44492
44535
  <span class="pptx-ng-follow-status">
@@ -44528,7 +44571,7 @@ class FollowModeBarComponent {
44528
44571
  }
44529
44572
  `, 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 });
44530
44573
  }
44531
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FollowModeBarComponent, decorators: [{
44574
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: FollowModeBarComponent, decorators: [{
44532
44575
  type: Component,
44533
44576
  args: [{ selector: 'pptx-follow-mode-bar', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
44534
44577
  @if (chips().length > 0) {
@@ -44650,8 +44693,8 @@ class HyperlinkDialogComponent {
44650
44693
  this.save.emit(buildClearHyperlinkPatch());
44651
44694
  this.onClose();
44652
44695
  }
44653
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: HyperlinkDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
44654
- 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: `
44696
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: HyperlinkDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
44697
+ 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: `
44655
44698
  <pptx-modal-dialog
44656
44699
  [open]="open()"
44657
44700
  [title]="'pptx.hyperlinkDialog.title' | translate"
@@ -44715,7 +44758,7 @@ class HyperlinkDialogComponent {
44715
44758
  </pptx-modal-dialog>
44716
44759
  `, 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 });
44717
44760
  }
44718
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: HyperlinkDialogComponent, decorators: [{
44761
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: HyperlinkDialogComponent, decorators: [{
44719
44762
  type: Component,
44720
44763
  args: [{ selector: 'pptx-hyperlink-dialog', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [ModalDialogComponent, TranslatePipe], template: `
44721
44764
  <pptx-modal-dialog
@@ -45883,8 +45926,8 @@ class SmartArtRendererComponent {
45883
45926
  // ── Empty / no-data state ──────────────────────────────────────────────
45884
45927
  isEmpty = computed(() => this.nodes().length === 0 && !this.hasDrawingShapes(), /* @ts-ignore */
45885
45928
  ...(ngDevMode ? [{ debugName: "isEmpty" }] : /* istanbul ignore next */ []));
45886
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SmartArtRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
45887
- 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: `
45929
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SmartArtRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
45930
+ 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: `
45888
45931
  <div
45889
45932
  class="pptx-ng-element pptx-ng-smartart"
45890
45933
  [ngStyle]="containerStyle()"
@@ -46118,7 +46161,7 @@ class SmartArtRendererComponent {
46118
46161
  </div>
46119
46162
  `, 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 });
46120
46163
  }
46121
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SmartArtRendererComponent, decorators: [{
46164
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SmartArtRendererComponent, decorators: [{
46122
46165
  type: Component,
46123
46166
  args: [{ selector: 'pptx-smart-art-renderer', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [NgStyle, TranslatePipe], template: `
46124
46167
  <div
@@ -46390,8 +46433,8 @@ class SmartArtPreviewComponent {
46390
46433
  };
46391
46434
  }, /* @ts-ignore */
46392
46435
  ...(ngDevMode ? [{ debugName: "previewElement" }] : /* istanbul ignore next */ []));
46393
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SmartArtPreviewComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
46394
- 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: `
46436
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SmartArtPreviewComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
46437
+ 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: `
46395
46438
  <div class="pptx-sa-preview" aria-hidden="true">
46396
46439
  <div class="pptx-sa-preview__stage">
46397
46440
  <pptx-smart-art-renderer [element]="previewElement()" />
@@ -46399,7 +46442,7 @@ class SmartArtPreviewComponent {
46399
46442
  </div>
46400
46443
  `, 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 });
46401
46444
  }
46402
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SmartArtPreviewComponent, decorators: [{
46445
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SmartArtPreviewComponent, decorators: [{
46403
46446
  type: Component,
46404
46447
  args: [{ selector: 'pptx-smart-art-preview', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [SmartArtRendererComponent], template: `
46405
46448
  <div class="pptx-sa-preview" aria-hidden="true">
@@ -46492,8 +46535,8 @@ class InsertSmartArtDialogComponent {
46492
46535
  this.insert.emit({ layout, items });
46493
46536
  this.close.emit();
46494
46537
  }
46495
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: InsertSmartArtDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
46496
- 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: `
46538
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: InsertSmartArtDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
46539
+ 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: `
46497
46540
  <pptx-modal-dialog
46498
46541
  [open]="open()"
46499
46542
  [title]="'pptx.insertSmartArt.title' | translate"
@@ -46575,7 +46618,7 @@ class InsertSmartArtDialogComponent {
46575
46618
  </pptx-modal-dialog>
46576
46619
  `, 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 });
46577
46620
  }
46578
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: InsertSmartArtDialogComponent, decorators: [{
46621
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: InsertSmartArtDialogComponent, decorators: [{
46579
46622
  type: Component,
46580
46623
  args: [{ selector: 'pptx-insert-smart-art-dialog', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [ModalDialogComponent, SmartArtPreviewComponent, TranslatePipe], template: `
46581
46624
  <pptx-modal-dialog
@@ -47034,8 +47077,8 @@ class AnimationAuthorPanelComponent {
47034
47077
  onRemove() {
47035
47078
  this.emit(removeAnimation(this.animations(), this.element().id));
47036
47079
  }
47037
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AnimationAuthorPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
47038
- 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: `
47080
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: AnimationAuthorPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
47081
+ 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: `
47039
47082
  <aside class="pptx-ng-anim" [attr.aria-label]="'pptx.animations.propertiesLabel' | translate">
47040
47083
  <!-- ── Header ───────────────────────────────────────────────────── -->
47041
47084
  <div class="pptx-ng-anim__header">
@@ -47330,7 +47373,7 @@ class AnimationAuthorPanelComponent {
47330
47373
  </aside>
47331
47374
  `, 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 });
47332
47375
  }
47333
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AnimationAuthorPanelComponent, decorators: [{
47376
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: AnimationAuthorPanelComponent, decorators: [{
47334
47377
  type: Component,
47335
47378
  args: [{ selector: 'pptx-animation-author-panel', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe, LucideX, LucideArrowUp, LucideArrowDown], template: `
47336
47379
  <aside class="pptx-ng-anim" [attr.aria-label]="'pptx.animations.propertiesLabel' | translate">
@@ -47997,8 +48040,8 @@ class ChartAxisOptionsComponent {
47997
48040
  emit(axisType, edit) {
47998
48041
  this.elementChange.emit(setAxis(this.element(), axisType, edit));
47999
48042
  }
48000
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartAxisOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
48001
- 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: `
48043
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartAxisOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
48044
+ 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: `
48002
48045
  @if (rows().length > 0) {
48003
48046
  <section class="pptx-chart-card" [attr.aria-label]="'pptx.chart.axes' | translate">
48004
48047
  <h4 class="pptx-chart-card__heading">{{ 'pptx.chart.axes' | translate }}</h4>
@@ -48104,7 +48147,7 @@ class ChartAxisOptionsComponent {
48104
48147
  }
48105
48148
  `, 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 });
48106
48149
  }
48107
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartAxisOptionsComponent, decorators: [{
48150
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartAxisOptionsComponent, decorators: [{
48108
48151
  type: Component,
48109
48152
  args: [{ selector: 'pptx-chart-axis-options', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
48110
48153
  @if (rows().length > 0) {
@@ -48654,8 +48697,8 @@ class ChartAxisStyleOptionsComponent {
48654
48697
  }
48655
48698
  this.elementChange.emit(setGridlineStyle(this.element(), axisType, which, { dashStyle: value || null }));
48656
48699
  }
48657
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartAxisStyleOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
48658
- 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: `
48700
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartAxisStyleOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
48701
+ 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: `
48659
48702
  @if (rows().length > 0) {
48660
48703
  <section class="pptx-chart-card" [attr.aria-label]="'pptx.chart.axisStyling' | translate">
48661
48704
  <h4 class="pptx-chart-card__heading">{{ 'pptx.chart.axisStyling' | translate }}</h4>
@@ -48783,7 +48826,7 @@ class ChartAxisStyleOptionsComponent {
48783
48826
  }
48784
48827
  `, 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 });
48785
48828
  }
48786
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartAxisStyleOptionsComponent, decorators: [{
48829
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartAxisStyleOptionsComponent, decorators: [{
48787
48830
  type: Component,
48788
48831
  args: [{ selector: 'pptx-chart-axis-style-options', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
48789
48832
  @if (rows().length > 0) {
@@ -48948,8 +48991,8 @@ class ChartComboTypeOptionsComponent {
48948
48991
  }
48949
48992
  this.elementChange.emit(setSeriesChartType(this.element(), index, value === '' ? null : value));
48950
48993
  }
48951
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartComboTypeOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
48952
- 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: `
48994
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartComboTypeOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
48995
+ 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: `
48953
48996
  @if (supported()) {
48954
48997
  <section class="pptx-chart-card" [attr.aria-label]="'pptx.chart.comboTypes' | translate">
48955
48998
  <h4 class="pptx-chart-card__heading">{{ 'pptx.chart.comboTypes' | translate }}</h4>
@@ -48974,7 +49017,7 @@ class ChartComboTypeOptionsComponent {
48974
49017
  }
48975
49018
  `, 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 });
48976
49019
  }
48977
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartComboTypeOptionsComponent, decorators: [{
49020
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartComboTypeOptionsComponent, decorators: [{
48978
49021
  type: Component,
48979
49022
  args: [{ selector: 'pptx-chart-combo-type-options', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
48980
49023
  @if (supported()) {
@@ -49039,8 +49082,8 @@ class ChartDataLabelOptionsComponent {
49039
49082
  position: (value || undefined),
49040
49083
  }));
49041
49084
  }
49042
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartDataLabelOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
49043
- 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: `
49085
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartDataLabelOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
49086
+ 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: `
49044
49087
  @if (style().hasDataLabels) {
49045
49088
  <section class="pptx-chart-card" [attr.aria-label]="'pptx.chart.dataLabels' | translate">
49046
49089
  <h4 class="pptx-chart-card__heading">{{ 'pptx.chart.dataLabels' | translate }}</h4>
@@ -49075,7 +49118,7 @@ class ChartDataLabelOptionsComponent {
49075
49118
  }
49076
49119
  `, 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 });
49077
49120
  }
49078
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartDataLabelOptionsComponent, decorators: [{
49121
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartDataLabelOptionsComponent, decorators: [{
49079
49122
  type: Component,
49080
49123
  args: [{ selector: 'pptx-chart-data-label-options', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
49081
49124
  @if (style().hasDataLabels) {
@@ -49180,8 +49223,8 @@ class ChartDatapointOptionsComponent {
49180
49223
  }
49181
49224
  this.elementChange.emit(setDataPointExplosion(this.element(), this.activeIndex(), pointIndex, num));
49182
49225
  }
49183
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartDatapointOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
49184
- 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: `
49226
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartDatapointOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
49227
+ 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: `
49185
49228
  @if (categories().length > 0 && series().length > 0) {
49186
49229
  <section class="pptx-chart-card" [attr.aria-label]="'pptx.chart.dataPoints' | translate">
49187
49230
  <h4 class="pptx-chart-card__heading">{{ 'pptx.chart.dataPoints' | translate }}</h4>
@@ -49245,7 +49288,7 @@ class ChartDatapointOptionsComponent {
49245
49288
  }
49246
49289
  `, 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 });
49247
49290
  }
49248
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartDatapointOptionsComponent, decorators: [{
49291
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartDatapointOptionsComponent, decorators: [{
49249
49292
  type: Component,
49250
49293
  args: [{ selector: 'pptx-chart-datapoint-options', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
49251
49294
  @if (categories().length > 0 && series().length > 0) {
@@ -49352,8 +49395,8 @@ class ChartDisplayOptionsComponent {
49352
49395
  // Route through the dedicated op so content keys initialise consistently.
49353
49396
  this.elementChange.emit(setDataLabels(this.element(), { show: boolFromEvent(event) }));
49354
49397
  }
49355
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartDisplayOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
49356
- 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: `
49398
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartDisplayOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
49399
+ 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: `
49357
49400
  <section class="pptx-chart-card" [attr.aria-label]="'pptx.chart.display' | translate">
49358
49401
  <h4 class="pptx-chart-card__heading">{{ 'pptx.chart.display' | translate }}</h4>
49359
49402
  <div class="pptx-chart-card__group">
@@ -49418,7 +49461,7 @@ class ChartDisplayOptionsComponent {
49418
49461
  </section>
49419
49462
  `, 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 });
49420
49463
  }
49421
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartDisplayOptionsComponent, decorators: [{
49464
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartDisplayOptionsComponent, decorators: [{
49422
49465
  type: Component,
49423
49466
  args: [{ selector: 'pptx-chart-display-options', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
49424
49467
  <section class="pptx-chart-card" [attr.aria-label]="'pptx.chart.display' | translate">
@@ -49554,8 +49597,8 @@ class ChartErrorBarOptionsComponent {
49554
49597
  }
49555
49598
  this.elementChange.emit(setSeriesErrorBars(this.element(), index, { ...bars, val: num ?? undefined }));
49556
49599
  }
49557
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartErrorBarOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
49558
- 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: `
49600
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartErrorBarOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
49601
+ 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: `
49559
49602
  @if (supported()) {
49560
49603
  <section class="pptx-chart-card" [attr.aria-label]="'pptx.chart.errorBars' | translate">
49561
49604
  <h4 class="pptx-chart-card__heading">{{ 'pptx.chart.errorBars' | translate }}</h4>
@@ -49605,7 +49648,7 @@ class ChartErrorBarOptionsComponent {
49605
49648
  }
49606
49649
  `, 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 });
49607
49650
  }
49608
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartErrorBarOptionsComponent, decorators: [{
49651
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartErrorBarOptionsComponent, decorators: [{
49609
49652
  type: Component,
49610
49653
  args: [{ selector: 'pptx-chart-error-bar-options', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
49611
49654
  @if (supported()) {
@@ -49702,8 +49745,8 @@ class ChartMarkerOptionsComponent {
49702
49745
  }
49703
49746
  this.elementChange.emit(setSeriesMarker(this.element(), index, { fillColor: value }));
49704
49747
  }
49705
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartMarkerOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
49706
- 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: `
49748
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartMarkerOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
49749
+ 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: `
49707
49750
  @if (supported()) {
49708
49751
  <section class="pptx-chart-card" [attr.aria-label]="'pptx.chart.markers' | translate">
49709
49752
  <h4 class="pptx-chart-card__heading">{{ 'pptx.chart.markers' | translate }}</h4>
@@ -49756,7 +49799,7 @@ class ChartMarkerOptionsComponent {
49756
49799
  }
49757
49800
  `, 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 });
49758
49801
  }
49759
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartMarkerOptionsComponent, decorators: [{
49802
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartMarkerOptionsComponent, decorators: [{
49760
49803
  type: Component,
49761
49804
  args: [{ selector: 'pptx-chart-marker-options', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
49762
49805
  @if (supported()) {
@@ -49862,8 +49905,8 @@ class ChartTrendlineOptionsComponent {
49862
49905
  onToggleRSq(index, tl, event) {
49863
49906
  this.elementChange.emit(setSeriesTrendline(this.element(), index, { ...tl, displayRSq: boolFromEvent(event) }));
49864
49907
  }
49865
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartTrendlineOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
49866
- 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: `
49908
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartTrendlineOptionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
49909
+ 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: `
49867
49910
  @if (supported()) {
49868
49911
  <section class="pptx-chart-card" [attr.aria-label]="'pptx.chart.trendlines' | translate">
49869
49912
  <h4 class="pptx-chart-card__heading">{{ 'pptx.chart.trendlines' | translate }}</h4>
@@ -49911,7 +49954,7 @@ class ChartTrendlineOptionsComponent {
49911
49954
  }
49912
49955
  `, 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 });
49913
49956
  }
49914
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartTrendlineOptionsComponent, decorators: [{
49957
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartTrendlineOptionsComponent, decorators: [{
49915
49958
  type: Component,
49916
49959
  args: [{ selector: 'pptx-chart-trendline-options', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
49917
49960
  @if (supported()) {
@@ -49986,8 +50029,8 @@ class AdvancedChartEditorComponent {
49986
50029
  ...(ngDevMode ? [{ debugName: "canEdit" }] : /* istanbul ignore next */ []));
49987
50030
  /** Emits the updated element after any edit operation in any child control. */
49988
50031
  elementChange = output();
49989
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AdvancedChartEditorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
49990
- 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: `
50032
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: AdvancedChartEditorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
50033
+ 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: `
49991
50034
  <div class="pptx-advanced-chart">
49992
50035
  <pptx-chart-display-options
49993
50036
  [element]="element()"
@@ -50037,7 +50080,7 @@ class AdvancedChartEditorComponent {
50037
50080
  </div>
50038
50081
  `, 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 });
50039
50082
  }
50040
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AdvancedChartEditorComponent, decorators: [{
50083
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: AdvancedChartEditorComponent, decorators: [{
50041
50084
  type: Component,
50042
50085
  args: [{ selector: 'pptx-advanced-chart-editor', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [
50043
50086
  ChartDisplayOptionsComponent,
@@ -50254,8 +50297,8 @@ class ChartDataEditorComponent {
50254
50297
  onRemoveCategory(catIndex) {
50255
50298
  this.elementChange.emit(removeCategory(this.element(), catIndex));
50256
50299
  }
50257
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartDataEditorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
50258
- 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: `
50300
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartDataEditorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
50301
+ 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: `
50259
50302
  <section class="pptx-chart-editor" [attr.aria-label]="'pptx.chart.data' | translate">
50260
50303
  <header class="pptx-chart-editor__header">
50261
50304
  <h3 class="pptx-chart-editor__heading">{{ 'pptx.chart.data' | translate }}</h3>
@@ -50412,7 +50455,7 @@ class ChartDataEditorComponent {
50412
50455
  </section>
50413
50456
  `, 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 });
50414
50457
  }
50415
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartDataEditorComponent, decorators: [{
50458
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartDataEditorComponent, decorators: [{
50416
50459
  type: Component,
50417
50460
  args: [{ selector: 'pptx-chart-data-editor', standalone: true, imports: [AdvancedChartEditorComponent, TranslatePipe], changeDetection: ChangeDetectionStrategy.OnPush, template: `
50418
50461
  <section class="pptx-chart-editor" [attr.aria-label]="'pptx.chart.data' | translate">
@@ -50733,8 +50776,8 @@ class EffectsPanelComponent {
50733
50776
  emit(p) {
50734
50777
  this.patch.emit(p);
50735
50778
  }
50736
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EffectsPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
50737
- 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: `
50779
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EffectsPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
50780
+ 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: `
50738
50781
  <div class="pptx-ng-fx">
50739
50782
  <!-- ── Outer Shadow ─────────────────────────────────────────── -->
50740
50783
  <section class="pptx-ng-fx__section">
@@ -51070,7 +51113,7 @@ class EffectsPanelComponent {
51070
51113
  </div>
51071
51114
  `, 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 });
51072
51115
  }
51073
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EffectsPanelComponent, decorators: [{
51116
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EffectsPanelComponent, decorators: [{
51074
51117
  type: Component,
51075
51118
  args: [{ selector: 'pptx-effects-panel', standalone: true, imports: [TranslatePipe], changeDetection: ChangeDetectionStrategy.OnPush, template: `
51076
51119
  <div class="pptx-ng-fx">
@@ -51530,8 +51573,8 @@ class GradientPickerComponent {
51530
51573
  emit(p) {
51531
51574
  this.patch.emit(p);
51532
51575
  }
51533
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: GradientPickerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
51534
- 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: `
51576
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: GradientPickerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
51577
+ 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: `
51535
51578
  <div class="pptx-ng-grad">
51536
51579
  <h4 class="pptx-ng-grad__heading">{{ 'pptx.gradient.heading' | translate }}</h4>
51537
51580
 
@@ -51641,7 +51684,7 @@ class GradientPickerComponent {
51641
51684
  </div>
51642
51685
  `, 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 });
51643
51686
  }
51644
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: GradientPickerComponent, decorators: [{
51687
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: GradientPickerComponent, decorators: [{
51645
51688
  type: Component,
51646
51689
  args: [{ selector: 'pptx-gradient-picker', standalone: true, imports: [TranslatePipe], changeDetection: ChangeDetectionStrategy.OnPush, template: `
51647
51690
  <div class="pptx-ng-grad">
@@ -52180,8 +52223,8 @@ class SmartArtPropertiesComponent {
52180
52223
  }
52181
52224
  this.smartArtDataChange.emit(next);
52182
52225
  }
52183
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SmartArtPropertiesComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
52184
- 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: `
52226
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SmartArtPropertiesComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
52227
+ 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: `
52185
52228
  <section class="pptx-sa-props" [attr.aria-label]="'pptx.smartart.title' | translate">
52186
52229
  <h3 class="pptx-sa-props__heading">{{ 'pptx.smartart.title' | translate }}</h3>
52187
52230
 
@@ -52405,7 +52448,7 @@ class SmartArtPropertiesComponent {
52405
52448
  </section>
52406
52449
  `, 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 });
52407
52450
  }
52408
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SmartArtPropertiesComponent, decorators: [{
52451
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SmartArtPropertiesComponent, decorators: [{
52409
52452
  type: Component,
52410
52453
  args: [{ selector: 'pptx-smart-art-properties', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
52411
52454
  <section class="pptx-sa-props" [attr.aria-label]="'pptx.smartart.title' | translate">
@@ -52855,8 +52898,8 @@ class TableCellAdvancedFillComponent {
52855
52898
  gradientFillCss: buildGradientFillCss(stops, type, angle),
52856
52899
  });
52857
52900
  }
52858
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableCellAdvancedFillComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
52859
- 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: `
52901
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TableCellAdvancedFillComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
52902
+ 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: `
52860
52903
  <div class="pptx-tcaf">
52861
52904
  <label class="pptx-tcaf__field">
52862
52905
  <span class="pptx-tcaf__lbl">{{ 'pptx.table.fillMode' | translate }}</span>
@@ -52993,7 +53036,7 @@ class TableCellAdvancedFillComponent {
52993
53036
  </div>
52994
53037
  `, 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 });
52995
53038
  }
52996
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableCellAdvancedFillComponent, decorators: [{
53039
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TableCellAdvancedFillComponent, decorators: [{
52997
53040
  type: Component,
52998
53041
  args: [{ selector: 'pptx-table-cell-advanced-fill', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
52999
53042
  <div class="pptx-tcaf">
@@ -53283,8 +53326,8 @@ class TableCellFormattingComponent {
53283
53326
  commit(tableData) {
53284
53327
  this.elementChange.emit(patchTableData(this.element(), tableData));
53285
53328
  }
53286
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableCellFormattingComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
53287
- 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: `
53329
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TableCellFormattingComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
53330
+ 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: `
53288
53331
  @if (cell(); as c) {
53289
53332
  <div class="pptx-tcf">
53290
53333
  <div class="pptx-tcf__heading">
@@ -53428,7 +53471,7 @@ class TableCellFormattingComponent {
53428
53471
  }
53429
53472
  `, 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 });
53430
53473
  }
53431
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableCellFormattingComponent, decorators: [{
53474
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TableCellFormattingComponent, decorators: [{
53432
53475
  type: Component,
53433
53476
  args: [{ selector: 'pptx-table-cell-formatting', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TableCellAdvancedFillComponent, TranslatePipe], template: `
53434
53477
  @if (cell(); as c) {
@@ -53664,8 +53707,8 @@ class TableDataEditorComponent {
53664
53707
  onRemoveColumn(colIndex) {
53665
53708
  this.elementChange.emit(removeColumn(this.element(), colIndex));
53666
53709
  }
53667
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableDataEditorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
53668
- 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: `
53710
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TableDataEditorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
53711
+ 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: `
53669
53712
  <section
53670
53713
  class="pptx-tbl-editor"
53671
53714
  [attr.aria-label]="'pptx.tableDataEditor.ariaLabel' | translate"
@@ -53777,7 +53820,7 @@ class TableDataEditorComponent {
53777
53820
  </section>
53778
53821
  `, 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 });
53779
53822
  }
53780
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableDataEditorComponent, decorators: [{
53823
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TableDataEditorComponent, decorators: [{
53781
53824
  type: Component,
53782
53825
  args: [{ selector: 'pptx-table-data-editor', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
53783
53826
  <section
@@ -53980,8 +54023,8 @@ class TablePropertiesComponent {
53980
54023
  emit(patch) {
53981
54024
  this.elementChange.emit(patchTableData(this.element(), patch));
53982
54025
  }
53983
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TablePropertiesComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
53984
- 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: `
54026
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TablePropertiesComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
54027
+ 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: `
53985
54028
  @if (td(); as data) {
53986
54029
  <div class="pptx-tp">
53987
54030
  <div class="pptx-tp__dims">{{ data.rows.length }} rows × {{ colCount() }} cols</div>
@@ -54103,7 +54146,7 @@ class TablePropertiesComponent {
54103
54146
  }
54104
54147
  `, 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 });
54105
54148
  }
54106
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TablePropertiesComponent, decorators: [{
54149
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TablePropertiesComponent, decorators: [{
54107
54150
  type: Component,
54108
54151
  args: [{ selector: 'pptx-table-properties', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
54109
54152
  @if (td(); as data) {
@@ -54393,8 +54436,8 @@ class TextAdvancedPanelComponent {
54393
54436
  emit(p) {
54394
54437
  this.patch.emit(p);
54395
54438
  }
54396
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TextAdvancedPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
54397
- 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: `
54439
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TextAdvancedPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
54440
+ 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: `
54398
54441
  <div class="pptx-ng-txadv">
54399
54442
  @if (!hasText()) {
54400
54443
  <p class="pptx-ng-txadv__empty">{{ 'pptx.textAdvanced.selectPrompt' | translate }}</p>
@@ -54598,7 +54641,7 @@ class TextAdvancedPanelComponent {
54598
54641
  </div>
54599
54642
  `, 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 });
54600
54643
  }
54601
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TextAdvancedPanelComponent, decorators: [{
54644
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TextAdvancedPanelComponent, decorators: [{
54602
54645
  type: Component,
54603
54646
  args: [{ selector: 'pptx-text-advanced-panel', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
54604
54647
  <div class="pptx-ng-txadv">
@@ -55067,8 +55110,8 @@ class InspectorPanelComponent {
55067
55110
  const cur = this.el();
55068
55111
  this.editor.updateElement(this.slideIndex(), cur.id, textStylePatch(cur, { underline: !this.currentUnderline() }));
55069
55112
  }
55070
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: InspectorPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
55071
- 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: `
55113
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: InspectorPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
55114
+ 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: `
55072
55115
  <!--
55073
55116
  NOTE (mobile-safe inputs): every numeric / colour input is keyed on the
55074
55117
  selected element's id via @if blocks. Angular destroys and recreates the
@@ -55431,7 +55474,7 @@ class InspectorPanelComponent {
55431
55474
  </aside>
55432
55475
  `, 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 });
55433
55476
  }
55434
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: InspectorPanelComponent, decorators: [{
55477
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: InspectorPanelComponent, decorators: [{
55435
55478
  type: Component,
55436
55479
  args: [{ selector: 'pptx-inspector-panel', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [
55437
55480
  GradientPickerComponent,
@@ -55945,8 +55988,8 @@ class MobileBottomBarComponent {
55945
55988
  ];
55946
55989
  }, /* @ts-ignore */
55947
55990
  ...(ngDevMode ? [{ debugName: "actions" }] : /* istanbul ignore next */ []));
55948
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: MobileBottomBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
55949
- 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: `
55991
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: MobileBottomBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
55992
+ 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: `
55950
55993
  <nav class="pptx-ng-mbar" [attr.aria-label]="'pptx.mobileBar.ariaLabel' | translate">
55951
55994
  @for (action of actions(); track action.key) {
55952
55995
  <button
@@ -55985,7 +56028,7 @@ class MobileBottomBarComponent {
55985
56028
  </nav>
55986
56029
  `, 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 });
55987
56030
  }
55988
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: MobileBottomBarComponent, decorators: [{
56031
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: MobileBottomBarComponent, decorators: [{
55989
56032
  type: Component,
55990
56033
  args: [{ selector: 'pptx-mobile-bottom-bar', standalone: true, imports: [TranslatePipe], changeDetection: ChangeDetectionStrategy.OnPush, template: `
55991
56034
  <nav class="pptx-ng-mbar" [attr.aria-label]="'pptx.mobileBar.ariaLabel' | translate">
@@ -56128,8 +56171,8 @@ class MobileSheetComponent {
56128
56171
  this.closed.emit();
56129
56172
  }
56130
56173
  }
56131
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: MobileSheetComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
56132
- 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: `
56174
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: MobileSheetComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
56175
+ 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: `
56133
56176
  @if (open()) {
56134
56177
  <div
56135
56178
  class="pptx-ng-msheet-root"
@@ -56179,7 +56222,7 @@ class MobileSheetComponent {
56179
56222
  }
56180
56223
  `, 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 });
56181
56224
  }
56182
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: MobileSheetComponent, decorators: [{
56225
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: MobileSheetComponent, decorators: [{
56183
56226
  type: Component,
56184
56227
  args: [{ selector: 'pptx-mobile-sheet', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [NgStyle, TranslatePipe], template: `
56185
56228
  @if (open()) {
@@ -56429,8 +56472,8 @@ class MobileMenuSheetComponent {
56429
56472
  this.closed.emit();
56430
56473
  }
56431
56474
  }
56432
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: MobileMenuSheetComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
56433
- 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: `
56475
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: MobileMenuSheetComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
56476
+ 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: `
56434
56477
  <pptx-mobile-sheet
56435
56478
  [open]="open()"
56436
56479
  [title]="'pptx.mobileMenu.title' | translate"
@@ -56481,7 +56524,7 @@ class MobileMenuSheetComponent {
56481
56524
  </pptx-mobile-sheet>
56482
56525
  `, 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 });
56483
56526
  }
56484
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: MobileMenuSheetComponent, decorators: [{
56527
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: MobileMenuSheetComponent, decorators: [{
56485
56528
  type: Component,
56486
56529
  args: [{ selector: 'pptx-mobile-menu-sheet', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [MobileSheetComponent, TranslatePipe], template: `
56487
56530
  <pptx-mobile-sheet
@@ -56741,10 +56784,10 @@ class CanvasFitService {
56741
56784
  const fit = Math.min(availW / size.width, availH / size.height, 1);
56742
56785
  this.fitScale.set(fit > 0 ? fit : 1);
56743
56786
  }
56744
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CanvasFitService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
56745
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CanvasFitService });
56787
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: CanvasFitService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
56788
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: CanvasFitService });
56746
56789
  }
56747
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CanvasFitService, decorators: [{
56790
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: CanvasFitService, decorators: [{
56748
56791
  type: Injectable
56749
56792
  }] });
56750
56793
 
@@ -57026,8 +57069,8 @@ class ChartPrimitivesComponent {
57026
57069
  asText(p) {
57027
57070
  return p;
57028
57071
  }
57029
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartPrimitivesComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
57030
- 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: `
57072
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartPrimitivesComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
57073
+ 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: `
57031
57074
  @for (prim of primitives(); track $index) {
57032
57075
  @switch (prim.kind) {
57033
57076
  @case ('rect') {
@@ -57121,7 +57164,7 @@ class ChartPrimitivesComponent {
57121
57164
  }
57122
57165
  `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
57123
57166
  }
57124
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartPrimitivesComponent, decorators: [{
57167
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartPrimitivesComponent, decorators: [{
57125
57168
  type: Component,
57126
57169
  args: [{
57127
57170
  selector: 'g[pptx-chart-primitives]',
@@ -57267,8 +57310,8 @@ class ChartRendererComponent {
57267
57310
  const y = isVertical ? v.legendY + index * 14 : v.legendY;
57268
57311
  return `translate(${x.toFixed(1)},${y.toFixed(1)})`;
57269
57312
  }
57270
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
57271
- 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: `
57313
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
57314
+ 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: `
57272
57315
  <svg
57273
57316
  [attr.width]="vm().svgWidth"
57274
57317
  [attr.height]="vm().svgHeight"
@@ -57422,7 +57465,7 @@ class ChartRendererComponent {
57422
57465
  </svg>
57423
57466
  `, isInline: true, dependencies: [{ kind: "component", type: ChartPrimitivesComponent, selector: "g[pptx-chart-primitives]", inputs: ["primitives"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
57424
57467
  }
57425
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartRendererComponent, decorators: [{
57468
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartRendererComponent, decorators: [{
57426
57469
  type: Component,
57427
57470
  args: [{
57428
57471
  selector: 'pptx-chart-renderer',
@@ -57800,8 +57843,8 @@ class ChartElementViewComponent {
57800
57843
  }
57801
57844
  this.titleDraft.set(null);
57802
57845
  }
57803
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartElementViewComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
57804
- 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: `
57846
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartElementViewComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
57847
+ 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: `
57805
57848
  <div
57806
57849
  #wrapper
57807
57850
  class="pptx-ng-chart-view"
@@ -57831,7 +57874,7 @@ class ChartElementViewComponent {
57831
57874
  </div>
57832
57875
  `, isInline: true, dependencies: [{ kind: "component", type: ChartRendererComponent, selector: "pptx-chart-renderer", inputs: ["element"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
57833
57876
  }
57834
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ChartElementViewComponent, decorators: [{
57877
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ChartElementViewComponent, decorators: [{
57835
57878
  type: Component,
57836
57879
  args: [{
57837
57880
  selector: 'pptx-chart-element-view',
@@ -57974,8 +58017,8 @@ class ColorChangedImageComponent {
57974
58017
  });
57975
58018
  });
57976
58019
  }
57977
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ColorChangedImageComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
57978
- 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: `
58020
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ColorChangedImageComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
58021
+ 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: `
57979
58022
  <img
57980
58023
  [src]="displaySrc()"
57981
58024
  [alt]="alt()"
@@ -57985,7 +58028,7 @@ class ColorChangedImageComponent {
57985
58028
  />
57986
58029
  `, isInline: true, dependencies: [{ kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
57987
58030
  }
57988
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ColorChangedImageComponent, decorators: [{
58031
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ColorChangedImageComponent, decorators: [{
57989
58032
  type: Component,
57990
58033
  args: [{
57991
58034
  selector: 'pptx-color-changed-image',
@@ -58180,8 +58223,8 @@ class ConnectorTextOverlayComponent {
58180
58223
  .map((s) => ({ text: s.text, style: buildSegmentStyle(s, ts) }));
58181
58224
  }, /* @ts-ignore */
58182
58225
  ...(ngDevMode ? [{ debugName: "styledSegments" }] : /* istanbul ignore next */ []));
58183
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ConnectorTextOverlayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
58184
- 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: `
58226
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ConnectorTextOverlayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
58227
+ 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: `
58185
58228
  @if (hasText()) {
58186
58229
  <div class="pptx-ng-connector-text" [style]="containerStyle()">
58187
58230
  <div class="pptx-ng-connector-text__block" [style]="blockStyle()">
@@ -58193,7 +58236,7 @@ class ConnectorTextOverlayComponent {
58193
58236
  }
58194
58237
  `, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
58195
58238
  }
58196
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ConnectorTextOverlayComponent, decorators: [{
58239
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ConnectorTextOverlayComponent, decorators: [{
58197
58240
  type: Component,
58198
58241
  args: [{
58199
58242
  selector: 'pptx-connector-text-overlay',
@@ -58291,8 +58334,8 @@ class ConnectorRendererComponent {
58291
58334
  ...(ngDevMode ? [{ debugName: "connectorSegments" }] : /* istanbul ignore next */ []));
58292
58335
  connectorTextStyle = computed(() => this.textProps().textStyle, /* @ts-ignore */
58293
58336
  ...(ngDevMode ? [{ debugName: "connectorTextStyle" }] : /* istanbul ignore next */ []));
58294
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ConnectorRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
58295
- 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: `
58337
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ConnectorRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
58338
+ 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: `
58296
58339
  <div
58297
58340
  class="pptx-ng-element pptx-ng-connector"
58298
58341
  [style]="geo().wrapperStyle"
@@ -58384,7 +58427,7 @@ class ConnectorRendererComponent {
58384
58427
  </div>
58385
58428
  `, isInline: true, dependencies: [{ kind: "component", type: ConnectorTextOverlayComponent, selector: "pptx-connector-text-overlay", inputs: ["text", "segments", "textStyle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
58386
58429
  }
58387
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ConnectorRendererComponent, decorators: [{
58430
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ConnectorRendererComponent, decorators: [{
58388
58431
  type: Component,
58389
58432
  args: [{
58390
58433
  selector: 'pptx-connector-renderer',
@@ -58519,8 +58562,8 @@ class EquationRendererComponent {
58519
58562
  // shared converter walks it as an `OmmlNode` (core's recursive `XmlObject`).
58520
58563
  this.sanitizer.bypassSecurityTrustHtml(ommlToMathml(this.equationXml())), /* @ts-ignore */
58521
58564
  ...(ngDevMode ? [{ debugName: "safeMathml" }] : /* istanbul ignore next */ []));
58522
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EquationRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
58523
- 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: `
58565
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EquationRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
58566
+ 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: `
58524
58567
  @if (equationNumber()) {
58525
58568
  <span class="pptx-ng-equation-numbered">
58526
58569
  <span class="pptx-ng-equation-number-spacer" aria-hidden="true"
@@ -58534,7 +58577,7 @@ class EquationRendererComponent {
58534
58577
  }
58535
58578
  `, 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 });
58536
58579
  }
58537
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EquationRendererComponent, decorators: [{
58580
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EquationRendererComponent, decorators: [{
58538
58581
  type: Component,
58539
58582
  args: [{ selector: 'pptx-equation-renderer', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [], template: `
58540
58583
  @if (equationNumber()) {
@@ -58724,8 +58767,8 @@ class InkRendererComponent {
58724
58767
  ...(ngDevMode ? [{ debugName: "strokes" }] : /* istanbul ignore next */ []));
58725
58768
  viewBox = computed(() => inkViewBox(this.element()), /* @ts-ignore */
58726
58769
  ...(ngDevMode ? [{ debugName: "viewBox" }] : /* istanbul ignore next */ []));
58727
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: InkRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
58728
- 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: `
58770
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: InkRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
58771
+ 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: `
58729
58772
  <div
58730
58773
  class="pptx-ng-element pptx-ng-ink"
58731
58774
  [ngStyle]="containerStyle()"
@@ -58768,7 +58811,7 @@ class InkRendererComponent {
58768
58811
  </div>
58769
58812
  `, isInline: true, dependencies: [{ kind: "directive", type: NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
58770
58813
  }
58771
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: InkRendererComponent, decorators: [{
58814
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: InkRendererComponent, decorators: [{
58772
58815
  type: Component,
58773
58816
  args: [{
58774
58817
  selector: 'pptx-ink-renderer',
@@ -58975,8 +59018,8 @@ class MediaRendererComponent {
58975
59018
  ...(ngDevMode ? [{ debugName: "captionTracks" }] : /* istanbul ignore next */ []));
58976
59019
  clrChangeParams = computed(() => getClrChangeParams(this.element()), /* @ts-ignore */
58977
59020
  ...(ngDevMode ? [{ debugName: "clrChangeParams" }] : /* istanbul ignore next */ []));
58978
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: MediaRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
58979
- 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: `
59021
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: MediaRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
59022
+ 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: `
58980
59023
  <div
58981
59024
  class="pptx-ng-element pptx-ng-media"
58982
59025
  [ngStyle]="containerStyle()"
@@ -59034,7 +59077,7 @@ class MediaRendererComponent {
59034
59077
  </div>
59035
59078
  `, 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 });
59036
59079
  }
59037
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: MediaRendererComponent, decorators: [{
59080
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: MediaRendererComponent, decorators: [{
59038
59081
  type: Component,
59039
59082
  args: [{ selector: 'pptx-media-renderer', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [NgStyle, ColorChangedImageComponent], template: `
59040
59083
  <div
@@ -59292,8 +59335,8 @@ class Model3DRendererComponent {
59292
59335
  ngOnDestroy() {
59293
59336
  this.teardownHandle();
59294
59337
  }
59295
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: Model3DRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
59296
- 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: `
59338
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: Model3DRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
59339
+ 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: `
59297
59340
  <div
59298
59341
  class="pptx-ng-element pptx-ng-model3d"
59299
59342
  [ngStyle]="containerStyle()"
@@ -59336,7 +59379,7 @@ class Model3DRendererComponent {
59336
59379
  </div>
59337
59380
  `, 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 });
59338
59381
  }
59339
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: Model3DRendererComponent, decorators: [{
59382
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: Model3DRendererComponent, decorators: [{
59340
59383
  type: Component,
59341
59384
  args: [{ selector: 'pptx-model3d-renderer', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [NgStyle, TranslatePipe], template: `
59342
59385
  <div
@@ -59553,8 +59596,8 @@ class OleRendererComponent {
59553
59596
  openUrlInNewTab(href);
59554
59597
  }
59555
59598
  }
59556
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: OleRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
59557
- 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: `
59599
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: OleRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
59600
+ 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: `
59558
59601
  <div
59559
59602
  class="pptx-ng-element pptx-ng-ole"
59560
59603
  [ngStyle]="containerStyle()"
@@ -59846,7 +59889,7 @@ class OleRendererComponent {
59846
59889
  </div>
59847
59890
  `, 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 });
59848
59891
  }
59849
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: OleRendererComponent, decorators: [{
59892
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: OleRendererComponent, decorators: [{
59850
59893
  type: Component,
59851
59894
  args: [{ selector: 'pptx-ole-renderer', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [NgStyle, TranslatePipe], template: `
59852
59895
  <div
@@ -60366,8 +60409,8 @@ class SmartArt3DRendererComponent {
60366
60409
  this.handle?.dispose();
60367
60410
  this.handle = null;
60368
60411
  }
60369
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SmartArt3DRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
60370
- 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: `
60412
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SmartArt3DRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
60413
+ 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: `
60371
60414
  @if (useFallback()) {
60372
60415
  <pptx-smart-art-renderer [element]="element()" [zIndex]="zIndex()" />
60373
60416
  } @else {
@@ -60407,7 +60450,7 @@ class SmartArt3DRendererComponent {
60407
60450
  }
60408
60451
  `, 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 });
60409
60452
  }
60410
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SmartArt3DRendererComponent, decorators: [{
60453
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SmartArt3DRendererComponent, decorators: [{
60411
60454
  type: Component,
60412
60455
  args: [{ selector: 'pptx-smart-art-3d-renderer', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [NgStyle, SmartArtRendererComponent, TranslatePipe], template: `
60413
60456
  @if (useFallback()) {
@@ -60463,10 +60506,10 @@ class SmartArt3DService {
60463
60506
  /** `true` when SmartArt should render via the Three.js scene. */
60464
60507
  enabled = signal(false, /* @ts-ignore */
60465
60508
  ...(ngDevMode ? [{ debugName: "enabled" }] : /* istanbul ignore next */ []));
60466
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SmartArt3DService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
60467
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SmartArt3DService });
60509
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SmartArt3DService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
60510
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SmartArt3DService });
60468
60511
  }
60469
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SmartArt3DService, decorators: [{
60512
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SmartArt3DService, decorators: [{
60470
60513
  type: Injectable
60471
60514
  }] });
60472
60515
 
@@ -60899,8 +60942,8 @@ class TableResizeOverlayComponent {
60899
60942
  this.resizeRow.emit({ index: drag.index, height });
60900
60943
  }
60901
60944
  }
60902
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableResizeOverlayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
60903
- 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: `
60945
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TableResizeOverlayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
60946
+ 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: `
60904
60947
  <div class="pptx-ng-tbl-resize" #container>
60905
60948
  <ng-content />
60906
60949
  @if (editable()) {
@@ -60926,7 +60969,7 @@ class TableResizeOverlayComponent {
60926
60969
  </div>
60927
60970
  `, 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 });
60928
60971
  }
60929
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableResizeOverlayComponent, decorators: [{
60972
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TableResizeOverlayComponent, decorators: [{
60930
60973
  type: Component,
60931
60974
  args: [{ selector: 'pptx-table-resize-overlay', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, template: `
60932
60975
  <div class="pptx-ng-tbl-resize" #container>
@@ -61107,8 +61150,8 @@ class TableRendererComponent {
61107
61150
  const rows = td.rows.map((row, i) => i === event.index ? { ...row, height: event.height } : row);
61108
61151
  this.tableChange.emit({ id: this.element().id, tableData: { ...td, rows } });
61109
61152
  }
61110
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
61111
- 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: `
61153
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TableRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
61154
+ 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: `
61112
61155
  <pptx-table-resize-overlay
61113
61156
  [columnWidths]="columnWidths()"
61114
61157
  [editable]="editable()"
@@ -61201,7 +61244,7 @@ class TableRendererComponent {
61201
61244
  </pptx-table-resize-overlay>
61202
61245
  `, 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 });
61203
61246
  }
61204
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TableRendererComponent, decorators: [{
61247
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TableRendererComponent, decorators: [{
61205
61248
  type: Component,
61206
61249
  args: [{ selector: 'pptx-table-renderer', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [NgStyle, TableResizeOverlayComponent], template: `
61207
61250
  <pptx-table-resize-overlay
@@ -61486,10 +61529,10 @@ class ZoomNavigationService {
61486
61529
  navigateToZoomTarget(targetSlideIndex) {
61487
61530
  this.handler?.(targetSlideIndex);
61488
61531
  }
61489
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ZoomNavigationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
61490
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ZoomNavigationService });
61532
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ZoomNavigationService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
61533
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ZoomNavigationService });
61491
61534
  }
61492
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ZoomNavigationService, decorators: [{
61535
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ZoomNavigationService, decorators: [{
61493
61536
  type: Injectable
61494
61537
  }] });
61495
61538
 
@@ -61592,10 +61635,10 @@ class ZoomTargetService {
61592
61635
  sectionName: slide.sectionName,
61593
61636
  };
61594
61637
  }
61595
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ZoomTargetService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
61596
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ZoomTargetService });
61638
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ZoomTargetService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
61639
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ZoomTargetService });
61597
61640
  }
61598
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ZoomTargetService, decorators: [{
61641
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ZoomTargetService, decorators: [{
61599
61642
  type: Injectable
61600
61643
  }] });
61601
61644
 
@@ -61678,8 +61721,8 @@ class ZoomRendererComponent {
61678
61721
  event.stopPropagation();
61679
61722
  this.activate();
61680
61723
  }
61681
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ZoomRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
61682
- 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: `
61724
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ZoomRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
61725
+ 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: `
61683
61726
  <div
61684
61727
  class="pptx-ng-element pptx-ng-zoom"
61685
61728
  [class.pptx-ng-zoom-interactive]="interactive()"
@@ -61726,7 +61769,7 @@ class ZoomRendererComponent {
61726
61769
  </div>
61727
61770
  `, 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 });
61728
61771
  }
61729
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ZoomRendererComponent, decorators: [{
61772
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ZoomRendererComponent, decorators: [{
61730
61773
  type: Component,
61731
61774
  args: [{ selector: 'pptx-zoom-renderer', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [NgStyle, TranslatePipe], template: `
61732
61775
  <div
@@ -62058,8 +62101,8 @@ class ElementRendererComponent {
62058
62101
  return key ? this.translate.instant(key) : this.element().type;
62059
62102
  }, /* @ts-ignore */
62060
62103
  ...(ngDevMode ? [{ debugName: "placeholderLabel" }] : /* istanbul ignore next */ []));
62061
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ElementRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
62062
- 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: `
62104
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ElementRendererComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
62105
+ 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: `
62063
62106
  @switch (true) {
62064
62107
  @case (element().type === 'connector') {
62065
62108
  <pptx-connector-renderer
@@ -62332,7 +62375,7 @@ class ElementRendererComponent {
62332
62375
  }
62333
62376
  `, 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 });
62334
62377
  }
62335
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ElementRendererComponent, decorators: [{
62378
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ElementRendererComponent, decorators: [{
62336
62379
  type: Component,
62337
62380
  args: [{
62338
62381
  selector: 'pptx-element-renderer',
@@ -62754,10 +62797,10 @@ class InkDrawingService {
62754
62797
  this.liveInkPath.set('');
62755
62798
  return true;
62756
62799
  }
62757
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: InkDrawingService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
62758
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: InkDrawingService });
62800
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: InkDrawingService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
62801
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: InkDrawingService });
62759
62802
  }
62760
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: InkDrawingService, decorators: [{
62803
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: InkDrawingService, decorators: [{
62761
62804
  type: Injectable
62762
62805
  }] });
62763
62806
 
@@ -62876,10 +62919,10 @@ class RulerGuidesService {
62876
62919
  this.guideDrag = null;
62877
62920
  return true;
62878
62921
  }
62879
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RulerGuidesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
62880
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RulerGuidesService });
62922
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RulerGuidesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
62923
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RulerGuidesService });
62881
62924
  }
62882
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RulerGuidesService, decorators: [{
62925
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RulerGuidesService, decorators: [{
62883
62926
  type: Injectable
62884
62927
  }] });
62885
62928
 
@@ -63814,8 +63857,8 @@ class SlideCanvasComponent {
63814
63857
  return style;
63815
63858
  }, /* @ts-ignore */
63816
63859
  ...(ngDevMode ? [{ debugName: "stageStyle" }] : /* istanbul ignore next */ []));
63817
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SlideCanvasComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
63818
- 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: [
63860
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SlideCanvasComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
63861
+ 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: [
63819
63862
  CanvasFitService,
63820
63863
  InkDrawingService,
63821
63864
  RulerGuidesService,
@@ -64196,7 +64239,7 @@ class SlideCanvasComponent {
64196
64239
  </div>
64197
64240
  `, 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 });
64198
64241
  }
64199
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SlideCanvasComponent, decorators: [{
64242
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SlideCanvasComponent, decorators: [{
64200
64243
  type: Component,
64201
64244
  args: [{ selector: 'pptx-slide-canvas', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, providers: [
64202
64245
  CanvasFitService,
@@ -64679,8 +64722,8 @@ class MobilePresenterViewComponent {
64679
64722
  }
64680
64723
  return { ...slide, elements: [...template, ...slide.elements] };
64681
64724
  }
64682
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: MobilePresenterViewComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
64683
- 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: `
64725
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: MobilePresenterViewComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
64726
+ 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: `
64684
64727
  @if (currentSlide(); as current) {
64685
64728
  <!-- Header: elapsed + counter + exit -->
64686
64729
  <div class="pptx-ng-mpresenter-header">
@@ -64785,7 +64828,7 @@ class MobilePresenterViewComponent {
64785
64828
  }
64786
64829
  `, 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 });
64787
64830
  }
64788
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: MobilePresenterViewComponent, decorators: [{
64831
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: MobilePresenterViewComponent, decorators: [{
64789
64832
  type: Component,
64790
64833
  args: [{ selector: 'pptx-mobile-presenter-view', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [NgStyle, SlideCanvasComponent, TranslatePipe], template: `
64791
64834
  @if (currentSlide(); as current) {
@@ -65008,8 +65051,8 @@ class MobileSlidesSheetComponent {
65008
65051
  this.jumpToSlide.emit(index);
65009
65052
  this.closed.emit();
65010
65053
  }
65011
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: MobileSlidesSheetComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
65012
- 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: `
65054
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: MobileSlidesSheetComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
65055
+ 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: `
65013
65056
  <pptx-mobile-sheet
65014
65057
  [open]="open()"
65015
65058
  [title]="'pptx.sections.slides' | translate"
@@ -65061,7 +65104,7 @@ class MobileSlidesSheetComponent {
65061
65104
  </pptx-mobile-sheet>
65062
65105
  `, 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 });
65063
65106
  }
65064
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: MobileSlidesSheetComponent, decorators: [{
65107
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: MobileSlidesSheetComponent, decorators: [{
65065
65108
  type: Component,
65066
65109
  args: [{ selector: 'pptx-mobile-slides-sheet', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [NgStyle, MobileSheetComponent, SlideCanvasComponent, TranslatePipe], template: `
65067
65110
  <pptx-mobile-sheet
@@ -65173,8 +65216,8 @@ class MobileToolbarComponent {
65173
65216
  save = output();
65174
65217
  /** User tapped Present. */
65175
65218
  present = output();
65176
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: MobileToolbarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
65177
- 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: `
65219
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: MobileToolbarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
65220
+ 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: `
65178
65221
  <div
65179
65222
  class="pptx-ng-mtoolbar"
65180
65223
  role="toolbar"
@@ -65306,7 +65349,7 @@ class MobileToolbarComponent {
65306
65349
  </div>
65307
65350
  `, 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 });
65308
65351
  }
65309
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: MobileToolbarComponent, decorators: [{
65352
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: MobileToolbarComponent, decorators: [{
65310
65353
  type: Component,
65311
65354
  args: [{ selector: 'pptx-mobile-toolbar', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
65312
65355
  <div
@@ -65567,8 +65610,8 @@ class NotesToolbarComponent {
65567
65610
  }
65568
65611
  this.insertLink.emit({ url: this.linkUrl(), displayText: this.linkText() });
65569
65612
  }
65570
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: NotesToolbarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
65571
- 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: `
65613
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: NotesToolbarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
65614
+ 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: `
65572
65615
  <div
65573
65616
  class="pptx-ng-notes-toolbar"
65574
65617
  role="toolbar"
@@ -65653,7 +65696,7 @@ class NotesToolbarComponent {
65653
65696
  </div>
65654
65697
  `, 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 });
65655
65698
  }
65656
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: NotesToolbarComponent, decorators: [{
65699
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: NotesToolbarComponent, decorators: [{
65657
65700
  type: Component,
65658
65701
  args: [{ selector: 'pptx-notes-toolbar', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
65659
65702
  <div
@@ -65965,8 +66008,8 @@ class NotesPanelComponent {
65965
66008
  setTimeout(() => frame.remove(), 1000);
65966
66009
  }, 200);
65967
66010
  }
65968
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: NotesPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
65969
- 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: `
66011
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: NotesPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
66012
+ 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: `
65970
66013
  <section class="pptx-ng-notes-panel" [attr.data-collapsed]="collapsed()">
65971
66014
  <button
65972
66015
  type="button"
@@ -66034,7 +66077,7 @@ class NotesPanelComponent {
66034
66077
  </section>
66035
66078
  `, 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 });
66036
66079
  }
66037
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: NotesPanelComponent, decorators: [{
66080
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: NotesPanelComponent, decorators: [{
66038
66081
  type: Component,
66039
66082
  args: [{ selector: 'pptx-notes-panel', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [NotesToolbarComponent, TranslatePipe, LucideChevronRight, LucideChevronDown], template: `
66040
66083
  <section class="pptx-ng-notes-panel" [attr.data-collapsed]="collapsed()">
@@ -66279,10 +66322,10 @@ class AnimationPlaybackService {
66279
66322
  }
66280
66323
  this.rafHandle = null;
66281
66324
  }
66282
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AnimationPlaybackService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
66283
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AnimationPlaybackService });
66325
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: AnimationPlaybackService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
66326
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: AnimationPlaybackService });
66284
66327
  }
66285
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AnimationPlaybackService, decorators: [{
66328
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: AnimationPlaybackService, decorators: [{
66286
66329
  type: Injectable
66287
66330
  }], ctorParameters: () => [] });
66288
66331
 
@@ -66782,10 +66825,10 @@ class PresentationAnnotationsService {
66782
66825
  this._toolbarTimer = null;
66783
66826
  }
66784
66827
  }
66785
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PresentationAnnotationsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
66786
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PresentationAnnotationsService });
66828
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PresentationAnnotationsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
66829
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PresentationAnnotationsService });
66787
66830
  }
66788
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PresentationAnnotationsService, decorators: [{
66831
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PresentationAnnotationsService, decorators: [{
66789
66832
  type: Injectable
66790
66833
  }], ctorParameters: () => [] });
66791
66834
 
@@ -66979,8 +67022,8 @@ class PresentationAnnotationOverlayComponent {
66979
67022
  y: (clientY - rect.top) / z,
66980
67023
  };
66981
67024
  }
66982
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PresentationAnnotationOverlayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
66983
- 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: `
67025
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PresentationAnnotationOverlayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
67026
+ 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: `
66984
67027
  @if (isArmed()) {
66985
67028
  <div
66986
67029
  class="pptx-ng-anno-wrapper"
@@ -67018,7 +67061,7 @@ class PresentationAnnotationOverlayComponent {
67018
67061
  }
67019
67062
  `, 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 });
67020
67063
  }
67021
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PresentationAnnotationOverlayComponent, decorators: [{
67064
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PresentationAnnotationOverlayComponent, decorators: [{
67022
67065
  type: Component,
67023
67066
  args: [{ selector: 'pptx-presentation-annotation-overlay', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [NgStyle], template: `
67024
67067
  @if (isArmed()) {
@@ -67408,8 +67451,8 @@ class PresentationSubtitleBarComponent {
67408
67451
  const text = captionDisplayText(this._supportState(), this._captionText(), this.notSupportedLabel(), this.listeningLabel());
67409
67452
  this.displayText.set(text);
67410
67453
  }
67411
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PresentationSubtitleBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
67412
- 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: `
67454
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PresentationSubtitleBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
67455
+ 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: `
67413
67456
  @if (visible()) {
67414
67457
  <div class="pptx-ng-subtitle-inner">
67415
67458
  <span class="pptx-ng-subtitle-text">{{ displayText() }}</span>
@@ -67417,7 +67460,7 @@ class PresentationSubtitleBarComponent {
67417
67460
  }
67418
67461
  `, 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 });
67419
67462
  }
67420
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PresentationSubtitleBarComponent, decorators: [{
67463
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PresentationSubtitleBarComponent, decorators: [{
67421
67464
  type: Component,
67422
67465
  args: [{ selector: 'pptx-presentation-subtitle-bar', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, template: `
67423
67466
  @if (visible()) {
@@ -67635,8 +67678,8 @@ class PresentationTransitionOverlayComponent {
67635
67678
  this.audio = null;
67636
67679
  }
67637
67680
  }
67638
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PresentationTransitionOverlayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
67639
- 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: `
67681
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PresentationTransitionOverlayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
67682
+ 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: `
67640
67683
  <div class="pptx-ng-transition-layer" [ngStyle]="layerStyle()">
67641
67684
  <div [ngStyle]="slideBoxStyle()">
67642
67685
  <pptx-slide-canvas
@@ -67650,7 +67693,7 @@ class PresentationTransitionOverlayComponent {
67650
67693
  </div>
67651
67694
  `, 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 });
67652
67695
  }
67653
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PresentationTransitionOverlayComponent, decorators: [{
67696
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PresentationTransitionOverlayComponent, decorators: [{
67654
67697
  type: Component,
67655
67698
  args: [{ selector: 'pptx-presentation-transition-overlay', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [NgStyle, SlideCanvasComponent], template: `
67656
67699
  <div class="pptx-ng-transition-layer" [ngStyle]="layerStyle()">
@@ -68254,8 +68297,8 @@ class PresentationOverlayComponent {
68254
68297
  }
68255
68298
  this.closed.emit();
68256
68299
  }
68257
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PresentationOverlayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
68258
- 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: `
68300
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PresentationOverlayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
68301
+ 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: `
68259
68302
  <div #root class="pptx-ng-presentation-root">
68260
68303
  <!--
68261
68304
  Slide counter, rendered first in DOM (before slide content) so a
@@ -68392,7 +68435,7 @@ class PresentationOverlayComponent {
68392
68435
  </div>
68393
68436
  `, 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 });
68394
68437
  }
68395
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PresentationOverlayComponent, decorators: [{
68438
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PresentationOverlayComponent, decorators: [{
68396
68439
  type: Component,
68397
68440
  args: [{ selector: 'pptx-presentation-overlay', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [
68398
68441
  NgStyle,
@@ -68695,8 +68738,8 @@ class PresenterViewComponent {
68695
68738
  }
68696
68739
  return { ...slide, elements: [...template, ...slide.elements] };
68697
68740
  }
68698
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PresenterViewComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
68699
- 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: `
68741
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PresenterViewComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
68742
+ 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: `
68700
68743
  @if (currentSlide(); as current) {
68701
68744
  <div class="pptx-ng-presenter-body">
68702
68745
  <!-- Current slide (≈70%) -->
@@ -68871,7 +68914,7 @@ class PresenterViewComponent {
68871
68914
  }
68872
68915
  `, 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 });
68873
68916
  }
68874
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PresenterViewComponent, decorators: [{
68917
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PresenterViewComponent, decorators: [{
68875
68918
  type: Component,
68876
68919
  args: [{ selector: 'pptx-presenter-view', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [NgStyle, SlideCanvasComponent, TranslatePipe], template: `
68877
68920
  @if (currentSlide(); as current) {
@@ -69387,10 +69430,10 @@ class PresenterWindowService {
69387
69430
  this.audienceWindow = null;
69388
69431
  this.sessionId = '';
69389
69432
  }
69390
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PresenterWindowService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
69391
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PresenterWindowService, providedIn: 'root' });
69433
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PresenterWindowService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
69434
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PresenterWindowService, providedIn: 'root' });
69392
69435
  }
69393
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PresenterWindowService, decorators: [{
69436
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PresenterWindowService, decorators: [{
69394
69437
  type: Injectable,
69395
69438
  args: [{ providedIn: 'root' }]
69396
69439
  }] });
@@ -69468,8 +69511,8 @@ class PrintSettingsPanelComponent {
69468
69511
  const target = event.target;
69469
69512
  this.settingsChange.emit({ frameSlides: target.checked });
69470
69513
  }
69471
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PrintSettingsPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
69472
- 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: `
69514
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PrintSettingsPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
69515
+ 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: `
69473
69516
  <div class="pptx-ng-print-settings">
69474
69517
  <!-- Print What -->
69475
69518
  <fieldset class="pptx-ng-print-settings__group">
@@ -69610,7 +69653,7 @@ class PrintSettingsPanelComponent {
69610
69653
  </div>
69611
69654
  `, 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 });
69612
69655
  }
69613
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PrintSettingsPanelComponent, decorators: [{
69656
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PrintSettingsPanelComponent, decorators: [{
69614
69657
  type: Component,
69615
69658
  args: [{ selector: 'pptx-print-settings-panel', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
69616
69659
  <div class="pptx-ng-print-settings">
@@ -69880,8 +69923,8 @@ class PrintDialogComponent {
69880
69923
  this.onCancel();
69881
69924
  }
69882
69925
  }
69883
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PrintDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
69884
- 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: `
69926
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PrintDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
69927
+ 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: `
69885
69928
  <div
69886
69929
  class="pptx-ng-print-dialog__backdrop"
69887
69930
  [class.is-mobile]="mobile.isMobile()"
@@ -69938,7 +69981,7 @@ class PrintDialogComponent {
69938
69981
  </div>
69939
69982
  `, 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 });
69940
69983
  }
69941
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PrintDialogComponent, decorators: [{
69984
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PrintDialogComponent, decorators: [{
69942
69985
  type: Component,
69943
69986
  args: [{ selector: 'pptx-print-dialog', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [PrintSettingsPanelComponent, TranslatePipe], providers: [IsMobileService], template: `
69944
69987
  <div
@@ -70140,10 +70183,10 @@ class PrintService {
70140
70183
  }, 300);
70141
70184
  return true;
70142
70185
  }
70143
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PrintService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
70144
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PrintService });
70186
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PrintService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
70187
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PrintService });
70145
70188
  }
70146
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PrintService, decorators: [{
70189
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PrintService, decorators: [{
70147
70190
  type: Injectable
70148
70191
  }] });
70149
70192
 
@@ -70264,8 +70307,8 @@ class PropertiesDialogComponent {
70264
70307
  });
70265
70308
  this.save.emit(patch);
70266
70309
  }
70267
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PropertiesDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
70268
- 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: `
70310
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PropertiesDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
70311
+ 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: `
70269
70312
  <pptx-modal-dialog
70270
70313
  [open]="open()"
70271
70314
  [title]="'pptx.documentProperties.dialogTitle' | translate"
@@ -70355,7 +70398,7 @@ class PropertiesDialogComponent {
70355
70398
  </pptx-modal-dialog>
70356
70399
  `, 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 });
70357
70400
  }
70358
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PropertiesDialogComponent, decorators: [{
70401
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PropertiesDialogComponent, decorators: [{
70359
70402
  type: Component,
70360
70403
  args: [{ selector: 'pptx-properties-dialog', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [ModalDialogComponent, TranslatePipe], template: `
70361
70404
  <pptx-modal-dialog
@@ -70512,8 +70555,8 @@ class RemoteSelectionOverlayComponent {
70512
70555
  return result;
70513
70556
  }, /* @ts-ignore */
70514
70557
  ...(ngDevMode ? [{ debugName: "boxes" }] : /* istanbul ignore next */ []));
70515
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RemoteSelectionOverlayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
70516
- 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: `
70558
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RemoteSelectionOverlayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
70559
+ 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: `
70517
70560
  <div aria-hidden="true" data-export-ignore="true">
70518
70561
  @for (box of boxes(); track box.key) {
70519
70562
  <div
@@ -70532,7 +70575,7 @@ class RemoteSelectionOverlayComponent {
70532
70575
  </div>
70533
70576
  `, 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 });
70534
70577
  }
70535
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RemoteSelectionOverlayComponent, decorators: [{
70578
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RemoteSelectionOverlayComponent, decorators: [{
70536
70579
  type: Component,
70537
70580
  args: [{ selector: 'pptx-remote-selection-overlay', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, template: `
70538
70581
  <div aria-hidden="true" data-export-ignore="true">
@@ -70639,8 +70682,8 @@ class RibbonAnimationsSectionComponent {
70639
70682
  const updated = removeAnimation(slide.animations ?? [], el.id);
70640
70683
  this.editor.updateSlide(this.slideIndex(), { animations: updated });
70641
70684
  }
70642
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonAnimationsSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
70643
- 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: `
70685
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonAnimationsSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
70686
+ 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: `
70644
70687
  <!-- Preview: plays presentation from this slide; no element-only preview API yet -->
70645
70688
  <button
70646
70689
  type="button"
@@ -70745,7 +70788,7 @@ class RibbonAnimationsSectionComponent {
70745
70788
  </button>
70746
70789
  `, 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 });
70747
70790
  }
70748
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonAnimationsSectionComponent, decorators: [{
70791
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonAnimationsSectionComponent, decorators: [{
70749
70792
  type: Component,
70750
70793
  args: [{
70751
70794
  selector: 'pptx-ribbon-animations-section',
@@ -70906,8 +70949,8 @@ class RibbonArrangeSectionComponent {
70906
70949
  this.editor.updateElement(idx, id, patch);
70907
70950
  }
70908
70951
  }
70909
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonArrangeSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
70910
- 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: `
70952
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonArrangeSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
70953
+ 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: `
70911
70954
  <!-- Order -->
70912
70955
  <div class="pptx-rb-grp">
70913
70956
  <button
@@ -71133,7 +71176,7 @@ class RibbonArrangeSectionComponent {
71133
71176
  </div>
71134
71177
  `, 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 });
71135
71178
  }
71136
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonArrangeSectionComponent, decorators: [{
71179
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonArrangeSectionComponent, decorators: [{
71137
71180
  type: Component,
71138
71181
  args: [{
71139
71182
  selector: 'pptx-ribbon-arrange-section',
@@ -71390,8 +71433,8 @@ class RibbonDesignSectionComponent {
71390
71433
  toggleThemeGallery = output();
71391
71434
  info = output();
71392
71435
  toggleInspector = output();
71393
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonDesignSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
71394
- 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: `
71436
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonDesignSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
71437
+ 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: `
71395
71438
  <!-- Themes -->
71396
71439
  <button
71397
71440
  type="button"
@@ -71430,7 +71473,7 @@ class RibbonDesignSectionComponent {
71430
71473
  </button>
71431
71474
  `, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
71432
71475
  }
71433
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonDesignSectionComponent, decorators: [{
71476
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonDesignSectionComponent, decorators: [{
71434
71477
  type: Component,
71435
71478
  args: [{
71436
71479
  selector: 'pptx-ribbon-design-section',
@@ -71515,8 +71558,8 @@ class RibbonDrawSectionComponent {
71515
71558
  const width = Number(event.target.value);
71516
71559
  this.drawToolChange.emit({ tool: this.activeTool(), color: this.drawingColor(), width });
71517
71560
  }
71518
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonDrawSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
71519
- 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: `
71561
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonDrawSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
71562
+ 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: `
71520
71563
  <!--
71521
71564
  Draw tool state is held in the parent ribbon and pushed up via
71522
71565
  drawToolChange; power-point-viewer.component.ts consumes it and appends
@@ -71585,7 +71628,7 @@ class RibbonDrawSectionComponent {
71585
71628
  </label>
71586
71629
  `, 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 });
71587
71630
  }
71588
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonDrawSectionComponent, decorators: [{
71631
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonDrawSectionComponent, decorators: [{
71589
71632
  type: Component,
71590
71633
  args: [{
71591
71634
  selector: 'pptx-ribbon-draw-section',
@@ -71713,8 +71756,8 @@ class RibbonDrawingGroupComponent {
71713
71756
  this.arrangeOpen.set(false);
71714
71757
  this.moveLayerToEdge.emit(edge);
71715
71758
  }
71716
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonDrawingGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
71717
- 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: `
71759
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonDrawingGroupComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
71760
+ 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: `
71718
71761
  <!-- Shapes -->
71719
71762
  <div class="flex flex-col items-center gap-0.5">
71720
71763
  <div class="pptx-rb-grp">
@@ -71815,7 +71858,7 @@ class RibbonDrawingGroupComponent {
71815
71858
  </div>
71816
71859
  `, isInline: true, dependencies: [{ kind: "component", type: LucideChevronDown, selector: "svg[lucideChevronDown]" }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
71817
71860
  }
71818
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonDrawingGroupComponent, decorators: [{
71861
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonDrawingGroupComponent, decorators: [{
71819
71862
  type: Component,
71820
71863
  args: [{
71821
71864
  selector: 'pptx-ribbon-drawing-group',
@@ -71950,8 +71993,8 @@ class RibbonFileSectionComponent {
71950
71993
  openPassword = output();
71951
71994
  openFontEmbedding = output();
71952
71995
  openVersionHistory = output();
71953
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonFileSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
71954
- 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: `
71996
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonFileSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
71997
+ 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: `
71955
71998
  <button
71956
71999
  type="button"
71957
72000
  class="pptx-rb-pill"
@@ -72048,7 +72091,7 @@ class RibbonFileSectionComponent {
72048
72091
  </button>
72049
72092
  `, isInline: true, dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
72050
72093
  }
72051
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonFileSectionComponent, decorators: [{
72094
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonFileSectionComponent, decorators: [{
72052
72095
  type: Component,
72053
72096
  args: [{
72054
72097
  selector: 'pptx-ribbon-file-section',
@@ -72174,8 +72217,8 @@ class RibbonColorPopoverComponent {
72174
72217
  swatchAriaKey = input('', /* @ts-ignore */
72175
72218
  ...(ngDevMode ? [{ debugName: "swatchAriaKey" }] : /* istanbul ignore next */ []));
72176
72219
  pick = output();
72177
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonColorPopoverComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
72178
- 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: `
72220
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonColorPopoverComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
72221
+ 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: `
72179
72222
  <div class="group relative">
72180
72223
  <button
72181
72224
  type="button"
@@ -72222,7 +72265,7 @@ class RibbonColorPopoverComponent {
72222
72265
  </div>
72223
72266
  `, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
72224
72267
  }
72225
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonColorPopoverComponent, decorators: [{
72268
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonColorPopoverComponent, decorators: [{
72226
72269
  type: Component,
72227
72270
  args: [{
72228
72271
  selector: 'pptx-ribbon-color-popover',
@@ -72445,8 +72488,8 @@ class RibbonFontControlsComponent {
72445
72488
  patch(patch) {
72446
72489
  patchTextStyle(this.editor, this.slideIndex(), this.selectedElement(), patch);
72447
72490
  }
72448
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonFontControlsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
72449
- 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: `
72491
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonFontControlsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
72492
+ 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: `
72450
72493
  <div class="flex items-center gap-1">
72451
72494
  <select
72452
72495
  class="pptx-rb-select w-28"
@@ -72610,7 +72653,7 @@ class RibbonFontControlsComponent {
72610
72653
  </pptx-ribbon-color-popover>
72611
72654
  `, 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 });
72612
72655
  }
72613
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonFontControlsComponent, decorators: [{
72656
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonFontControlsComponent, decorators: [{
72614
72657
  type: Component,
72615
72658
  args: [{
72616
72659
  selector: 'pptx-ribbon-font-controls',
@@ -72800,8 +72843,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImpor
72800
72843
  class RibbonEditingSectionComponent {
72801
72844
  toggleFindReplace = output();
72802
72845
  selectAll = output();
72803
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonEditingSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
72804
- 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: `
72846
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonEditingSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
72847
+ 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: `
72805
72848
  <div class="pptx-rb-grp">
72806
72849
  <button
72807
72850
  type="button"
@@ -72830,7 +72873,7 @@ class RibbonEditingSectionComponent {
72830
72873
  </div>
72831
72874
  `, isInline: true, dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
72832
72875
  }
72833
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonEditingSectionComponent, decorators: [{
72876
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonEditingSectionComponent, decorators: [{
72834
72877
  type: Component,
72835
72878
  args: [{
72836
72879
  selector: 'pptx-ribbon-editing-section',
@@ -72937,8 +72980,8 @@ class RibbonParagraphControlsComponent {
72937
72980
  patch(patch) {
72938
72981
  patchTextStyle(this.editor, this.slideIndex(), this.selectedElement(), patch);
72939
72982
  }
72940
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonParagraphControlsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
72941
- 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: `
72983
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonParagraphControlsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
72984
+ 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: `
72942
72985
  <!-- List style: bullets + numbering -->
72943
72986
  <div class="pptx-rb-grp">
72944
72987
  <button
@@ -73063,7 +73106,7 @@ class RibbonParagraphControlsComponent {
73063
73106
  </select>
73064
73107
  `, 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 });
73065
73108
  }
73066
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonParagraphControlsComponent, decorators: [{
73109
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonParagraphControlsComponent, decorators: [{
73067
73110
  type: Component,
73068
73111
  args: [{
73069
73112
  selector: 'pptx-ribbon-paragraph-controls',
@@ -73245,8 +73288,8 @@ class RibbonHomeSectionComponent {
73245
73288
  onSelectAll() {
73246
73289
  this.editor.selectAll(this.slideIndex());
73247
73290
  }
73248
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonHomeSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
73249
- 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: `
73291
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonHomeSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
73292
+ 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: `
73250
73293
  <!-- Clipboard -->
73251
73294
  <div class="flex flex-col items-center gap-0.5">
73252
73295
  <div class="pptx-rb-grp">
@@ -73381,7 +73424,7 @@ class RibbonHomeSectionComponent {
73381
73424
  </div>
73382
73425
  `, 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 });
73383
73426
  }
73384
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonHomeSectionComponent, decorators: [{
73427
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonHomeSectionComponent, decorators: [{
73385
73428
  type: Component,
73386
73429
  args: [{
73387
73430
  selector: 'pptx-ribbon-home-section',
@@ -73689,8 +73732,8 @@ class RibbonInsertFieldsComponent {
73689
73732
  previewTime() {
73690
73733
  return this.previewDate().toLocaleString();
73691
73734
  }
73692
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonInsertFieldsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
73693
- 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: `
73735
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonInsertFieldsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
73736
+ 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: `
73694
73737
  <!-- Action Buttons dropdown (hover-reveal, mirrors React/Vue) -->
73695
73738
  <div class="group relative">
73696
73739
  <button
@@ -73843,7 +73886,7 @@ class RibbonInsertFieldsComponent {
73843
73886
  }
73844
73887
  `, isInline: true, dependencies: [{ kind: "component", type: LucideChevronDown, selector: "svg[lucideChevronDown]" }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
73845
73888
  }
73846
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonInsertFieldsComponent, decorators: [{
73889
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonInsertFieldsComponent, decorators: [{
73847
73890
  type: Component,
73848
73891
  args: [{
73849
73892
  selector: 'pptx-ribbon-insert-fields',
@@ -74129,8 +74172,8 @@ class RibbonInsertSectionComponent {
74129
74172
  document.body.appendChild(fileInput);
74130
74173
  fileInput.click();
74131
74174
  }
74132
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonInsertSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
74133
- 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: `
74175
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonInsertSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
74176
+ 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: `
74134
74177
  <!-- Shapes group -->
74135
74178
  <div class="pptx-rb-grp">
74136
74179
  <button
@@ -74258,7 +74301,7 @@ class RibbonInsertSectionComponent {
74258
74301
  <pptx-ribbon-insert-fields [slideIndex]="slideIndex()" />
74259
74302
  `, 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 });
74260
74303
  }
74261
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonInsertSectionComponent, decorators: [{
74304
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonInsertSectionComponent, decorators: [{
74262
74305
  type: Component,
74263
74306
  args: [{
74264
74307
  selector: 'pptx-ribbon-insert-section',
@@ -74495,8 +74538,8 @@ class RibbonPrimaryRowComponent {
74495
74538
  break;
74496
74539
  }
74497
74540
  }
74498
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonPrimaryRowComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
74499
- 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: `
74541
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonPrimaryRowComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
74542
+ 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: `
74500
74543
  <div class="flex items-center gap-0.5 px-1.5 py-0.5">
74501
74544
  <!-- Left: slides pane toggle (undo/redo/find moved to the title bar) -->
74502
74545
  <button
@@ -74641,7 +74684,7 @@ class RibbonPrimaryRowComponent {
74641
74684
  </div>
74642
74685
  `, 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 });
74643
74686
  }
74644
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonPrimaryRowComponent, decorators: [{
74687
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonPrimaryRowComponent, decorators: [{
74645
74688
  type: Component,
74646
74689
  args: [{
74647
74690
  selector: 'pptx-ribbon-primary-row',
@@ -74821,8 +74864,8 @@ class RibbonReviewSectionComponent {
74821
74864
  hasSel() {
74822
74865
  return this.editor.selectedIds().length > 0;
74823
74866
  }
74824
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonReviewSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
74825
- 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: `
74867
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonReviewSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
74868
+ 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: `
74826
74869
  <button type="button" class="pptx-rb-pill" (click)="comments.emit()">
74827
74870
  {{ 'pptx.toolbar.comments' | translate }}
74828
74871
  </button>
@@ -74866,7 +74909,7 @@ class RibbonReviewSectionComponent {
74866
74909
  }
74867
74910
  `, isInline: true, dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
74868
74911
  }
74869
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonReviewSectionComponent, decorators: [{
74912
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonReviewSectionComponent, decorators: [{
74870
74913
  type: Component,
74871
74914
  args: [{
74872
74915
  selector: 'pptx-ribbon-review-section',
@@ -74933,8 +74976,8 @@ class RibbonSlideshowSectionComponent {
74933
74976
  broadcast = output();
74934
74977
  openCustomShows = output();
74935
74978
  openSetUpSlideShow = output();
74936
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonSlideshowSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
74937
- 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: `
74979
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonSlideshowSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
74980
+ 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: `
74938
74981
  <button
74939
74982
  type="button"
74940
74983
  class="pptx-rb-pill"
@@ -74967,7 +75010,7 @@ class RibbonSlideshowSectionComponent {
74967
75010
  </button>
74968
75011
  `, isInline: true, dependencies: [{ kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
74969
75012
  }
74970
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonSlideshowSectionComponent, decorators: [{
75013
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonSlideshowSectionComponent, decorators: [{
74971
75014
  type: Component,
74972
75015
  args: [{
74973
75016
  selector: 'pptx-ribbon-slideshow-section',
@@ -75087,8 +75130,8 @@ class RibbonTransitionsSectionComponent {
75087
75130
  });
75088
75131
  }
75089
75132
  }
75090
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonTransitionsSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
75091
- 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: `
75133
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonTransitionsSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
75134
+ 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: `
75092
75135
  <!-- Preview (fires existing presentation present path; no separate preview API yet) -->
75093
75136
  <button
75094
75137
  type="button"
@@ -75196,7 +75239,7 @@ class RibbonTransitionsSectionComponent {
75196
75239
  </button>
75197
75240
  `, 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 });
75198
75241
  }
75199
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonTransitionsSectionComponent, decorators: [{
75242
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonTransitionsSectionComponent, decorators: [{
75200
75243
  type: Component,
75201
75244
  args: [{
75202
75245
  selector: 'pptx-ribbon-transitions-section',
@@ -75344,8 +75387,8 @@ class RibbonViewSectionComponent {
75344
75387
  toggleSelectionPane = output();
75345
75388
  toggleSnapToGrid = output();
75346
75389
  toggleEyedropper = output();
75347
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonViewSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
75348
- 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: `
75390
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonViewSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
75391
+ 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: `
75349
75392
  <!-- Presentation views -->
75350
75393
  <button type="button" class="pptx-rb-pill" (click)="openSorter.emit()">
75351
75394
  {{ 'pptx.slideSorter.title' | translate }}
@@ -75437,7 +75480,7 @@ class RibbonViewSectionComponent {
75437
75480
  </button>
75438
75481
  `, isInline: true, dependencies: [{ kind: "directive", type: NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "pipe", type: TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
75439
75482
  }
75440
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonViewSectionComponent, decorators: [{
75483
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonViewSectionComponent, decorators: [{
75441
75484
  type: Component,
75442
75485
  args: [{
75443
75486
  selector: 'pptx-ribbon-view-section',
@@ -75757,8 +75800,8 @@ class RibbonComponent {
75757
75800
  this.drawingWidth.set(state.width);
75758
75801
  this.drawToolChange.emit(state);
75759
75802
  }
75760
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
75761
- 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: `
75803
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
75804
+ 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: `
75762
75805
  <div
75763
75806
  role="toolbar"
75764
75807
  [attr.aria-label]="'pptx.toolbar.presentationToolbarAria' | translate"
@@ -75869,7 +75912,7 @@ class RibbonComponent {
75869
75912
 
75870
75913
  <!-- ── Ribbon content (collapsible via the ribbon toggle) ──────────── -->
75871
75914
  <div
75872
- class="flex flex-nowrap items-stretch gap-1.5 overflow-x-auto px-2 py-1.5"
75915
+ class="flex flex-nowrap items-center gap-1.5 overflow-x-auto px-2 py-1"
75873
75916
  [style.display]="ribbonExpanded() ? null : 'none'"
75874
75917
  >
75875
75918
  @switch (activeTab()) {
@@ -76036,7 +76079,7 @@ class RibbonComponent {
76036
76079
  </div>
76037
76080
  `, 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 });
76038
76081
  }
76039
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: RibbonComponent, decorators: [{
76082
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: RibbonComponent, decorators: [{
76040
76083
  type: Component,
76041
76084
  args: [{
76042
76085
  selector: 'pptx-ribbon',
@@ -76175,7 +76218,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImpor
76175
76218
 
76176
76219
  <!-- ── Ribbon content (collapsible via the ribbon toggle) ──────────── -->
76177
76220
  <div
76178
- class="flex flex-nowrap items-stretch gap-1.5 overflow-x-auto px-2 py-1.5"
76221
+ class="flex flex-nowrap items-center gap-1.5 overflow-x-auto px-2 py-1"
76179
76222
  [style.display]="ribbonExpanded() ? null : 'none'"
76180
76223
  >
76181
76224
  @switch (activeTab()) {
@@ -76406,8 +76449,8 @@ class SelectionPaneComponent {
76406
76449
  elLabel(el) {
76407
76450
  return elementLabel(el);
76408
76451
  }
76409
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SelectionPaneComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
76410
- 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: `
76452
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SelectionPaneComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
76453
+ 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: `
76411
76454
  <aside class="pptx-ng-sel-pane" [attr.aria-label]="'pptx.selectionPane.title' | translate">
76412
76455
  <header class="pptx-ng-sel-pane__header">
76413
76456
  <h2 class="pptx-ng-sel-pane__title">{{ 'pptx.selectionPane.title' | translate }}</h2>
@@ -76480,7 +76523,7 @@ class SelectionPaneComponent {
76480
76523
  </aside>
76481
76524
  `, 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 });
76482
76525
  }
76483
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SelectionPaneComponent, decorators: [{
76526
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SelectionPaneComponent, decorators: [{
76484
76527
  type: Component,
76485
76528
  args: [{ selector: 'pptx-selection-pane', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe, LucideEye, LucideEyeOff, LucideArrowUp, LucideArrowDown], template: `
76486
76529
  <aside class="pptx-ng-sel-pane" [attr.aria-label]="'pptx.selectionPane.title' | translate">
@@ -76718,8 +76761,8 @@ class ShareDialogComponent {
76718
76761
  handleStop() {
76719
76762
  this.stop.emit();
76720
76763
  }
76721
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ShareDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
76722
- 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: `
76764
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ShareDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
76765
+ 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: `
76723
76766
  <pptx-modal-dialog
76724
76767
  [open]="open()"
76725
76768
  [title]="(active() ? 'pptx.share.activeTitle' : 'pptx.toolbar.share') | translate"
@@ -76853,7 +76896,7 @@ class ShareDialogComponent {
76853
76896
  </pptx-modal-dialog>
76854
76897
  `, 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 });
76855
76898
  }
76856
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ShareDialogComponent, decorators: [{
76899
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ShareDialogComponent, decorators: [{
76857
76900
  type: Component,
76858
76901
  args: [{ selector: 'pptx-share-dialog', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [ModalDialogComponent, TranslatePipe], template: `
76859
76902
  <pptx-modal-dialog
@@ -77175,8 +77218,8 @@ class SignaturesPanelComponent {
77175
77218
  timestamp(sig) {
77176
77219
  return signatureTimestamp(sig);
77177
77220
  }
77178
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SignaturesPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
77179
- 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: `
77221
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SignaturesPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
77222
+ 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: `
77180
77223
  <section
77181
77224
  class="pptx-ng-signatures"
77182
77225
  [attr.aria-label]="'pptx.digitalSignatures.ariaLabel' | translate"
@@ -77235,7 +77278,7 @@ class SignaturesPanelComponent {
77235
77278
  </section>
77236
77279
  `, 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 });
77237
77280
  }
77238
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SignaturesPanelComponent, decorators: [{
77281
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SignaturesPanelComponent, decorators: [{
77239
77282
  type: Component,
77240
77283
  args: [{ selector: 'pptx-signatures-panel', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
77241
77284
  <section
@@ -77391,8 +77434,8 @@ class SlideSorterOverlayComponent {
77391
77434
  const s = slide;
77392
77435
  return s['hidden'] === true;
77393
77436
  }
77394
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SlideSorterOverlayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
77395
- 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: `
77437
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SlideSorterOverlayComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
77438
+ 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: `
77396
77439
  <!-- Backdrop -->
77397
77440
  <div class="pptx-ng-sorter-backdrop" (click)="onBackdropClick($event)">
77398
77441
  <!-- Modal panel -->
@@ -77461,7 +77504,7 @@ class SlideSorterOverlayComponent {
77461
77504
  </div>
77462
77505
  `, 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 });
77463
77506
  }
77464
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SlideSorterOverlayComponent, decorators: [{
77507
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SlideSorterOverlayComponent, decorators: [{
77465
77508
  type: Component,
77466
77509
  args: [{ selector: 'pptx-slide-sorter-overlay', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [NgStyle, SlideCanvasComponent, TranslatePipe], template: `
77467
77510
  <!-- Backdrop -->
@@ -77600,8 +77643,8 @@ class SlidesPanelComponent {
77600
77643
  onAddSlide() {
77601
77644
  this.editor.addSlide(this.activeIndex());
77602
77645
  }
77603
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SlidesPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
77604
- 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: `
77646
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SlidesPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
77647
+ 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: `
77605
77648
  <div class="pptx-ng-spanel">
77606
77649
  <!-- Scrollable slide list -->
77607
77650
  <div
@@ -77706,7 +77749,7 @@ class SlidesPanelComponent {
77706
77749
  </div>
77707
77750
  `, 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 });
77708
77751
  }
77709
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SlidesPanelComponent, decorators: [{
77752
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SlidesPanelComponent, decorators: [{
77710
77753
  type: Component,
77711
77754
  args: [{ selector: 'pptx-slides-panel', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [
77712
77755
  NgStyle,
@@ -77902,8 +77945,8 @@ class StatusBarComponent {
77902
77945
  }
77903
77946
  return this.translate.instant('pptx.autosave.minutesAgo', { count: minutes });
77904
77947
  }
77905
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: StatusBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
77906
- 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: `
77948
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: StatusBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
77949
+ 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: `
77907
77950
  <div
77908
77951
  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"
77909
77952
  >
@@ -78011,7 +78054,7 @@ class StatusBarComponent {
78011
78054
  </div>
78012
78055
  `, 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 });
78013
78056
  }
78014
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: StatusBarComponent, decorators: [{
78057
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: StatusBarComponent, decorators: [{
78015
78058
  type: Component,
78016
78059
  args: [{
78017
78060
  selector: 'pptx-status-bar',
@@ -78319,8 +78362,8 @@ class ThemeGalleryComponent {
78319
78362
  this.close.emit();
78320
78363
  }
78321
78364
  }
78322
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ThemeGalleryComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
78323
- 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: `
78365
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ThemeGalleryComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
78366
+ 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: `
78324
78367
  @if (open()) {
78325
78368
  <!-- Backdrop -->
78326
78369
  <div
@@ -78427,7 +78470,7 @@ class ThemeGalleryComponent {
78427
78470
  }
78428
78471
  `, 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 });
78429
78472
  }
78430
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ThemeGalleryComponent, decorators: [{
78473
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ThemeGalleryComponent, decorators: [{
78431
78474
  type: Component,
78432
78475
  args: [{
78433
78476
  selector: 'pptx-theme-gallery',
@@ -78657,8 +78700,8 @@ class TitleBarComponent {
78657
78700
  this.searchFocused.set(false);
78658
78701
  }
78659
78702
  }
78660
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TitleBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
78661
- 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: `
78703
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TitleBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
78704
+ 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: `
78662
78705
  <div [class]="tb.container" data-pptx-title-bar>
78663
78706
  <span [class]="tb.logo" aria-hidden="true">P</span>
78664
78707
 
@@ -78814,7 +78857,7 @@ class TitleBarComponent {
78814
78857
  </div>
78815
78858
  `, 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 });
78816
78859
  }
78817
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: TitleBarComponent, decorators: [{
78860
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: TitleBarComponent, decorators: [{
78818
78861
  type: Component,
78819
78862
  args: [{
78820
78863
  selector: 'pptx-title-bar',
@@ -79074,10 +79117,10 @@ class ViewerDialogsService {
79074
79117
  this.editingEquationOmml.set(omml);
79075
79118
  this.showEquation.set(true);
79076
79119
  }
79077
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerDialogsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
79078
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerDialogsService });
79120
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerDialogsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
79121
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerDialogsService });
79079
79122
  }
79080
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerDialogsService, decorators: [{
79123
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerDialogsService, decorators: [{
79081
79124
  type: Injectable
79082
79125
  }] });
79083
79126
 
@@ -79336,10 +79379,10 @@ class ViewerFormatPainterService {
79336
79379
  await navigator.clipboard.writeText(color).catch(() => undefined);
79337
79380
  }
79338
79381
  }
79339
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerFormatPainterService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
79340
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerFormatPainterService });
79382
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerFormatPainterService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
79383
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerFormatPainterService });
79341
79384
  }
79342
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerFormatPainterService, decorators: [{
79385
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerFormatPainterService, decorators: [{
79343
79386
  type: Injectable
79344
79387
  }] });
79345
79388
 
@@ -79531,10 +79574,10 @@ class ViewerCanvasEditingService {
79531
79574
  tableData: event.tableData,
79532
79575
  });
79533
79576
  }
79534
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerCanvasEditingService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
79535
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerCanvasEditingService });
79577
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerCanvasEditingService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
79578
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerCanvasEditingService });
79536
79579
  }
79537
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerCanvasEditingService, decorators: [{
79580
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerCanvasEditingService, decorators: [{
79538
79581
  type: Injectable
79539
79582
  }] });
79540
79583
 
@@ -79598,10 +79641,10 @@ class ViewerCollabCursorService {
79598
79641
  const y = clampCursorPosition((event.clientY - rect.top) / zoom, 0, size.height);
79599
79642
  this.collab.setCursor(x, y, host.activeSlideIndex());
79600
79643
  }
79601
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerCollabCursorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
79602
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerCollabCursorService });
79644
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerCollabCursorService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
79645
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerCollabCursorService });
79603
79646
  }
79604
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerCollabCursorService, decorators: [{
79647
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerCollabCursorService, decorators: [{
79605
79648
  type: Injectable
79606
79649
  }] });
79607
79650
 
@@ -79762,10 +79805,10 @@ class ViewerCollaborationSessionService {
79762
79805
  this.activeSession.set(null);
79763
79806
  this.requireHost().emitStop();
79764
79807
  }
79765
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerCollaborationSessionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
79766
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerCollaborationSessionService });
79808
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerCollaborationSessionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
79809
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerCollaborationSessionService });
79767
79810
  }
79768
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerCollaborationSessionService, decorators: [{
79811
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerCollaborationSessionService, decorators: [{
79769
79812
  type: Injectable
79770
79813
  }] });
79771
79814
 
@@ -79960,10 +80003,10 @@ class ViewerCompareService {
79960
80003
  diffAt(index) {
79961
80004
  return this.svc.compareResult()?.diffs[index];
79962
80005
  }
79963
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerCompareService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
79964
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerCompareService });
80006
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerCompareService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
80007
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerCompareService });
79965
80008
  }
79966
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerCompareService, decorators: [{
80009
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerCompareService, decorators: [{
79967
80010
  type: Injectable
79968
80011
  }] });
79969
80012
 
@@ -80059,10 +80102,10 @@ class ViewerCustomShowsService {
80059
80102
  .filter((s) => s !== undefined);
80060
80103
  return picked.length > 0 ? picked : null;
80061
80104
  }
80062
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerCustomShowsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
80063
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerCustomShowsService });
80105
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerCustomShowsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
80106
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerCustomShowsService });
80064
80107
  }
80065
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerCustomShowsService, decorators: [{
80108
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerCustomShowsService, decorators: [{
80066
80109
  type: Injectable
80067
80110
  }] });
80068
80111
 
@@ -80131,10 +80174,10 @@ class ViewerDocumentPropertiesService {
80131
80174
  }
80132
80175
  this.showHyperlink.set(false);
80133
80176
  }
80134
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerDocumentPropertiesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
80135
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerDocumentPropertiesService });
80177
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerDocumentPropertiesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
80178
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerDocumentPropertiesService });
80136
80179
  }
80137
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerDocumentPropertiesService, decorators: [{
80180
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerDocumentPropertiesService, decorators: [{
80138
80181
  type: Injectable
80139
80182
  }] });
80140
80183
 
@@ -80358,10 +80401,10 @@ class ViewerExportService {
80358
80401
  const canvas = await this.exportSvc.renderElement(el);
80359
80402
  return canvas.toDataURL('image/png');
80360
80403
  }
80361
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerExportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
80362
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerExportService });
80404
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerExportService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
80405
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerExportService });
80363
80406
  }
80364
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerExportService, decorators: [{
80407
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerExportService, decorators: [{
80365
80408
  type: Injectable
80366
80409
  }] });
80367
80410
 
@@ -80428,8 +80471,8 @@ class SlideDiffChangesComponent {
80428
80471
  changes = input.required(/* @ts-ignore */
80429
80472
  ...(ngDevMode ? [{ debugName: "changes" }] : /* istanbul ignore next */ []));
80430
80473
  icon = changeIcon;
80431
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SlideDiffChangesComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
80432
- 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: `
80474
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SlideDiffChangesComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
80475
+ 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: `
80433
80476
  <div class="pptx-ng-diff-changes">
80434
80477
  @for (change of changes(); track $index) {
80435
80478
  <div class="pptx-ng-diff-change">
@@ -80442,7 +80485,7 @@ class SlideDiffChangesComponent {
80442
80485
  </div>
80443
80486
  `, 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 });
80444
80487
  }
80445
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SlideDiffChangesComponent, decorators: [{
80488
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SlideDiffChangesComponent, decorators: [{
80446
80489
  type: Component,
80447
80490
  args: [{ selector: 'pptx-slide-diff-changes', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, template: `
80448
80491
  <div class="pptx-ng-diff-changes">
@@ -80486,8 +80529,8 @@ class SlideDiffThumbnailsComponent {
80486
80529
  ...(ngDevMode ? [{ debugName: "thumbZoom" }] : /* istanbul ignore next */ []));
80487
80530
  thumbH = computed(() => thumbnailHeight(this.canvasSize().width, this.canvasSize().height, THUMB_W), /* @ts-ignore */
80488
80531
  ...(ngDevMode ? [{ debugName: "thumbH" }] : /* istanbul ignore next */ []));
80489
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SlideDiffThumbnailsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
80490
- 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: `
80532
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SlideDiffThumbnailsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
80533
+ 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: `
80491
80534
  <div class="pptx-ng-diff-thumbs">
80492
80535
  @if (diff().baseSlide; as base) {
80493
80536
  <div class="pptx-ng-diff-thumb-col">
@@ -80535,7 +80578,7 @@ class SlideDiffThumbnailsComponent {
80535
80578
  </div>
80536
80579
  `, 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 });
80537
80580
  }
80538
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SlideDiffThumbnailsComponent, decorators: [{
80581
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SlideDiffThumbnailsComponent, decorators: [{
80539
80582
  type: Component,
80540
80583
  args: [{ selector: 'pptx-slide-diff-thumbnails', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [SlideCanvasComponent, TranslatePipe], template: `
80541
80584
  <div class="pptx-ng-diff-thumbs">
@@ -80634,8 +80677,8 @@ class SlideDiffRowComponent {
80634
80677
  toggle() {
80635
80678
  this.expandedOverride.set(!this.expanded());
80636
80679
  }
80637
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SlideDiffRowComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
80638
- 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: `
80680
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SlideDiffRowComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
80681
+ 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: `
80639
80682
  @if (diff().status !== 'unchanged') {
80640
80683
  <div class="pptx-ng-diff-row" [class.is-resolved]="isResolved()">
80641
80684
  <!-- Header (toggles expand) -->
@@ -80702,7 +80745,7 @@ class SlideDiffRowComponent {
80702
80745
  }
80703
80746
  `, 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 });
80704
80747
  }
80705
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SlideDiffRowComponent, decorators: [{
80748
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SlideDiffRowComponent, decorators: [{
80706
80749
  type: Component,
80707
80750
  args: [{ selector: 'pptx-slide-diff-row', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [
80708
80751
  SlideDiffThumbnailsComponent,
@@ -80854,8 +80897,8 @@ class ComparePanelComponent {
80854
80897
  this.rejected.set({});
80855
80898
  this.acceptAll.emit();
80856
80899
  }
80857
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ComparePanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
80858
- 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: `
80900
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ComparePanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
80901
+ 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: `
80859
80902
  @if (open() && compareResult(); as result) {
80860
80903
  <div class="pptx-ng-compare">
80861
80904
  <!-- Header -->
@@ -80921,7 +80964,7 @@ class ComparePanelComponent {
80921
80964
  }
80922
80965
  `, 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 });
80923
80966
  }
80924
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ComparePanelComponent, decorators: [{
80967
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ComparePanelComponent, decorators: [{
80925
80968
  type: Component,
80926
80969
  args: [{ selector: 'pptx-compare-panel', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [SlideDiffRowComponent, TranslatePipe, LucideCheck, LucideX], template: `
80927
80970
  @if (open() && compareResult(); as result) {
@@ -81008,8 +81051,8 @@ class EncryptedFileDialogComponent {
81008
81051
  ...(ngDevMode ? [{ debugName: "open" }] : /* istanbul ignore next */ []));
81009
81052
  /** Fired when the dialog is dismissed. */
81010
81053
  close = output();
81011
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EncryptedFileDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
81012
- 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: `
81054
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EncryptedFileDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
81055
+ 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: `
81013
81056
  <pptx-modal-dialog
81014
81057
  [open]="open()"
81015
81058
  [title]="'pptx.encryptedFile.title' | translate"
@@ -81035,7 +81078,7 @@ class EncryptedFileDialogComponent {
81035
81078
  </pptx-modal-dialog>
81036
81079
  `, 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 });
81037
81080
  }
81038
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EncryptedFileDialogComponent, decorators: [{
81081
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EncryptedFileDialogComponent, decorators: [{
81039
81082
  type: Component,
81040
81083
  args: [{ selector: 'pptx-encrypted-file-dialog', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [ModalDialogComponent, TranslatePipe], template: `
81041
81084
  <pptx-modal-dialog
@@ -81142,8 +81185,8 @@ class EquationTemplateGalleryComponent {
81142
81185
  mathml: this.sanitizer.bypassSecurityTrustHtml(latexToMathml(tmpl.latex)),
81143
81186
  i18nKey: TEMPLATE_I18N_KEYS[tmpl.label] ?? tmpl.label,
81144
81187
  }));
81145
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EquationTemplateGalleryComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
81146
- 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: `
81188
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EquationTemplateGalleryComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
81189
+ 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: `
81147
81190
  <div class="pptx-ng-eq-field">
81148
81191
  <h3 class="pptx-ng-eq-templates-title">{{ 'pptx.equation.templates' | translate }}</h3>
81149
81192
  <div class="pptx-ng-eq-grid">
@@ -81163,7 +81206,7 @@ class EquationTemplateGalleryComponent {
81163
81206
  </div>
81164
81207
  `, 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 });
81165
81208
  }
81166
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EquationTemplateGalleryComponent, decorators: [{
81209
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EquationTemplateGalleryComponent, decorators: [{
81167
81210
  type: Component,
81168
81211
  args: [{ selector: 'pptx-equation-template-gallery', standalone: true, imports: [TranslatePipe], changeDetection: ChangeDetectionStrategy.OnPush, template: `
81169
81212
  <div class="pptx-ng-eq-field">
@@ -81275,8 +81318,8 @@ class EquationEditorDialogComponent {
81275
81318
  this.insert.emit(this.omml());
81276
81319
  this.close.emit();
81277
81320
  }
81278
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EquationEditorDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
81279
- 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: `
81321
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EquationEditorDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
81322
+ 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: `
81280
81323
  <pptx-modal-dialog [open]="open()" [title]="dialogTitle() | translate" (close)="close.emit()">
81281
81324
  <div class="pptx-ng-eq">
81282
81325
  <!-- Live preview -->
@@ -81326,7 +81369,7 @@ class EquationEditorDialogComponent {
81326
81369
  </pptx-modal-dialog>
81327
81370
  `, 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 });
81328
81371
  }
81329
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: EquationEditorDialogComponent, decorators: [{
81372
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: EquationEditorDialogComponent, decorators: [{
81330
81373
  type: Component,
81331
81374
  args: [{ selector: 'pptx-equation-editor-dialog', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [ModalDialogComponent, EquationTemplateGalleryComponent, TranslatePipe], template: `
81332
81375
  <pptx-modal-dialog [open]="open()" [title]="dialogTitle() | translate" (close)="close.emit()">
@@ -81448,8 +81491,8 @@ class FontEmbeddingListComponent {
81448
81491
  /** How many used families failed to resolve in the browser. */
81449
81492
  missingCount = input(0, /* @ts-ignore */
81450
81493
  ...(ngDevMode ? [{ debugName: "missingCount" }] : /* istanbul ignore next */ []));
81451
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FontEmbeddingListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
81452
- 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: `
81494
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: FontEmbeddingListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
81495
+ 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: `
81453
81496
  <div class="pptx-ng-fonts-section">
81454
81497
  <h3 class="pptx-ng-fonts-section-title">
81455
81498
  {{ 'pptx.fontEmbedding.usedFonts' | translate: { count: usedFontFamilies().length } }}
@@ -81496,7 +81539,7 @@ class FontEmbeddingListComponent {
81496
81539
  }
81497
81540
  `, 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 });
81498
81541
  }
81499
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FontEmbeddingListComponent, decorators: [{
81542
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: FontEmbeddingListComponent, decorators: [{
81500
81543
  type: Component,
81501
81544
  args: [{ selector: 'pptx-font-embedding-list', standalone: true, imports: [TranslatePipe], changeDetection: ChangeDetectionStrategy.OnPush, host: { class: 'contents' }, template: `
81502
81545
  <div class="pptx-ng-fonts-section">
@@ -81620,8 +81663,8 @@ class FontEmbeddingPanelComponent {
81620
81663
  this.scanning.set(false);
81621
81664
  }
81622
81665
  }
81623
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FontEmbeddingPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
81624
- 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: `
81666
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: FontEmbeddingPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
81667
+ 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: `
81625
81668
  <pptx-modal-dialog
81626
81669
  [open]="open()"
81627
81670
  [title]="'pptx.fontEmbedding.title' | translate"
@@ -81664,7 +81707,7 @@ class FontEmbeddingPanelComponent {
81664
81707
  </pptx-modal-dialog>
81665
81708
  `, 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 });
81666
81709
  }
81667
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: FontEmbeddingPanelComponent, decorators: [{
81710
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: FontEmbeddingPanelComponent, decorators: [{
81668
81711
  type: Component,
81669
81712
  args: [{ selector: 'pptx-font-embedding-panel', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [ModalDialogComponent, FontEmbeddingListComponent, TranslatePipe], template: `
81670
81713
  <pptx-modal-dialog
@@ -81737,8 +81780,8 @@ class KeepAnnotationsDialogComponent {
81737
81780
  keep = output();
81738
81781
  /** Fired when the user discards the annotations (also on dismiss). */
81739
81782
  discard = output();
81740
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: KeepAnnotationsDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
81741
- 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: `
81783
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: KeepAnnotationsDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
81784
+ 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: `
81742
81785
  <pptx-modal-dialog
81743
81786
  [open]="open()"
81744
81787
  [title]="'pptx.keepAnnotations.title' | translate"
@@ -81769,7 +81812,7 @@ class KeepAnnotationsDialogComponent {
81769
81812
  </pptx-modal-dialog>
81770
81813
  `, 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 });
81771
81814
  }
81772
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: KeepAnnotationsDialogComponent, decorators: [{
81815
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: KeepAnnotationsDialogComponent, decorators: [{
81773
81816
  type: Component,
81774
81817
  args: [{ selector: 'pptx-keep-annotations-dialog', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [ModalDialogComponent, TranslatePipe], template: `
81775
81818
  <pptx-modal-dialog
@@ -81899,8 +81942,8 @@ class PasswordStrengthMeterComponent {
81899
81942
  ...(ngDevMode ? [{ debugName: "strengthColor" }] : /* istanbul ignore next */ []));
81900
81943
  strengthLabel = computed(() => this.password() ? getStrengthLabel(this.strength(), this.translate) : '', /* @ts-ignore */
81901
81944
  ...(ngDevMode ? [{ debugName: "strengthLabel" }] : /* istanbul ignore next */ []));
81902
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PasswordStrengthMeterComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
81903
- 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: `
81945
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PasswordStrengthMeterComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
81946
+ 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: `
81904
81947
  @if (password()) {
81905
81948
  <div class="pptx-ng-pw-strength">
81906
81949
  <div class="pptx-ng-pw-bars">
@@ -81916,7 +81959,7 @@ class PasswordStrengthMeterComponent {
81916
81959
  }
81917
81960
  `, 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 });
81918
81961
  }
81919
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PasswordStrengthMeterComponent, decorators: [{
81962
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PasswordStrengthMeterComponent, decorators: [{
81920
81963
  type: Component,
81921
81964
  args: [{ selector: 'pptx-password-strength-meter', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, template: `
81922
81965
  @if (password()) {
@@ -82010,8 +82053,8 @@ class PasswordProtectionDialogComponent {
82010
82053
  this.confirmPassword.set('');
82011
82054
  this.error.set('');
82012
82055
  }
82013
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PasswordProtectionDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
82014
- 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: `
82056
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PasswordProtectionDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
82057
+ 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: `
82015
82058
  <pptx-modal-dialog
82016
82059
  [open]="open()"
82017
82060
  [title]="'pptx.security.protectPresentation' | translate"
@@ -82102,7 +82145,7 @@ class PasswordProtectionDialogComponent {
82102
82145
  </pptx-modal-dialog>
82103
82146
  `, 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 });
82104
82147
  }
82105
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PasswordProtectionDialogComponent, decorators: [{
82148
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PasswordProtectionDialogComponent, decorators: [{
82106
82149
  type: Component,
82107
82150
  args: [{ selector: 'pptx-password-protection-dialog', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [ModalDialogComponent, PasswordStrengthMeterComponent, TranslatePipe], template: `
82108
82151
  <pptx-modal-dialog
@@ -82215,8 +82258,8 @@ class ShowOptionsFieldsetComponent {
82215
82258
  isChecked(event) {
82216
82259
  return event.target.checked;
82217
82260
  }
82218
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ShowOptionsFieldsetComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
82219
- 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: `
82261
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ShowOptionsFieldsetComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
82262
+ 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: `
82220
82263
  <fieldset class="pptx-ng-sss-fieldset">
82221
82264
  <legend class="pptx-ng-sss-legend">{{ 'pptx.slideShow.showOptions' | translate }}</legend>
82222
82265
 
@@ -82262,7 +82305,7 @@ class ShowOptionsFieldsetComponent {
82262
82305
  </fieldset>
82263
82306
  `, 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 });
82264
82307
  }
82265
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ShowOptionsFieldsetComponent, decorators: [{
82308
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ShowOptionsFieldsetComponent, decorators: [{
82266
82309
  type: Component,
82267
82310
  args: [{ selector: 'pptx-show-options-fieldset', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
82268
82311
  <fieldset class="pptx-ng-sss-fieldset">
@@ -82364,8 +82407,8 @@ class ShowSlidesFieldsetComponent {
82364
82407
  onSelectCustomShowId(event) {
82365
82408
  this.patch.emit({ showSlidesCustomShowId: event.target.value });
82366
82409
  }
82367
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ShowSlidesFieldsetComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
82368
- 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: `
82410
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ShowSlidesFieldsetComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
82411
+ 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: `
82369
82412
  <fieldset class="pptx-ng-sss-fieldset">
82370
82413
  <legend class="pptx-ng-sss-legend">{{ 'pptx.slideShow.showSlides' | translate }}</legend>
82371
82414
 
@@ -82451,7 +82494,7 @@ class ShowSlidesFieldsetComponent {
82451
82494
  </fieldset>
82452
82495
  `, 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 });
82453
82496
  }
82454
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ShowSlidesFieldsetComponent, decorators: [{
82497
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ShowSlidesFieldsetComponent, decorators: [{
82455
82498
  type: Component,
82456
82499
  args: [{ selector: 'pptx-show-slides-fieldset', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
82457
82500
  <fieldset class="pptx-ng-sss-fieldset">
@@ -82598,8 +82641,8 @@ class SetUpSlideShowDialogComponent {
82598
82641
  this.save.emit(this.draft());
82599
82642
  this.close.emit();
82600
82643
  }
82601
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SetUpSlideShowDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
82602
- 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: `
82644
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SetUpSlideShowDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
82645
+ 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: `
82603
82646
  <pptx-modal-dialog
82604
82647
  [open]="open()"
82605
82648
  [title]="'pptx.slideShow.setUpTitle' | translate"
@@ -82697,7 +82740,7 @@ class SetUpSlideShowDialogComponent {
82697
82740
  </pptx-modal-dialog>
82698
82741
  `, 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 });
82699
82742
  }
82700
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SetUpSlideShowDialogComponent, decorators: [{
82743
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SetUpSlideShowDialogComponent, decorators: [{
82701
82744
  type: Component,
82702
82745
  args: [{ selector: 'pptx-set-up-slide-show-dialog', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [
82703
82746
  ModalDialogComponent,
@@ -82846,8 +82889,8 @@ class ShortcutPanelComponent {
82846
82889
  close = output();
82847
82890
  /** Static shortcut reference rows. */
82848
82891
  items = SHORTCUT_REFERENCE_ITEMS;
82849
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ShortcutPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
82850
- 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: `
82892
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ShortcutPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
82893
+ 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: `
82851
82894
  @if (open()) {
82852
82895
  <div class="pptx-ng-shortcuts" data-pptx-shortcuts-panel="true">
82853
82896
  <div class="pptx-ng-shortcuts-header">
@@ -82868,7 +82911,7 @@ class ShortcutPanelComponent {
82868
82911
  }
82869
82912
  `, 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 });
82870
82913
  }
82871
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ShortcutPanelComponent, decorators: [{
82914
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ShortcutPanelComponent, decorators: [{
82872
82915
  type: Component,
82873
82916
  args: [{ selector: 'pptx-shortcut-panel', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
82874
82917
  @if (open()) {
@@ -82916,8 +82959,8 @@ class SignatureStrippedDialogComponent {
82916
82959
  confirm = output();
82917
82960
  /** Fired when the user backs out (also on dismiss). */
82918
82961
  cancel = output();
82919
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SignatureStrippedDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
82920
- 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: `
82962
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SignatureStrippedDialogComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
82963
+ 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: `
82921
82964
  <pptx-modal-dialog
82922
82965
  [open]="open()"
82923
82966
  [title]="'pptx.digitalSignatures.strippedTitle' | translate"
@@ -82954,7 +82997,7 @@ class SignatureStrippedDialogComponent {
82954
82997
  </pptx-modal-dialog>
82955
82998
  `, 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 });
82956
82999
  }
82957
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SignatureStrippedDialogComponent, decorators: [{
83000
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SignatureStrippedDialogComponent, decorators: [{
82958
83001
  type: Component,
82959
83002
  args: [{ selector: 'pptx-signature-stripped-dialog', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [ModalDialogComponent, TranslatePipe], template: `
82960
83003
  <pptx-modal-dialog
@@ -83155,8 +83198,8 @@ class VersionHistoryPanelComponent {
83155
83198
  }
83156
83199
  })();
83157
83200
  }
83158
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: VersionHistoryPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
83159
- 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: `
83201
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: VersionHistoryPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
83202
+ 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: `
83160
83203
  @if (open()) {
83161
83204
  <div class="pptx-ng-versions">
83162
83205
  <div class="pptx-ng-versions-header">
@@ -83217,7 +83260,7 @@ class VersionHistoryPanelComponent {
83217
83260
  }
83218
83261
  `, 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 });
83219
83262
  }
83220
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: VersionHistoryPanelComponent, decorators: [{
83263
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: VersionHistoryPanelComponent, decorators: [{
83221
83264
  type: Component,
83222
83265
  args: [{ selector: 'pptx-version-history-panel', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
83223
83266
  @if (open()) {
@@ -83407,8 +83450,8 @@ class ViewerExtraDialogsComponent {
83407
83450
  this.svc.isPasswordProtected.set(false);
83408
83451
  this.svc.showPassword.set(false);
83409
83452
  }
83410
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerExtraDialogsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
83411
- 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: `
83453
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerExtraDialogsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
83454
+ 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: `
83412
83455
  <pptx-equation-editor-dialog
83413
83456
  [open]="svc.showEquation()"
83414
83457
  [existingOmml]="svc.editingEquationOmml()"
@@ -83483,7 +83526,7 @@ class ViewerExtraDialogsComponent {
83483
83526
  />
83484
83527
  `, 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 });
83485
83528
  }
83486
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerExtraDialogsComponent, decorators: [{
83529
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerExtraDialogsComponent, decorators: [{
83487
83530
  type: Component,
83488
83531
  args: [{
83489
83532
  selector: 'pptx-viewer-extra-dialogs',
@@ -83670,10 +83713,10 @@ class ViewerFileIOService {
83670
83713
  }
83671
83714
  })();
83672
83715
  }
83673
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerFileIOService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
83674
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerFileIOService });
83716
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerFileIOService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
83717
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerFileIOService });
83675
83718
  }
83676
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerFileIOService, decorators: [{
83719
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerFileIOService, decorators: [{
83677
83720
  type: Injectable
83678
83721
  }] });
83679
83722
 
@@ -83761,10 +83804,10 @@ class ViewerFindReplaceService {
83761
83804
  this.goTo(results[0].slideIndex);
83762
83805
  }
83763
83806
  }
83764
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerFindReplaceService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
83765
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerFindReplaceService });
83807
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerFindReplaceService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
83808
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerFindReplaceService });
83766
83809
  }
83767
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerFindReplaceService, decorators: [{
83810
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerFindReplaceService, decorators: [{
83768
83811
  type: Injectable
83769
83812
  }] });
83770
83813
 
@@ -83973,10 +84016,10 @@ class ViewerInspectorPanelService {
83973
84016
  this.formatPanelClosed.update((closed) => !closed);
83974
84017
  }
83975
84018
  }
83976
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerInspectorPanelService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
83977
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerInspectorPanelService });
84019
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerInspectorPanelService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
84020
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerInspectorPanelService });
83978
84021
  }
83979
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerInspectorPanelService, decorators: [{
84022
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerInspectorPanelService, decorators: [{
83980
84023
  type: Injectable
83981
84024
  }] });
83982
84025
 
@@ -84107,10 +84150,10 @@ class ViewerKeyboardService {
84107
84150
  break;
84108
84151
  }
84109
84152
  }
84110
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerKeyboardService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
84111
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerKeyboardService });
84153
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerKeyboardService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
84154
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerKeyboardService });
84112
84155
  }
84113
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerKeyboardService, decorators: [{
84156
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerKeyboardService, decorators: [{
84114
84157
  type: Injectable
84115
84158
  }] });
84116
84159
 
@@ -84170,10 +84213,10 @@ class ViewerMobileSheetService {
84170
84213
  this.mobileSheet.set(null);
84171
84214
  this.editor.addElement(host.activeSlideIndex(), newTextElement());
84172
84215
  }
84173
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerMobileSheetService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
84174
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerMobileSheetService });
84216
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerMobileSheetService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
84217
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerMobileSheetService });
84175
84218
  }
84176
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerMobileSheetService, decorators: [{
84219
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerMobileSheetService, decorators: [{
84177
84220
  type: Injectable
84178
84221
  }] });
84179
84222
 
@@ -84281,10 +84324,10 @@ class ViewerPresentationModeService {
84281
84324
  host.promptKeepAnnotations(map);
84282
84325
  }
84283
84326
  }
84284
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerPresentationModeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
84285
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerPresentationModeService });
84327
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerPresentationModeService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
84328
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerPresentationModeService });
84286
84329
  }
84287
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerPresentationModeService, decorators: [{
84330
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerPresentationModeService, decorators: [{
84288
84331
  type: Injectable
84289
84332
  }] });
84290
84333
 
@@ -84334,10 +84377,10 @@ class ViewerThemeGalleryService {
84334
84377
  this.loader.themeColorMap.set(result.themeColorMap);
84335
84378
  this.showThemeGallery.set(false);
84336
84379
  }
84337
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerThemeGalleryService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
84338
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerThemeGalleryService });
84380
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerThemeGalleryService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
84381
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerThemeGalleryService });
84339
84382
  }
84340
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerThemeGalleryService, decorators: [{
84383
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerThemeGalleryService, decorators: [{
84341
84384
  type: Injectable
84342
84385
  }] });
84343
84386
 
@@ -84369,10 +84412,10 @@ class ViewerZoomService {
84369
84412
  zoomReset() {
84370
84413
  this.zoom.set(1);
84371
84414
  }
84372
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerZoomService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
84373
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerZoomService });
84415
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerZoomService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
84416
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerZoomService });
84374
84417
  }
84375
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerZoomService, decorators: [{
84418
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerZoomService, decorators: [{
84376
84419
  type: Injectable
84377
84420
  }] });
84378
84421
 
@@ -84443,10 +84486,10 @@ class ViewerTouchGesturesService {
84443
84486
  this.destroyRef.onDestroy(teardown);
84444
84487
  });
84445
84488
  }
84446
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerTouchGesturesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
84447
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerTouchGesturesService });
84489
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerTouchGesturesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
84490
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerTouchGesturesService });
84448
84491
  }
84449
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: ViewerTouchGesturesService, decorators: [{
84492
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: ViewerTouchGesturesService, decorators: [{
84450
84493
  type: Injectable
84451
84494
  }] });
84452
84495
 
@@ -85359,8 +85402,8 @@ class PowerPointViewerComponent {
85359
85402
  stageElement() {
85360
85403
  return (this.mainEl()?.nativeElement.querySelector('.pptx-ng-canvas-stage') ?? undefined);
85361
85404
  }
85362
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PowerPointViewerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
85363
- 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: [
85405
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PowerPointViewerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
85406
+ 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: [
85364
85407
  LoadContentService,
85365
85408
  ExportService,
85366
85409
  EditorStateService,
@@ -85989,7 +86032,7 @@ class PowerPointViewerComponent {
85989
86032
  </div>
85990
86033
  `, 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 });
85991
86034
  }
85992
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: PowerPointViewerComponent, decorators: [{
86035
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: PowerPointViewerComponent, decorators: [{
85993
86036
  type: Component,
85994
86037
  args: [{
85995
86038
  selector: 'pptx-viewer',
@@ -86769,10 +86812,10 @@ class CommentsService {
86769
86812
  resolveComment(id) {
86770
86813
  return toggleCommentResolvedInList(this.slideComments(), id);
86771
86814
  }
86772
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CommentsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
86773
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CommentsService });
86815
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: CommentsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
86816
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: CommentsService });
86774
86817
  }
86775
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: CommentsService, decorators: [{
86818
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: CommentsService, decorators: [{
86776
86819
  type: Injectable
86777
86820
  }] });
86778
86821
 
@@ -86823,10 +86866,10 @@ class SignaturesService {
86823
86866
  clear() {
86824
86867
  this._signatures.set([]);
86825
86868
  }
86826
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SignaturesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
86827
- static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SignaturesService });
86869
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SignaturesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
86870
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SignaturesService });
86828
86871
  }
86829
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: SignaturesService, decorators: [{
86872
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: SignaturesService, decorators: [{
86830
86873
  type: Injectable
86831
86874
  }] });
86832
86875
 
@@ -86923,8 +86966,8 @@ class AnimationPanelComponent {
86923
86966
  });
86924
86967
  }, /* @ts-ignore */
86925
86968
  ...(ngDevMode ? [{ debugName: "steps" }] : /* istanbul ignore next */ []));
86926
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AnimationPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
86927
- 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: `
86969
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: AnimationPanelComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
86970
+ 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: `
86928
86971
  <div class="pptx-ng-anim-panel">
86929
86972
  <div class="pptx-ng-anim-heading">
86930
86973
  <span>{{ 'pptx.animations.animations' | translate }}</span>
@@ -86992,7 +87035,7 @@ class AnimationPanelComponent {
86992
87035
  </div>
86993
87036
  `, 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 });
86994
87037
  }
86995
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.5", ngImport: i0, type: AnimationPanelComponent, decorators: [{
87038
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "22.0.6", ngImport: i0, type: AnimationPanelComponent, decorators: [{
86996
87039
  type: Component,
86997
87040
  args: [{ selector: 'pptx-animation-panel', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, imports: [TranslatePipe], template: `
86998
87041
  <div class="pptx-ng-anim-panel">