pptx-angular-viewer 1.9.1 → 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.1",
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",
@@ -7373,9 +7373,18 @@ declare class MobileToolbarComponent {
7373
7373
  declare class NotesPanelComponent {
7374
7374
  /** The active slide whose notes are shown / edited. */
7375
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>;
7376
7383
  /** Emits the new plain-text notes on commit. */
7377
7384
  readonly update: _angular_core.OutputEmitterRef<string>;
7378
- 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>;
7379
7388
  protected readonly isRichEnabled: _angular_core.WritableSignal<boolean>;
7380
7389
  protected readonly showLinkPopover: _angular_core.WritableSignal<boolean>;
7381
7390
  protected readonly savedSelectionText: _angular_core.WritableSignal<string>;
@@ -7406,7 +7415,7 @@ declare class NotesPanelComponent {
7406
7415
  toggleRich(): void;
7407
7416
  printNotes(): void;
7408
7417
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<NotesPanelComponent, never>;
7409
- 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>;
7410
7419
  }
7411
7420
 
7412
7421
  /**