This is craeted by ng-packagr on Angular6.
npm install angular-simple-step-guideThis is craeted by ng-packagr on Angular6.
```
npm install angular-simple-step-guide --save
#### App Module
`typescript
import {SimpleStepGuideModule} from "angular-simple-step-guide";
@NgModule({
imports: [SimpleStepGuideModule]
})
`
or
#### Shared Module
`typescript
import {SimpleStepGuideModule} from "angular-simple-step-guide";
@NgModule({
imports: [SimpleStepGuideModule],
exports: [SimpleStepGuideModule]
})
`
#### Template
`html`
#### Component Class
`typescript`
guides = [
{id: "elementId", message: "text message."},
...
];
options = {
...
};
|||
-|-
|id|Target element id.|
|message|Display message.|
|||
-|-
|next|"Next" button text.|
|skip|"Skip" button text.|
|complete|"Complete" button text.|
|intercept|Function is called before go to next step.|
|color|Base color. format is only "#xxxxxx".|
|||
-|-
|completed|Output bind, called on Completed.|
```
npm run start
or