@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.
@@ -210,7 +210,7 @@ export interface ButtonProps {
210
210
  tooltip: string;
211
211
  icon: string;
212
212
  disabled: boolean;
213
- path: string;
213
+ path: string | UrlTree;
214
214
  type: ButtonType;
215
215
  size: ButtonSize;
216
216
  }
@@ -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>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stemy/ngx-utils",
3
- "version": "19.9.20",
3
+ "version": "19.9.21",
4
4
  "license": "MIT",
5
5
  "public": true,
6
6
  "repository": "https://github.com/stemyke/ngx-utils.git",