Releases: alexlafroscia/ember-steps
Releases · alexlafroscia/ember-steps
v2.2.1
- Fix transition to previous (#80) - @Bartheleway
v2.2.0
- Adding an action to go to the previous step (#77) - @Bartheleway
v2.1.0
-
Add ability to iterate over an array of the step names, like so:
{{#step-manager as |w|}} {{#each w.steps as |step|}} <button {{action w.transition-to step}}> Go to {{step}} </button> {{/each}} {{#w.step name='a'}} <h3>Step A</h3> {{/w.step}} {{#w.step name='b'}} <h3>Step B</h3> {{/w.step}} {{#w.step name='c'}} <h3>Step C</h3> {{/w.step}} {{/step-manager}}
v2.0.0
- Upgrade dependencies
(I meant to make this a minor version but did the publish wrong 🤷♂️)
v1.0.0
- Make the components tagless - #75 @YoranBrondsema
v0.15.0
- Upgrade dependencies
v0.14.0
- Move away from pod structure, which should fix issues with apps not being able to look up the components correctly.
v0.13.0
- Update dependencies
- Remove deprecation warnings about incompatibilities with Ember 2.14
Note: A bunch of tests have been disabled for this release, because Ember no longer plays nicely with using expect().to.throw
in Chai. I'm going to look into a way to fix this, so that those tests can be re-enabled.
v0.12.0
- Add
on-entrance
andon-exit
actions to thestep
component
Rebranding
The package is now ember-steps
instead of ember-wizard
, since this name is more accurate and actually available on NPM.