Arian Valdez
Arian Valdez
Right now, if we want to control the play state of an element, we would have to use the actual DOM element using ref: `this.audioEl.play()` Seeing as this library is...
Sometimes, we want to listen for some events, sometimes not. It would be great if we can pass a map (or an array) of events to watch out for. i.e.:...
Since cytoscape is used by the user of react-cytoscape, it should be a peer dependency. This prevents instances where you get multiple copies of cytoscape. https://github.com/plotly/react-cytoscapejs/issues/21 https://github.com/plotly/react-cytoscapejs/issues/17 As mentioned, by...
The revamp are a bunch of UI/UX changes to make it more consistent, modern, pretty, and presents a simpler onboarding process for wallet creation/restoration. There are still a ton of...
Currently, everything is returned. Can we use `info` to only select the specific columns we want? The main problem is this would load all data which is a problem if...
How can one obtain the payload type of an action? This is useful for typing ie redux-saga: ``` action: typeof actions.specific.payload ```
Right now it seems that it doesn't work if the browser does not support websockets (or users are under a proxy/firewall)
Usecase: Imagine if a dev wanted to download and play the first 10 seconds of an mp4. They can parse the moov box, `seek(0)` and `seek(10)` to get the byte...