Philippe Rivière
Philippe Rivière
closes #1694
Currently when you wrap an interactive element in a `div`, maybe for aesthetic reasons, or because you want to add a title, use the `resize` helper, etc., you can't use...
It seems that the vast majority (or even to total number) of clients use "eh" and not "mvp". Should we drop support for mvp altogether? It would make building slightly...
This adds a `dark` or `light` class on the body to reflect the `color-scheme` property set by css. For the rationale: we can't access the `color-scheme` property through css; only...
I often start a deploy, then go do something else while it's building… and forget about it. It's only minutes (or hours later) that I see that the terminal is...
```js const values = [0.9299999999999999, 1.07]; d3.bin().thresholds(500)(values).filter((d) => d.length); ``` this returns: `[[1.07, x0: 1.07, x1: 1.0702]]`; the first value has disappeared.
When displaying a graph, a renderer could (and an editor should) display elements of the graph such as: credit, reference URL, short explanation, long description. It is for example the...
avoids a crash with “ReferenceError: i is not defined”
### What happens? If you type this query into shell.duckdb.org: `SELECT bbox FROM read_json('https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/all_day.geojson');` on Firefox, you get a "failed range request" error. See https://github.com/observablehq/framework/issues/1886 ### To Reproduce Open Firefox...
type assertion using `assert` are deprecated in node [v.22](https://github.com/nodejs/node/releases/tag/v22.0.0); support for `with` was introduced in node [v18.20](https://github.com/nodejs/node/releases/tag/v18.20.0) and [v20.10](https://github.com/nodejs/node/releases/tag/v20.10.0). We can adopt the change and change this in `rollup.config.js`: ```diff...