
Security News
Feross on TBPN: How North Korea Hijacked Axios
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.
imhere-angular-wizard
Advanced tools
Imhere-Angular-wizard is a component that will make it easy for you to create wizards in your app. You can check a running example of the wizard by clicking here
You can download this by:
bower install imhere-angular-wizardnpm install imhere-angular-wizardThe dist folder contains the following files:
Imhere-Angular-wizard depends on Angular.
The first thing we need to do is add a dependency to imhere-angular-wizard module which is called imhere-angular-wizard.
We can do this simply by doing:
angular.module('your-app', ['imhere-angular-wizard']);
Now, in some HTML for a controller, you can just add a wizard as follows:
<imhere-wizard on-finish="app.finish()" >
<div class="row">
<div class="col-md-12">
<imhere-steps-nav>
<imhere-step-btn ng-repeat="step in [1,2,3] track by $index" step-index="$index"></imhere-step-btn>
</imhere-steps-nav>
</div>
<div class="col-md-12">
<imhere-step title="Default step button">
<h1>Default step button</h1>
<p>You have continued here!</p>
<imhere-next>NEXT </imhere-next>
</imhere-step>
<imhere-step title="Step1">
<h1>Step1</h1>
<p>You have continued here!</p>
<imhere-pre>BACK</imhere-pre>
<imhere-next>NEXT</imhere-next>
</imhere-step>
<imhere-step title="Step2">
<h1>Step2</h1>
<p>Click Complete will trigger onFinsh function</p>
<imhere-pre>BACK</imhere-pre>
<imhere-complete>Complete</imhere-complete>
</imhere-step>
<imhere-step-complete>
<h1>Complete!</h1>
<p>display what you want</p>
<imhere-reset>RESET</imhere-reset>
</imhere-step-complete>
</div>
</div>
</imhere-wizard>
This will look like the following when you're in the second step:
Let's go step by step to see how this works.
imhere-wizard directive. This wizard directive, has the following options as attributes:ng-click2)imhere-step, Inside the wizard, we can have as many steps as we want. Each step MUST have a title which is going to be used to identify it. Inside each step, we can put whatever we want. Other directives, bindings, controls, forms, etc. Each step can have the following attributes (we will go into detail on each further below):
FAQs
An Angular wizard component made with Webpack
The npm package imhere-angular-wizard receives a total of 31 weekly downloads. As such, imhere-angular-wizard popularity was classified as not popular.
We found that imhere-angular-wizard demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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 CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.

Security News
OpenSSF has issued a high-severity advisory warning open source developers of an active Slack-based campaign using impersonation to deliver malware.

Research
/Security News
Malicious packages published to npm, PyPI, Go Modules, crates.io, and Packagist impersonate developer tooling to fetch staged malware, steal credentials and wallets, and enable remote access.