Jos de Jong

Results 72 issues of Jos de Jong

The ReasonReact website (https://reasonml.github.io/reason-react/) has the following minimal example on the front page: ```reasonml [@react.component] let make = (~name) => {React.string("Hello!")} ; ``` Here the prop `name` is not actually...

The issue of https://github.com/alex3165/react-mapbox-gl/issues/748 is popping up again in `v5.0.0` and newer (`v5.1.1`). It was fixed in `v4.8.6`. In short: when using React hooks, the `onClick` listener is bound once...

Thanks for writing jump.js, it has a nice API! I have a use case where I would like to scroll not the window as a whole, but the contents of...

enhancement

It is so easy to forget adding a type, making a button be handled as a submit button by default 😅 So: ```html // not good: ... // good: ......

A user of math.js noticed some unexpected behavior when creating a `Fraction`: ```js // works as expected: new Fraction(4.166666666666667) // {s: 1, n: 25, d: 6} // doesn't work as...

I have the following (Kotlin) data class: ```kotlin data class EntityMatch ( val text: String, val value: T?, val start: Int, val end: Int ) ``` Now I have a...

I just installed `[email protected]` via npm, but when I load the library I get the following error: ``` leaflet.label.js:9 Uncaught RangeError: Maximum call stack size exceeded _updateZIndex @ leaflet.label.js:9 _updateZIndex...

I have to find all occurrences of dates in an email: each occurrence and the startIndex and endIndex of the occurrence. I would like to use a human-readable regex builder...

It would be useful in `text` mode show a warning when there are duplicate keys in an object, like in: ``` { "name": "Joe", "age": 32, "name": "Sarah"

enhancement
help wanted