Ricky
Ricky
Downgrading to `5.2.1` didn't work for me. [npm/cli#650](https://github.com/npm/cli/issues/650) is for `npm access 2fa-required` returning an error but that command works OK for me and doesn't throw. Could there be something...
Thanks @papb, that solution worked for me, I used `npx` for it rather than editing my current set up. ``` npx https://github.com/pixelastic/np/tarball/c3ab2e3b053c7da0ce40a572ca1616273ac080f8 --no-2fa ``` It would be really good to...
I'm also getting this for the `.storybook` directory, should it be ignored too?
I recently wrote an article detailing the differences between `query-string` and `URLSearchParams`. Not sure if it's in-depth enough but it might be useful? https://dev.to/nerdyman/replacing-query-string-with-native-urlsearchparams-4kdg Edit: There's also a CodeSandbox demo...
Is there a merged fix for this? I'm making an API [JSON API]() compliant but having to manually declare `type` for every response is a hassle.
+1 the feature is really useful but the functionality is frustrating as you now have to guess where the button you really want to click will be. Having a static...
For anyone using hooks, this will ensure the timer gets reset if the user repeatedly clicks on the tooltip trigger after the timer has started. ```tsx const JustTheTip: React.FC =...
Hey @jyotsana-khaparde, we fixed it by adding a `useEffect` to resync the slides when they finish transitioning. I've updated the repro to include the fix, hopefully, it works for your...
Hey @theexplay, thanks for opening the issue! It's not currently possible to reset the position back to the original from the parent due to [how prop updates are handled](https://github.com/nerdyman/react-compare-slider/blob/45f52b3d4bf1a906ba75ea739d9f15091373d8c0/src/ReactCompareSlider.tsx#L186), but...
Hi @acromatica, thanks looking into the accessibility issues! I've been meaning to resolve the attributes for a while but wasn't able to settle on a good solution. Do you know...