Richard Scarrott

Results 78 comments of Richard Scarrott

@vkurchatkin Is there no way for flow to determine the types based on arity?

You can customize the suggestions container (add a footer / header etc.) using the [`renderSuggestionsContainer`](https://github.com/moroshko/react-autosuggest#render-suggestions-container-prop) prop, no need to hack around with sections. e.g.

Funnily enough it can be reproduced on the first example on the react-autosuggest homepage: 1. Focus on basic input 2. Type "C" 2. Click on suggestion container **_border_** (fiddly but...

Ok I've managed to hack in a fix (see line 143 in the codepen -- https://codepen.io/riscarrott/pen/zYdvpYm) Basically I was right to say it's related to `justClickedOnSuggestionsContainer` which is set when...

This is really interesting; I've been adding `node_modules` to webpack externals for years in many many projects and only just run into this issue. Basically you either need to externalise...

Yeah, it would be interesting to hear more about how people are solving this. We built our API gateway using schema stitching ~3 years ago and just blanket namespaced all...

Are PRs for this still welcome or should this issue be closed as won't fix?

@staylor I know this was a while back now but your `hasNextPage` would only work if the total number of items wasn't exactly divisible by the limit? ```js const idxPrefix...

In our platform we verify the access token in our API Gateway and then upstream services merely need to decode the token to read the claims, so this PR would...

My changes have surfaced an issue which also exists in current 2.x whereby a stream tries to write after it's been ended. e.g. ```js const s = _(new Promise((r) =>...