0.0.8 • Published 6 years ago

ember-multi-step v0.0.8

Weekly downloads
9
License
MIT
Repository
github
Last release
6 years ago

ember-multi-step

This addon provides a multi step container similar to the ones used by multistep forms. This exposes a simple component structure that allows for breaking up something into steps or smaller parts.

It aims to work well with things like forms, applications, and provides a simple css structure that can be easily customized.

Options

stepTotal - number of total steps desired

changeStep - optional custom changeStep actions

step - property defined on component/controller that allows observing the step property

Example Usage

{{#multi-step step=step stepTotal=4 changeStep=(action 'changeStep')}}
  {{#single-step step=step num=1}}
    content 1
  {{/single-step}}
  {{#single-step step=step num=2}}
    content 2
  {{/single-step}}
  {{#single-step step=step num=3}}
    content 3
  {{/single-step}}
  {{#single-step step=step num=4}}
    content 4
  {{/single-step}}
{{/multi-step}}

Installation

  • ember install ember-multi-step - That's it

Running

Running Tests

  • npm test (Runs ember try:each to test your addon against multiple Ember versions)
  • ember test
  • ember test --server

Building

  • ember build

For more information on using ember-cli, visit https://ember-cli.com/.

0.0.8

6 years ago

0.0.7

7 years ago

0.0.6

7 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago