An Angular wizard component made with Webpack
npm install imhere-angular-wizard 
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
* Using bower and running bower install imhere-angular-wizard
* Using npm and running npm install imhere-angular-wizard
* Downloading it manually by getting the files from the dist folder
The dist folder contains the following files:
* JS files needed for the directives and services
* CSS files with default styles for the directive
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:
```js``
angular.module('your-app', ['imhere-angular-wizard']);
Now, in some HTML for a controller, you can just add a wizard as follows:
`` You have continued here! You have continued here! Click Complete will trigger onFinsh function display what you wanthtml``
Default step button
Step1
Step2
Complete!
This will look like the following when you're in the second step:

Let's go step by step to see how this works.
1) You need to declare a master imhere-wizard directive. This wizard directive, has the following options as attributes:ng-click
* on-finish: Here you can put a function to be called when the wizard is finished. The syntax here is very similar to
* set-main-color: Here you can set the wizard main color style.
* set-main-hover-Color: Here you can set the wizard buttons hover color style. Default darken(main-color).
2)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):
* title: A unique title used for identifying each step.