Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@alexlafroscia/ember-wizard
Advanced tools
“Pay no attention to the man behind the curtain!”
ember install @alexlafroscia/ember-wizard
Using ember-wizard
starts with creating a step-manager
{{#step-manager as |w|}}
We'll put some cool stuff in here in a moment
{{/step-manager}}
Cool, right? Ehh, it doesn't do much yet -- we need to add some steps
{{#step-manager as |w|}}
{{#w.step name='a'}}
This is the first step!
{{/w.step}}
{{#w.step name='b'}}
This is the second step!
{{/w.step}}
{{/step-manager}}
As you may have guessed, the first w.step
component, a
, will be visible initially, and b
will be invisible. Note that these names are important. Why? Because we need a way to transition between them!
{{#step-manager as |w|}}
{{#w.step name='a'}}
This is the first step!
<button {{action w.transition-to 'b'}}>
Next, please!
</button>
{{/w.step}}
{{#w.step name='b'}}
This is the second step!
<button {{action w.transition-to 'a'}}>
Wait, go back!
</button>
{{/w.step}}
{{/step-manager}}
The step-manager
provides a closure action that can be called with the name of a step to show that one, instead. One of the neat features of ember-wizard
is that there is no explicit order to the steps; show all of them, or only some. It's entirely up to you.
The above examples show the basic idea, but there's more configuration (and power) available if you need it. Head over to the wiki to read more about what ember-wizard
can do!
This addon uses the hash helper, so Ember 2.3.0+ is required.
FAQs
Super Simple Series of Steps
The npm package @alexlafroscia/ember-wizard receives a total of 1 weekly downloads. As such, @alexlafroscia/ember-wizard popularity was classified as not popular.
We found that @alexlafroscia/ember-wizard demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.