feat(appui-tabs): add support for left/right tab action buttons and content tab action APIs
This commit is contained in:
@@ -7,3 +7,11 @@ export interface IMenuItem {
|
||||
closeable?: boolean;
|
||||
onClose?: () => void;
|
||||
}
|
||||
|
||||
export interface ITabAction {
|
||||
id: string;
|
||||
iconName: string;
|
||||
action: () => void | Promise<void>;
|
||||
tooltip?: string;
|
||||
disabled?: boolean;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user