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