Skip to content

Releases: observablehq/inputs

v0.7.20

11 Apr 17:21
f727b51
Compare
Choose a tag to compare
  • Fix initial value of Range in Firefox and Chrome. #134

v0.7.19

07 Apr 20:44
3073005
Compare
Choose a tag to compare
  • All inputs now support a locale option; it defaults to English. #79
  • Add formatLocaleAuto; deprecate formatAuto.
  • Add formatLocaleNumber; deprecate formatNumber.

v0.7.18

07 Apr 18:17
42cde52
Compare
Choose a tag to compare
  • Table iterates over as few rows as possible, improving performance. Thanks, @domoritz! #123
  • Table cells are again 22px tall, as intended. #126
  • Table’s scrollbar is attached to narrow tables and only appears when needed. #125
  • Table supports a fixed height option and a maxWidth option. #96 #85
  • Table supports a multiple option, which if false uses radio elements to select one row. #129
  • Range autocorrects invalid values; the validate option is now ignored.
  • Range correctly handles the step and transform options, avoiding floating point madness. #120 #121
  • Range’s format defaults to formatTrim instead of formatNumber to avoid loss of precision.
  • Text validates the value on initialization and set. #111
  • Button supports a required option, allowing the initial value to be undefined. #112
  • Search supports a required option; if true, the value is empty array when empty. #130

v0.7.17

26 Feb 03:26
39ac2be
Compare
Choose a tag to compare
  • Add required = false option to Table to allow empty selection.
  • Button can now be passed an array to create multiple buttons.

v0.7.16

23 Feb 23:36
7af8d04
Compare
Choose a tag to compare
  • Limit Radio and Checkbox to 640px wide, and add some bottom padding to the label.

v0.7.15

23 Feb 06:22
33cd99a
Compare
Choose a tag to compare
  • Add readonly attribute to Text and Textarea. #100

v0.7.14

19 Feb 00:43
6174859
Compare
Choose a tag to compare
  • Fix Text and Textarea to explicitly report validity when validation fails.

v0.7.13

19 Feb 00:26
021ee11
Compare
Choose a tag to compare
  • Add Textarea! #10 Thanks, @Fil!
  • Add a validate option to Range, and only report values when valid. #98
  • Fix synthetic input events to bubble. #99

v0.7.12

11 Feb 16:10
3b333d0
Compare
Choose a tag to compare
  • Fix Range’s step option when min and transform are also present.

v0.7.11

11 Feb 03:57
eb81bf9
Compare
Choose a tag to compare
  • Table now uses an indeterminate “all” checkbox when only some rows are selected.
  • Table now correctly initializes the “all” checkbox when an initial value is specified. #91
  • Range now respects the format option when its value is set. #87
  • Range now correctly handles the step option when a transform is present. #95
  • Select, Radio, and Checkbox now have a smarter default format. #93
  • Add formatAuto.