@stemy/ngx-utils 19.9.20 → 19.9.21
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.
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { ElementRef } from "@angular/core";
|
|
2
2
|
import { ButtonProps, ButtonSize, ButtonType } from "../../common-types";
|
|
3
|
+
import { UrlTree } from "@angular/router";
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class BtnComponent {
|
|
5
6
|
readonly label: import("@angular/core").InputSignal<string>;
|
|
6
7
|
readonly tooltip: import("@angular/core").InputSignal<string>;
|
|
7
8
|
readonly icon: import("@angular/core").InputSignal<string>;
|
|
8
9
|
readonly disabled: import("@angular/core").InputSignal<boolean>;
|
|
9
|
-
readonly path: import("@angular/core").InputSignal<string>;
|
|
10
|
+
readonly path: import("@angular/core").InputSignal<string | UrlTree>;
|
|
10
11
|
readonly type: import("@angular/core").InputSignal<ButtonType>;
|
|
11
12
|
readonly size: import("@angular/core").InputSignal<ButtonSize>;
|
|
12
13
|
readonly buttonType: import("@angular/core").Type<ButtonProps>;
|