Skip to content

v2.1.0

Compare
Choose a tag to compare
@alexlafroscia alexlafroscia released this 20 Aug 23:26
· 824 commits to master since this release
  • 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}}