@m1z23r/ngx-ui 1.1.35 → 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
package/types/m1z23r-ngx-ui.d.ts
CHANGED
|
@@ -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;
|
|
@@ -652,7 +655,7 @@ declare class ButtonComponent implements Loadable {
|
|
|
652
655
|
readonly variant: _angular_core.InputSignal<ButtonVariant>;
|
|
653
656
|
readonly color: _angular_core.InputSignal<ButtonColor>;
|
|
654
657
|
readonly size: _angular_core.InputSignal<ButtonSize>;
|
|
655
|
-
readonly type: _angular_core.InputSignal<"
|
|
658
|
+
readonly type: _angular_core.InputSignal<"reset" | "submit" | "button">;
|
|
656
659
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
657
660
|
readonly loading: _angular_core.InputSignal<boolean>;
|
|
658
661
|
readonly clicked: _angular_core.OutputEmitterRef<MouseEvent>;
|
|
@@ -2001,6 +2004,7 @@ declare class TemplateInputComponent implements OnDestroy, AfterViewInit {
|
|
|
2001
2004
|
/** Computed padding-right based on suffix width */
|
|
2002
2005
|
protected readonly suffixPadding: _angular_core.WritableSignal<number>;
|
|
2003
2006
|
private resizeObserver;
|
|
2007
|
+
private mutationObserver;
|
|
2004
2008
|
private static nextId;
|
|
2005
2009
|
private readonly generatedId;
|
|
2006
2010
|
protected readonly inputId: _angular_core.Signal<string>;
|
|
@@ -2020,7 +2024,7 @@ declare class TemplateInputComponent implements OnDestroy, AfterViewInit {
|
|
|
2020
2024
|
private hideTimer;
|
|
2021
2025
|
constructor(renderer: Renderer2);
|
|
2022
2026
|
ngAfterViewInit(): void;
|
|
2023
|
-
private
|
|
2027
|
+
private setupSuffixObservers;
|
|
2024
2028
|
private updateSuffixPadding;
|
|
2025
2029
|
protected readonly highlightedHtml: _angular_core.Signal<string>;
|
|
2026
2030
|
protected syncScroll(): void;
|