@leanix/components 0.4.731 → 0.4.732
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,6 +1,9 @@
|
|
|
1
1
|
import { EventEmitter, Signal } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class EmptyStateComponent {
|
|
4
|
+
/**
|
|
5
|
+
* The title to be displayed
|
|
6
|
+
*/
|
|
4
7
|
title: import("@angular/core").InputSignal<string>;
|
|
5
8
|
/**
|
|
6
9
|
* The SAP icon to show in the empty state.
|
|
@@ -8,18 +11,52 @@ export declare class EmptyStateComponent {
|
|
|
8
11
|
* **Important:** Font Awesome icons are not supported anymore.
|
|
9
12
|
*/
|
|
10
13
|
icon: import("@angular/core").InputSignal<string | undefined>;
|
|
14
|
+
/**
|
|
15
|
+
* The main call-to-action button label
|
|
16
|
+
*/
|
|
11
17
|
buttonLabel: import("@angular/core").InputSignal<string | undefined>;
|
|
18
|
+
/**
|
|
19
|
+
* The secondary call-to-action button label
|
|
20
|
+
*/
|
|
12
21
|
secondaryButtonLabel: import("@angular/core").InputSignal<string | undefined>;
|
|
22
|
+
/**
|
|
23
|
+
* Whether the empty state is in a loading state. If true, main call-to-action button will show a spinner
|
|
24
|
+
*/
|
|
13
25
|
loading: import("@angular/core").InputSignal<boolean>;
|
|
26
|
+
/**
|
|
27
|
+
* The more link label
|
|
28
|
+
*/
|
|
14
29
|
moreLinkLabel: import("@angular/core").InputSignal<string | undefined>;
|
|
30
|
+
/**
|
|
31
|
+
* The URL of the more link
|
|
32
|
+
*/
|
|
15
33
|
moreLink: import("@angular/core").InputSignal<string | string[] | undefined>;
|
|
34
|
+
/**
|
|
35
|
+
* Whether the more link should be opened in a new tab
|
|
36
|
+
*
|
|
37
|
+
* @default true
|
|
38
|
+
*/
|
|
16
39
|
openMoreLinkInNewTab: import("@angular/core").InputSignal<boolean>;
|
|
40
|
+
/**
|
|
41
|
+
* The size of the empty state
|
|
42
|
+
*
|
|
43
|
+
* @default medium
|
|
44
|
+
*/
|
|
17
45
|
size: import("@angular/core").InputSignal<"small" | "medium">;
|
|
18
|
-
useRouterLink: Signal<boolean>;
|
|
46
|
+
protected useRouterLink: Signal<boolean>;
|
|
19
47
|
protected readonly iconName: Signal<string | null>;
|
|
20
|
-
get _size(): "small" | "medium";
|
|
48
|
+
protected get _size(): "small" | "medium";
|
|
49
|
+
/**
|
|
50
|
+
* Emitted when the main call-to-action button is clicked
|
|
51
|
+
*/
|
|
21
52
|
buttonClicked: EventEmitter<MouseEvent>;
|
|
53
|
+
/**
|
|
54
|
+
* Emitted when the secondary call-to-action button is clicked
|
|
55
|
+
*/
|
|
22
56
|
secondaryButtonClicked: EventEmitter<MouseEvent>;
|
|
57
|
+
/**
|
|
58
|
+
* Emitted when the more link is clicked
|
|
59
|
+
*/
|
|
23
60
|
moreLinkClicked: EventEmitter<MouseEvent>;
|
|
24
61
|
static ɵfac: i0.ɵɵFactoryDeclaration<EmptyStateComponent, never>;
|
|
25
62
|
static ɵcmp: i0.ɵɵComponentDeclaration<EmptyStateComponent, "lx-empty-state", never, { "title": { "alias": "title"; "required": true; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "buttonLabel": { "alias": "buttonLabel"; "required": false; "isSignal": true; }; "secondaryButtonLabel": { "alias": "secondaryButtonLabel"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "moreLinkLabel": { "alias": "moreLinkLabel"; "required": false; "isSignal": true; }; "moreLink": { "alias": "moreLink"; "required": false; "isSignal": true; }; "openMoreLinkInNewTab": { "alias": "openMoreLinkInNewTab"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, { "buttonClicked": "buttonClicked"; "secondaryButtonClicked": "secondaryButtonClicked"; "moreLinkClicked": "moreLinkClicked"; }, never, ["*"], true, never>;
|