Kumima
Kumima
I believe your solution should be the only way (Create separate images for Dark and Light Theme). We can only determine the image source of the `ImageButton`, the image is...
After investigation, I can understand it's by design now. But this is still a **very** weird behavior of navigation. If the interactive is not ready, the app is matching `Static...
@javiercn Thanks for the reply. I don't think a runtime repo issue will help. Since I still believe `My guess is Preview5 adds some serialization of Microsoft.AspNetCore.Components.ResourceAsset without all required...
There is another option which is ``````, can they be handled together? Currently with this option on, I did not meet any problem.
@jmprieur , I want to be able to custom those things, and not all of the features of `Microsoft.Identity.Web.UI` is necessary for me, I don't want to rudely depend on...
`Constants.BlazorChallengeUri` this one also should not be hardcoded. It prevents users to provide a custom challenge endpoint.
> > `Constants.BlazorChallengeUri` this one also should not be hardcoded. It prevents users to provide a custom challenge endpoint. > > This looks to be a separate issue, right @Kumima...
This is what I explored, may not precise, just want to discuss. I was wondering about this topic, and I even imagined this before I started. Things can be different...
@habex-ch ```C# internal sealed class DemoRevalidatingAuthenticationStateProvider(ILoggerFactory loggerFactory) : RevalidatingServerAuthenticationStateProvider(loggerFactory) { protected override TimeSpan RevalidationInterval => TimeSpan.FromSeconds(5); protected override Task ValidateAuthenticationStateAsync( AuthenticationState authenticationState, CancellationToken cancellationToken) { // Here comes your custom...
@michiproep That's what the CookieEvents.OnValidPrinciple should do. The OnValidPrinciple only triggers before the Blazor circuits establish, such as you have a fully reload navigation. Once the circuit has been established,...