Skip to content

Releases: Juicy/juicy-select

Fix: always render caption-text (even with empty opts)

05 Mar 13:06
Compare
Choose a tag to compare

Stretch inner <select> to match juicy-select's width

01 Mar 13:26
Compare
Choose a tag to compare

Bug fix

22 Jan 13:58
Compare
Choose a tag to compare

Mutating options array wasn't reflected to the UI. Now it is. More info in #5.

Bug fixes and added tests

27 Dec 22:41
Compare
Choose a tag to compare
  • Bug fixes:

    • In an attempt to keep value property up-to-date, it used to reset its value property with every change to any of its attributes. And when the element is two-way-data-bound using for example Polymer, these updates were reflected to the model (as in <juicy-select options="{{model.Countries}}" value="{{model.value}}">). This caused updates to have side-effects, especially in an async environment. If you change model.Countries in any way, model.value would be updated unintenionally. Potentially causing data-loss or keeping outdated data after it's due.
    • It didn't remove change event listener from the native <select> element inside it upon detachment. Now it does.
  • Added tests: Now the element has some tests that definetly can be expanded. But are enough to enable CI.

First stable version

29 Sep 12:34
Compare
Choose a tag to compare

Polymer hybrid element version that works both with Polymer 1.9 and Polymer 2.0, with better stability