-
Notifications
You must be signed in to change notification settings - Fork 34
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I really like the generalization of FRP component! However there are some solutions in the code I don't quite understand (and probably should be documented).
Co-authored-by: Adam Obuchowicz <adam.obuchowicz@luna-lang.org>
…the example prelude.
Co-authored-by: Adam Obuchowicz <adam.obuchowicz@luna-lang.org>
# Conflicts: # CHANGELOG.md
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- This looks absolutely stunning!
- I'm surprised of how much code is there!
- I'm not sure the proposed generalization is the right one (I explained in the comment) - Ill think about it.
- After watching the video 100 times (because I love it), I started missing one thing - a visual indicator on double range slider (maybe we should put it on other as well) - tell ing me "if you press, only right side will move) - something like highlight of the right edge, or the whole slider when moving mouse around. Would it be hard to add such an indicator ?
@@ -0,0 +1,134 @@ | |||
use crate::prelude::*; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no docs. Please check config why error was not emitted here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are no errors here (and in the other places noted) because none of this is public. All of this are utility modules that are not exposed as part of the selector
module. So, they are public
only within the selector
module, but not outside it, and thus they are counted as not public.
# Conflicts: # src/rust/Cargo.lock
Pull Request Description
Implements UI components for selecting number and a range of numbers according to #1199.
Peek.2021-04-26.09-45.mp4
Important Notes
?entry=slider
. Shows a number of different possible configurations.Component
struct as a general building block for Frp/Model-based UI components.Checklist
Please include the following checklist in your PR:
CHANGELOG.md
was updated with the changes introduced in this PR.All code has automatic tests where possible.All code has been manually tested in the IDE.