Skip to content

Latest commit

 

History

History
52 lines (34 loc) · 1.39 KB

CHANGELOG.md

File metadata and controls

52 lines (34 loc) · 1.39 KB

elm-knobs changelog

Details on all elm-knobs releases. The format is roughly based on Keep a Changelog.

1.2.0 (2024-05-04)

Added

  • Knobs for strings: stringInput, stringTextarea.
  • Knob serialization with serialize and readSerialized.
  • A way to customize some aspects of the view using viewWithOptions. This includes the ability to not have the panel stuck to a corner.
  • Interactive documentation.
  • A serialization example using the Web Storage API.
  • Unit tests for all knobs.

Fixed

  • Incorrect input in some knobs resulted in the last correct value. Now it results in the initial value.

Other

1.1.0 (2023-07-16)

Added

  • Knobs: boolCheckbox, select, colorPicker.
  • A way to transform knobs (map.)
  • A way to create your own custom knob (custom.)
  • This changelog.

Fixed

  • Fix style leak for <input type="range"> sibling elements.

1.0.0 (2023-04-30)

Added

  • Knobs: float, floatConstrained, floatSlider, int, intConstrained, intSlider.
  • A way to render knobs (view, style.)
  • A way to get the value out of a knob (value.)
  • A way to compose knobs (compose, stack.)
  • A way to organize knobs (label, stackLabel.)