Philippe Rivière
Philippe Rivière
closes #1056 (includes #1059)
See https://observablehq.com/@observablehq/plot-band-scale-bug-1045 fixes #1045 Note: this is the least disruptive I could do; but it becomes a bit complicated to understand, as we need to compute what the default margins...
`Plot.plot({ marks: [Plot.barX([{ x: 200, y: " " }], { x: "x", y: "y" })] })` wrongly recognizes the space as a number, then warns about y being numbers.
This would allow to search texts with accents (more generally diacritics) by normalizing everything (input and values) with a common function (besides string.toLowerCase()). Here's a poc https://observablehq.com/@fil/search-normalize; it takes a...
closes #115
closes #136
closes #166 #164 (by "explicit undefined", I mean that the key is present and the value set to undefined. If the key is absent, we leave it as an empty...
in maybeSelection we call valueof on all the values https://github.com/observablehq/inputs/blob/bf525033948bbdda452e65bc06c09a6b42f3b06c/src/chooser.js#L89 This means that we need to instantiate all the values, which 1) means we need to avoid complex calculations (can...