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/CHANGELOG.md +6 -0
- package/fesm2022/pptx-angular-viewer.mjs +13339 -13527
- package/fesm2022/pptx-angular-viewer.mjs.map +1 -1
- package/package.json +1 -1
- package/types/pptx-angular-viewer.d.ts +11 -2
package/package.json
CHANGED
|
@@ -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
|
-
|
|
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
|
/**
|