pptx-angular-viewer 1.1.41 → 1.1.42

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.1.41",
3
+ "version": "1.1.42",
4
4
  "description": "Angular PowerPoint viewer and editor component: render, edit, and export PPTX slides in the browser.",
5
5
  "keywords": [
6
6
  "angular",
@@ -4735,6 +4735,14 @@ declare class InspectorPanelComponent {
4735
4735
  /** Zero-based index of the active slide. */
4736
4736
  readonly slideIndex: _angular_core.InputSignal<number>;
4737
4737
  protected readonly editor: EditorStateService;
4738
+ /** Reactive viewport / pointer flags (drives the bottom-sheet layout). */
4739
+ protected readonly mobile: IsMobileService;
4740
+ /**
4741
+ * Root class list: gains the `is-mobile` modifier under the mobile
4742
+ * breakpoint so the panel becomes a full-width, touch-sized bottom sheet.
4743
+ * See {@link inspectorRootClass}.
4744
+ */
4745
+ protected readonly inspectorClass: _angular_core.Signal<string>;
4738
4746
  /** Alias so the template can call el() without conflicting with Angular internals. */
4739
4747
  protected readonly el: _angular_core.Signal<PptxElement>;
4740
4748
  /**
@@ -5996,6 +6004,13 @@ declare class ModalDialogComponent {
5996
6004
  readonly title: _angular_core.InputSignal<string>;
5997
6005
  /** Fired on backdrop click, the `×` button, and `Escape`. */
5998
6006
  readonly close: _angular_core.OutputEmitterRef<void>;
6007
+ /** Reactive viewport / pointer flags (drives the bottom-sheet layout). */
6008
+ protected readonly mobile: IsMobileService;
6009
+ /**
6010
+ * Panel class list: gains the `is-mobile` bottom-sheet modifier under the
6011
+ * mobile breakpoint. See {@link modalPanelClass}.
6012
+ */
6013
+ protected readonly panelClass: _angular_core.Signal<string>;
5999
6014
  /** Close on `Escape`, regardless of where focus currently sits. */
6000
6015
  onDocumentKeydown(event: KeyboardEvent): void;
6001
6016
  requestClose(): void;
@@ -6227,6 +6242,13 @@ declare class PrintDialogComponent {
6227
6242
  readonly print: _angular_core.OutputEmitterRef<PrintSettings>;
6228
6243
  /** Emits when the dialog is dismissed (Cancel / Escape / backdrop). */
6229
6244
  readonly cancel: _angular_core.OutputEmitterRef<void>;
6245
+ /** Reactive viewport / pointer flags (drives the bottom-sheet layout). */
6246
+ protected readonly mobile: IsMobileService;
6247
+ /**
6248
+ * Dialog class list: gains the `is-mobile` bottom-sheet modifier under the
6249
+ * mobile breakpoint. See {@link printDialogClass}.
6250
+ */
6251
+ protected readonly dialogClass: _angular_core.Signal<string>;
6230
6252
  /** Authoritative print settings, seeded from defaults. */
6231
6253
  readonly settings: _angular_core.WritableSignal<PrintSettings>;
6232
6254
  private _seeded;