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; }
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; }