re-com
re-com copied to clipboard
A ClojureScript library of reusable components for Reagent
`:initial-split` only accepts a double or a string. This means that every time the component is re-rendered (say with figwheel), it returns to the hard-coded value. This also prevents the...
Codemirror also uses a keyframe named `blink`. This causes a problem when used with `re-com`.
When determining what key was pressed in keyboard event handlers, we examine various properties: - `which` is used by `drop-down`, `input-text` and `typeahead` - `keyCode` is used by `input-time` Both...
My use case: I need to update my global state on every key-stroke, but I want to trim the input only on blur.
I'm trying to allow for arbitrary strings as well as suggestions from the typeahead list. It's only possible if the arbitrary string is not a substring of any of the...
Required if used inside a popover or scroller for example. This is also required for the typeahead control.
Sorry if this reads as a disjointed rant - its not intended to be. Easiest thing for me is to do a PR with the "fixes" that seem right to...
This is minor but I can't think of any case when the info-button should propagate the click event. Could you add `(.stopPropagation event)` on line 217 or so to info-button's...
When the mouse is released OUTSIDE the component, no mouse event is triggered therefore the component does not set `dragging?` to false and the splitter continues to drag when the...
Thanks for these components! As usual though there is just one more thing that would be a clincher... the ability to upload a file. I know there are a lot...