Philipp Kursawe

Results 132 issues of Philipp Kursawe

You mentioned into the readme that removing of stores is not supported yet. Do you think it would be difficult to add this? Or does weakmap not support removal of...

enhancement

Would be nice if this lib would auto detect links (http://example.com) and and emails ([email protected]) and convert them to ``.

I'd like this kind of signature to be supported: `getCardById("id", { checklists: "all" })` This could be implemented in a backward compatible way, as a new argument right before the...

The old callback style should not be used anymore in modern RN modules. Refactoring to promise usage should be easy.

### Describe the bug Prompt is not waited for when in non TTY mode but as a pipe target. I'd like to pipe some curl data to a prompt, let...

Is "easy dismiss" a UX pattern in iOS? It is in Windows and Android. So I wonder if it would be possible to add easy dimiss to this plugin. What...

The example claims that items can be any height: https://www.youtube.com/watch?v=dOSp-VckNJU Which is not correct. The items in their styles still use the height property so they have a fixed height....

I'd like to implement an OpenID-Connect refresh logic inside a middleware that adds an Access Token to a request and reacts on 401 responses by fetching a new access token...

I wonder if the usage of lodash/merge is obsolete for the operations most middlewares do here? They usually don't do deep merges so couldn't ```ts return fetch(url, extendedFetch.merge({}, options, {...

I wonder how one could make this a little bit more type-safe by having the middleware actually know the types of the arguments and the supposed return value (`Promose`). I...