Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@daelmaak/ngx-gallery

Package Overview
Dependencies
Maintainers
0
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@daelmaak/ngx-gallery

Ngx Gallery

  • 3.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
352
decreased by-44.91%
Maintainers
0
Weekly downloads
 
Created
Source

Small, performant, responsive, dependency free, easy to use Angular 8+ gallery.

codecov npm version

Showcase | Changelog

Installation

yarn add @daelmaak/ngx-gallery

Versioning

GalleryAngularReadme
3.x.x>=16here
2.x.x>=132.1.0
<=1.x.x>=8 <131.3.0

Usage

import { GalleryComponent } from '@daelmaak/ngx-gallery';

@Component({
  standalone: true,
  imports: [GalleryComponent],
})
export class AppComponent {}

or into your module if you don't use standalone

import { GalleryComponent } from '@daelmaak/ngx-gallery';

@NgModule({
  imports: [GalleryComponent],
})
export class AppModule {}

2. Create an image

import { GalleryItem } from '@daelmaak/ngx-gallery';

@Component({...})
export class AppComponent {
  images: GalleryItem[] = [{ src: 'kitten1.jpg' }]
}
<gallery [items]="images"></gallery>

Local development

yarn
yarn start # start demo app
yarn test

Keywords

FAQs

Package last updated on 16 Nov 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc