All Versions
12
Latest Version
Avg Release Cycle
16 days
Latest Release
1270 days ago

Changelog History
Page 1

  • v2.7.3 Changes

    October 27, 2020

    ๐Ÿ›  Fixed

    • Nested transitions wrapped with parent x-shows were being abruptly ended if the transitions were interrupted #853
  • v2.7.2 Changes

    October 22, 2020

    ๐Ÿ›  Fixed

    • Regression where x-for when used with an array of a single number caused issues #840
  • v2.7.1 Changes

    October 20, 2020

    โž• Added

    • ๐Ÿ‘ .$watch now supports watching magic properties #767

    ๐Ÿ›  Fixed

    • Checkboxes using x-model were checking for strict equality which causes bugs with arrays containing a mix of strings and integers. Now using loose-equality check #815
    • ๐Ÿ‘ x-spread didn't support "leave" transition directives #802
    • ๐Ÿ‘ magic properties now support IE11 #771
    • Checkboxes with non-boolean :value bindings were being treated as booleans (for example the integer "0") #770
    • ๐Ÿ›  x-for="i in 10" currently works (looping a range 1-10), however x-for="i in count" (if count were 10) didn't - fixed now #761
  • v2.7.0 Changes

    September 09, 2020

    โž• Added

    • โž• Adds support for ranges in x-for: x-for="i in 10" #748

    ๐Ÿ›  Fixed

    • โš  IE11 was getting "multiple root in x-for" warnings #715
    • ๐Ÿ‘ $watch() now supports array mutations (like push, pop, etc...) #719
    • x-text wasn't working on SVG elements because we were using .innerText and not .textContent #736
  • v2.6.0 Changes

    August 14, 2020

    โž• Added

    • ๐Ÿ‘Œ Support for await inside event handlers. (Now run in an async context) #705

    ๐Ÿ›  Fixed

    • ๐Ÿ‘Œ Support .camel modifier for namespaced events: x-on:ns:event-name.camel.window="foo = 'bob'" #664
    • ๐Ÿ‘ Allow numbers in bound attributes (helpful for SVG properties like x1) #667
  • v2.5.0 Changes

    July 20, 2020

    โž• Added

    • โž• Added .camel modifier to allow binding to events and properties using kebab-case but converting them to camelCase before binding. For example: x-on.some-event.camel will listen for an event called "someEvent". #597
    • โž• Added .passive event listener modifier to increase scroll performance. (forces browsers to not block scrolling for event handlers) #619

    ๐Ÿ›  Fixed

    • ๐Ÿ›  Fix a bunch of little transition bugs. #623
    • Pass an $event object to event handlers bound with x-spread. #636
    • ๐Ÿ’… Force a consistent order of processing for x-show and x-model to prioritize them over manual :style bindings #659
  • v2.4.1 Changes

    June 21, 2020

    ๐Ÿ›  Fixed

    • ๐Ÿ”„ Changes introduced by #543 caused regressions in x-show within x-for directives. It has been reverted.
  • v2.4.0 Changes

    June 18, 2020

    โž• Added

    • x-spread directive (Allows you to bind an element to an object of Alpine directives and they will be "applied" (similar to x-bind="{}" in Vue)) #515
    • Now if one Alpine component on a page breaks, the others still work #447
    • You can now access $el from an x-data expression #479
    • โž• Add support for animations in x-transition directives #498
    • ๐Ÿ‘ x-model.number is now supported for checkbox arrays (all items will be cast to a numeric value) #558

    ๐Ÿ›  Fixed

    • $nextTick now waits until a transition is completely started (an extra tick) until being called #555
    • Because attributes are ALWAYS set in Alpine, some elements like "" were being interupted. Now only if the attribute has CHANGED will it be set #550
    • ๐Ÿ‘ If transitions are toggled too fast, there would be race conditions. Now overlapping transitions is supported (the previous transition is finished first before the next one is applied) #543
    • ๐Ÿ‘ Allow nested components to be moved around the DOM and not be re-initialized #449
    • 0๏ธโƒฃ Checkboxes were being checked by default if a value binding was present #462
    • Expressions that use a "result" variable were running into a conflict with Alpine's built-in result variable. "result" is freed up now #505
  • v2.3.5 Changes

    May 15, 2020

    ๐Ÿ›  Fixed

    • ๐Ÿ›  Elements with x-transition:leave-* and no enter transition were being "shown" one tick after $nextTick, even though there is no transition for them. This is fixed. #492
  • v2.3.4 Changes

    May 15, 2020

    ๐Ÿ›  Fixed

    • ๐Ÿ›  x-on on an x-fored element wasn't being registered, fixed now: #418
    • ๐Ÿ›  Fix cursor placement bug on Safari (back out old fixing strategy) #424
    • Ignore extra whitespace in :class="{...}" bindings #437
    • Mirror VueJS's behavior for binding false/null/undefined values to attributes #486