Skip to content

Releases: alexlafroscia/ember-steps

v2.2.1

15 Oct 01:51
Compare
Choose a tag to compare

v2.2.0

13 Sep 05:54
Compare
Choose a tag to compare

v2.1.0

20 Aug 23:26
Compare
Choose a tag to compare
  • 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

08 Aug 06:59
Compare
Choose a tag to compare
  • Upgrade dependencies

(I meant to make this a minor version but did the publish wrong 🤷‍♂️)

v1.0.0

08 Aug 06:58
Compare
Choose a tag to compare

v0.15.0

09 Jul 04:56
Compare
Choose a tag to compare
  • Upgrade dependencies

v0.14.0

12 May 00:47
Compare
Choose a tag to compare
  • Move away from pod structure, which should fix issues with apps not being able to look up the components correctly.

v0.13.0

06 May 23:17
Compare
Choose a tag to compare
  • 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

10 Nov 22:18
Compare
Choose a tag to compare
  • Add on-entrance and on-exit actions to the step component

Rebranding

15 Oct 04:31
Compare
Choose a tag to compare

The package is now ember-steps instead of ember-wizard, since this name is more accurate and actually available on NPM.