@leanix/components 0.4.789 → 0.4.790
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,9 +1,21 @@
|
|
|
1
1
|
import { ElementRef, EventEmitter, TemplateRef } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export interface DragAndDropListAction {
|
|
4
|
+
/**
|
|
5
|
+
* The id of the action item, must be unique
|
|
6
|
+
*/
|
|
4
7
|
id: string;
|
|
8
|
+
/**
|
|
9
|
+
* The label of the action item
|
|
10
|
+
*/
|
|
5
11
|
label: string;
|
|
12
|
+
/**
|
|
13
|
+
* The SAP icon rendered inside the action button
|
|
14
|
+
*/
|
|
6
15
|
icon: string;
|
|
16
|
+
/**
|
|
17
|
+
* Whether the action button should only be shown if the item receives focus or is being hovered
|
|
18
|
+
*/
|
|
7
19
|
showOnlyOnHover?: boolean;
|
|
8
20
|
}
|
|
9
21
|
export interface DragAndDropListActionEvent {
|