Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
ngx-tour-wizard
Advanced tools
A cool Angular 8+ module for intro tours! *ngx-tour-wizard* a highly customizable library. Popper are made with NgxPopperjs.
A cool Angular 8+ module for intro tours! ngx-tour-wizard a highly customizable library. Popper are made with NgxPopperjs.
##IMPORTANT for IE
This library use CustomEvents. If you want compatibility with IE, you should add a polyfill to your app polyfills.ts.
See polyfill on gist
##Styling
As you may know directives don't have a "Styles" property. So it's impossible to let them style your markup, unless you include an external CSS.
For this purpose you can import prebuild themes for ngx-tour-wizard...
...in SASS style, where you can edit variables (it's very straight forward so read the source)
@import "node_modules/ngx-tour-wizard/scss/tour-wizard.scss";
...or in CSS style (and you can always override everything you want)
@import "node_modules/ngx-tour-wizard/css/tour-wizard.css";
Be sure of including at least one of these in your styles.css / styles.scss to get the basic style
$ npm install ngx-tour-wizard@latest
and then from your Angular AppModule
:
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
// Import what you need from ngx-mat-lib
import { NgxTourWizardModule } from 'ngx-tour-wizard';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
// Specify the import
NgxTourWizardModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
You can optionally use the forRoot()
method and pass tourWizardDefaults as follows
// ...
providers: [
NgxTourWizardModule.forRoot({
backdropTarget: ".my-selector",
backdropEnabled: true,
keyboardEnabled: false
})
]
// ...
Once your library is imported, you can use its components, directives and pipes in your Angular application:
<!-- You can now use your library component in app.component.html -->
<h1>
{{title}}
</h1>
<span (click)="startTour()">
Start tour
</span>
<any tourWizardAnchor="FOO_1">MY ANCHOR 1 </any>
<any tourWizardAnchor="FOO_2">MY ANCHOR 2 </any>
<any tourWizardAnchor="FOO_3">MY ANCHOR 3</any>
import { TourWizardService, TourWizardStep } from 'ngx-tour-wizard';
export class MyComponent {
constructor(private _tourWizardService: TourWizardService) {
}
ngOnInit(): void {
this._tourWizardService.initialize([
{
anchorId: "FOO_1",
content: "Some text for FOO 1",
title: "First"
},
{
anchorId: "FOO_2",
content: "Some other stuff for FOO 2",
title: "Second"
},
{
anchorId: "FOO_3",
content: "Let's finish this up!!!",
title: "Third"
},
] as TourWizardStep[]);
}
startTour(): void {
this._tourWizardService.start();
}
}
Versioning ngx-tour-wizard will be maintained under the Semantic Versioning guidelines as much as possible. Releases will be numbered with the following format:
..
And constructed with the following guidelines:
Breaking backward compatibility bumps the major (and resets the minor and patch) New additions, including new icons, without breaking backward compatibility bumps the minor (and resets the patch) Bug fixes, changes to brand logos, and misc changes bumps the patch For more information on SemVer, please visit http://semver.org.
MIT © Tony Samperi
This library is free, open source, and GPL friendly. You can use it for commercial projects, open source projects, or really almost whatever you want.
Attribution is required by MIT, SIL OLF, and CC BY licenses. Downloaded files already contain embedded comments with sufficient attribution, so you shouldn't need to do anything additional when using these files normally.
FAQs
A cool Angular 8+ module for intro tours! *ngx-tour-wizard* a highly customizable library. Popper are made with NgxPopperjs.
The npm package ngx-tour-wizard receives a total of 13 weekly downloads. As such, ngx-tour-wizard popularity was classified as not popular.
We found that ngx-tour-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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.