Releases: pzuraq/liquid-tether
Releases · pzuraq/liquid-tether
Release 3.1.0
Release 3.0.0
💥 Breaking Change
- #85 Require ember 3.28+, liquid-fire 0.37.1+, remove jQuery (@RobbieTheWagner)
🏠 Internal
- #96 Remove ember-source from peerDeps (@RobbieTheWagner)
- #95 Add release-it (@RobbieTheWagner)
Committers: 1
- Robbie Wagner (@RobbieTheWagner)
v2.0.0-beta.2
See the new documentation for new features and deprecations
v2.0.0-beta.1
Liquid Tether v2
Breaking Changes:
- The
toproperty is no longer required when usingliquid-tether. 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 thestackproperty to specify which stack the tethers belong to, and which they should replace. - Using
tetherfor transitions is no longer necessary. You can use standard liquid-fire transitions as if you were animating any other element. - The
targethelper is no longer necessary. You can use standard liquid-fire matchers instead:
this.transition(
this.hasClass('modal')
);- The
onOpenTetherandonCloseTetherhelpers are no longer necessary. When a wormhole is transitioning to an empty state, thetoValuewill be null. You can do something like this to replaceonOpenTether:
this.transition(
this.toValue(true)
);- Because the
toValueandfromValuemay now be null, you may have to guard your matching statements.