Renato Ribeiro

Results 32 comments of Renato Ribeiro

I **think** you should use `accept` prop (not sure). But I couldn't make it work here

I figured out that it only happens when you delete the last char when it's only three digits (4+ works) ![cursor-bug-rifm](https://user-images.githubusercontent.com/3277185/104950909-50319c00-59a0-11eb-9a81-1c8b22dc0919.gif)

Surely it makes sense. Actions must not receive any logic. +1

I solved it creating a ref to toggle button and checking it in event target ```js const menuRef = useRef(null) const menuTogglerRef = useRef(null) useOnClickOutside(menuRef, e => { if (!menuTogglerRef.current.contains(e.target))...

+1 I'm getting this audit warning too.

+1 for this feature, would be super useful

Hey @pksjce, why documentaton is unclear to you? I would like to understand the difficulties in order to improve it. Anyway, I can help you to understand too. I can...

@pedronauck can you show me a use case? In all use cases I can think I can solve by just using a debounce/throttle fn. A component might be an overkill...

I got yout point, but I think its more simpler to manage your debounce/throttle by yourself: ```jsx import { Value, Debounce } from 'react-powerplug' {text => ( {({ fn })...