Megabit / Blazorise

Blazorise is a component library built on top of Blazor with support for CSS frameworks like Bootstrap, Tailwind, Bulma, AntDesign, and Material.
https://blazorise.com/
Other
3.31k stars 533 forks source link

ChangeTextOnKeyPress, DelayTextOnKeyPress, DelayTextOnKeyPressInterval #3621

Closed elshorbagy closed 2 years ago

elshorbagy commented 2 years ago

Hello,

I upgraded my Blazorise from 0.9.3.3 to 1.0.1 and after that these 3 properties disappeared: ChangeTextOnKeyPress, DelayTextOnKeyPress, DelayTextOnKeyPressInterval

This is my code public static IServiceCollection AddOpsWorkbenchBlazorise(this IServiceCollection services) { services .AddBlazorise(options => { options.ChangeTextOnKeyPress = false; options.DelayTextOnKeyPress = true; options.DelayTextOnKeyPressInterval = 600; }) .AddMaterialProviders() .AddMaterialIcons(); return services; }

    Any idea how to fix that?

    Thanks
stsrki commented 2 years ago

It seems you have missed out on our migration notes. Look at the https://blazorise.com/news/release-notes/100

They're now named Immediate and Debounce.