interface GridColumnMenuRootProps {
    slotProps?: {
        [key: string]: GridColumnMenuSlotProps;
    };
    slots?: {
        [key: string]: React.JSXElementConstructor<any> | null;
    };
}

Hierarchy (view full)

Properties

Properties

slotProps?: {
    [key: string]: GridColumnMenuSlotProps;
}

Could be used to pass new props or override props specific to a column menu component e.g. displayOrder

slots?: {
    [key: string]: React.JSXElementConstructor<any> | null;
}

slots could be used to add new and (or) override default column menu items If you register a nee component you must pass it's displayOrder in slotProps or it will be placed in the end of the list