feat(theme,interfaces): Introduce a global theming system and unify menu/tab interfaces; migrate components to use themeDefaultStyles and update APIs accordingly
This commit is contained in:
@@ -1,6 +1,8 @@
|
||||
import type { ITab } from './tab.js';
|
||||
import type { IMenuItem } from './tab.js';
|
||||
|
||||
export interface IMenuGroup {
|
||||
name?: string;
|
||||
tabs: ITab[];
|
||||
name: string;
|
||||
items: IMenuItem[];
|
||||
collapsed?: boolean;
|
||||
iconName?: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user