@m1z23r/ngx-ui 1.1.36 → 1.1.37

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": "@m1z23r/ngx-ui",
3
- "version": "1.1.36",
3
+ "version": "1.1.37",
4
4
  "description": "A modern Angular UI component library with themeable components and responsive layout system",
5
5
  "license": "MIT",
6
6
  "author": "m1z23r",
@@ -559,6 +559,8 @@ declare class TabsService {
559
559
  declare class ModalComponent implements OnInit {
560
560
  private readonly dialogRef;
561
561
  private readonly elementRef;
562
+ /** Tracks if mousedown started on the backdrop (to prevent close on drag-out) */
563
+ private readonly mouseDownOnBackdrop;
562
564
  /** Title displayed in the modal header */
563
565
  readonly title: _angular_core.InputSignal<string | undefined>;
564
566
  /** Modal size preset */
@@ -577,6 +579,7 @@ declare class ModalComponent implements OnInit {
577
579
  readonly panelClass: _angular_core.InputSignal<string | undefined>;
578
580
  ngOnInit(): void;
579
581
  onEscapePress(): void;
582
+ onBackdropMouseDown(event: MouseEvent): void;
580
583
  onBackdropClick(event: MouseEvent): void;
581
584
  close(): void;
582
585
  protected containerClasses(): string;