pptx-angular-viewer 1.9.0 → 1.10.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pptx-angular-viewer",
3
- "version": "1.9.0",
3
+ "version": "1.10.0",
4
4
  "description": "Angular PowerPoint viewer and editor component: render, edit, and export PPTX slides in the browser.",
5
5
  "keywords": [
6
6
  "angular",
@@ -45,7 +45,7 @@
45
45
  "html2canvas-pro": "^2.0.4",
46
46
  "jspdf": "^4.2.1",
47
47
  "jszip": "^3.10.1",
48
- "pptx-viewer-core": "^1.2.2",
48
+ "pptx-viewer-core": "^1.2.3",
49
49
  "tslib": "^2.8.1"
50
50
  },
51
51
  "peerDependencies": {
@@ -4668,6 +4668,12 @@ declare class PowerPointViewerComponent {
4668
4668
  duplicateElement(elementId: string): string | undefined;
4669
4669
  /** Toggle the Find & Replace panel from the title-bar search button. */
4670
4670
  protected toggleFindReplace(): void;
4671
+ /** Dispatch a command from the title-bar search palette. */
4672
+ protected handleCommandSearch(command: string): void;
4673
+ private dispatchFormatCommand;
4674
+ private dispatchInsertCommand;
4675
+ private dispatchViewCommand;
4676
+ private dispatchArrangeCommand;
4671
4677
  /**
4672
4678
  * Serialise the edited deck (templates merged back) to `.pptx` bytes for an
4673
4679
  * autosave recovery snapshot. Returns null when the deck is read-only so the
@@ -7367,9 +7373,18 @@ declare class MobileToolbarComponent {
7367
7373
  declare class NotesPanelComponent {
7368
7374
  /** The active slide whose notes are shown / edited. */
7369
7375
  readonly slide: _angular_core.InputSignal<PptxSlide | undefined>;
7376
+ /**
7377
+ * Whether the notes body is expanded. When false the panel collapses to just
7378
+ * its header strip (React parity: the notes footer is always present below
7379
+ * the canvas, the body toggles). Host-controlled so the status-bar Notes
7380
+ * button and the header chevron stay in sync.
7381
+ */
7382
+ readonly expanded: _angular_core.InputSignal<boolean>;
7370
7383
  /** Emits the new plain-text notes on commit. */
7371
7384
  readonly update: _angular_core.OutputEmitterRef<string>;
7372
- readonly collapsed: _angular_core.WritableSignal<boolean>;
7385
+ /** Emits when the header strip is clicked to expand / collapse the body. */
7386
+ readonly notesToggle: _angular_core.OutputEmitterRef<void>;
7387
+ readonly collapsed: _angular_core.Signal<boolean>;
7373
7388
  protected readonly isRichEnabled: _angular_core.WritableSignal<boolean>;
7374
7389
  protected readonly showLinkPopover: _angular_core.WritableSignal<boolean>;
7375
7390
  protected readonly savedSelectionText: _angular_core.WritableSignal<string>;
@@ -7400,7 +7415,7 @@ declare class NotesPanelComponent {
7400
7415
  toggleRich(): void;
7401
7416
  printNotes(): void;
7402
7417
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<NotesPanelComponent, never>;
7403
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<NotesPanelComponent, "pptx-notes-panel", never, { "slide": { "alias": "slide"; "required": false; "isSignal": true; }; }, { "update": "update"; }, never, never, true, never>;
7418
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<NotesPanelComponent, "pptx-notes-panel", never, { "slide": { "alias": "slide"; "required": false; "isSignal": true; }; "expanded": { "alias": "expanded"; "required": false; "isSignal": true; }; }, { "update": "update"; "notesToggle": "notesToggle"; }, never, never, true, never>;
7404
7419
  }
7405
7420
 
7406
7421
  /**