@leanix/components 0.4.445 → 0.4.446

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.
@@ -64,22 +64,28 @@ export declare class ButtonComponent {
64
64
  * The icon name (font-awesome) to display inside the button.
65
65
  * It is displayed before any additional content.
66
66
  *
67
+ * An icon variant can be provided as well, e.g. `fas fa-trash`.
68
+ *
67
69
  * @default undefined
68
70
  * @example
69
71
  * <button lx-button icon="fa-times">Close</button>
70
72
  */
71
73
  readonly icon: import("@angular/core").InputSignal<string | undefined>;
72
74
  protected readonly iconName: import("@angular/core").Signal<string | null>;
75
+ protected readonly iconVariant: import("@angular/core").Signal<string>;
73
76
  /**
74
77
  * The icon name (font-awesome) to display inside the button.
75
78
  * It is displayed after any additional content.
76
79
  *
80
+ * An icon variant can be provided as well, e.g. `fas fa-trash`.
81
+ *
77
82
  * @default undefined
78
83
  * @example
79
84
  * <button lx-button endIcon="fa-times">Close</button>
80
85
  */
81
86
  readonly endIcon: import("@angular/core").InputSignal<string | undefined>;
82
87
  protected readonly endIconName: import("@angular/core").Signal<string | null>;
88
+ protected readonly endIconVariant: import("@angular/core").Signal<string>;
83
89
  /**
84
90
  * This shows a spinner inside the button.
85
91
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@leanix/components",
3
- "version": "0.4.445",
3
+ "version": "0.4.446",
4
4
  "license": "Apache-2.0",
5
5
  "author": "LeanIX GmbH",
6
6
  "repository": {