Revert "[FluentSlider] Use current-value instead of value attribute in web component"#2591
Merged
Revert "[FluentSlider] Use current-value instead of value attribute in web component"#2591
Conversation
…n web co…" This reverts commit 0f6d06a.
|
✅ All tests passed successfully Details on your Workflow / Core Tests page. |
Summary - Unit Tests Code CoverageSummary
CoverageMicrosoft.FluentUI.AspNetCore.Components - 61%
|
dvoituron
requested changes
Aug 29, 2024
dvoituron
approved these changes
Aug 29, 2024
Contributor
|
So, how can I change the value of the FluentSlider externally, rather than just setting its initial value? Let me give an example: I want to change the value of the FluentSilder using the mouse wheel, and also be able to set the value by dragging the FluentSlider. Currently, after dragging it once, the |
Collaborator
Author
|
The slider was/is not intended to work in conjunction with the mouse wheel. You can change the value by clicking/dragging or by keyboard left/right arrows. |
8 tasks
dannyldj
pushed a commit
to dannyldj/fluentui-blazor
that referenced
this pull request
Sep 26, 2024
…n web component" (microsoft#2591) * Revert "[FluentSlider] Use current-value instead of value attribute in web co…" This reverts commit 0f6d06a. * Re-add binding test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Reverts #2438
When using
current-valueinstead ofvalue, on Blazor Server the Slider will get stuck in an update loop when moving the tick around quickly. I've tested which other effects there could be with usingvalueand haven't found any.