
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
angular-gallery-slider
Advanced tools
angular-gallery-slider is available via npm
Using npm:
$ npm install angular-gallery-slider
Import AngularGallerySliderModule and BrowserAnimationsModule in the root module(AppModule):
import { BrowserAnimationsModule } from "@angular/platform-browser/animations";
import { AngularGallerySliderModule } from 'angular-gallery-slider';
@NgModule({
imports: [
// ...
BrowserAnimationsModule,
AngularGallerySliderModule
],
})
export class AppModule {}
Template usage example
It is possible to customize slider image using templating. The ngTemplate receives the item as the implicit variable. preview template is used for displaying preview image. item template is used to displaying the slider image item.
<gl-gallery [value]="data" [itemSize]="5">
<ng-template template="preview" let-data>
<img src="{{ data.previewImageSource }}" alt="preview"/>
</ng-template>
<ng-template template="item" let-data>
<img src="{{ data.imageSource }}" alt="image" style="block-size: 100px; inline-size: 100px;"/>
</ng-template>
</gl-gallery>
angular-gallery-slider is maintained under the Semantic Versioning guidelines. Releases will be numbered with the following format:
<major>.<minor>.<patch>
For more information on SemVer, please visit http://semver.org.
next and prev handlersFAQs
Minimal Angular Gallery Slider
We found that angular-gallery-slider 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.