Dockview
    Preparing search index...

    Interface IChipContextMenuItemComponentProps

    Props passed to a component menu item rendered in the tab group chip context menu. Mirrors IContextMenuItemComponentProps but carries the tabGroup the chip represents in place of a single panel: a chip spans several panels, so there is no one panel to hand over.

    interface IChipContextMenuItemComponentProps {
        api: DockviewApi;
        close: () => void;
        componentProps?: object;
        group: DockviewGroupPanel;
        tabGroup: ITabGroup;
    }
    Index

    Properties

    close: () => void

    Call to close the context menu

    componentProps?: object
    tabGroup: ITabGroup