Releases: pzuraq/liquid-wormhole
Releases · pzuraq/liquid-wormhole
Release 3.0.1
🐛 Bug Fix
- #77 Update forked package links (@RobbieTheWagner)
Committers: 1
- Robbie Wagner (@RobbieTheWagner)
Release 3.0.0
💥 Breaking Change
- #75 Ember >= 3.24, node >= 14 (@rwwagner90)
- #72 Update liquid-fire, remove getowner polyfill (@rwwagner90)
- #67 ci: drop support for node 4.x and node 6.x (@alexdiliberto)
🚀 Enhancement
- #74 Add Embroider support (@rwwagner90)
- #73 Various Ember updates (@rwwagner90)
Committers: 2
- Alex DiLiberto (@alexdiliberto)
- Robert Wagner (@rwwagner90)
v2.1.0
v2.0.0-beta.2
See the new documentation for new features and deprecations
v2.0.0-beta.1
Liquid Wormhole v2
Breaking Changes:
- The
to
property is no longer required when usingliquid-wormhole
. By default, new wormholes will now always show and not replace each other. If you want to have the old replacement logic, you can use thestack
property to specify which stack the wormholes belong to, and which they should replace. - Using
explode
for transitions is no longer necessary. You can use standard liquid-fire transitions as if you were animating any other element. - The
target
helper is no longer necessary. You can use standard liquid-fire matchers instead:
this.transition(
this.hasClass('modal')
);
- The
onOpenWormhole
andonCloseWormhole
helpers are no longer necessary. When a wormhole is transitioning to an empty state, thetoValue
will be null. You can do something like this to replaceonOpenWormhole
:
this.transition(
this.toValue(true)
);
- Because the
toValue
andfromValue
may now be null, you may have to guard your matching statements.