RadzenPanelMenuItem MouseEnter event not fired

After update Radzen.Blazor nuget package from version 6.4.0 to 7.0.7, RadzenPanelMenuItem MouseEnter event stopped to be fired as expected.
I've checked in Blazor PanelMenu Component | Free UI Components by Radzen adding the event definition in the component of the parent and children, but neither works

<RadzenPanelMenuItem Text="General" Icon="home" MouseEnter="@(args => OnMouseEnter(args, "Test"))">
<RadzenPanelMenuItem Text="Buttons" Path="buttons" Icon="account_circle" MouseEnter="@(args => OnMouseEnter(args, "Test"))">

void OnMouseEnter(ElementReference elementReference, string text)
{
console.Log($"{text} from on mouse enter");
}

Please check if new 7 version has an issue in this case. In RadzenButton still working fine.