hernansartorio / react-nice-dates

A responsive, touch-friendly, and modular date picker library for React.
https://reactnicedates.hernansartorio.com
MIT License
1.1k stars 80 forks source link

Year picker #62

Open X7Becka opened 3 years ago

X7Becka commented 3 years ago

Hi there. How could i choose year when i'm with touch device? As i can see, you blocked input focus (dunno why)

onFocus() {
        inputProps.onFocus();
        setFocused(true);
        if (isTouch) {
            ^^^^^^^
          inputRef.current.blur();
        }
      }

so for now i can only play like cookie-clicker to set something like 2000 and earlier.