npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@shlomoa/mat-image-carousel

v0.1.0

Published

Angular standalone image carousel with Material styling and thumbnail selector.

Readme

@shlomoa/mat-image-carousel

@shlomoa/mat-image-carousel is a standalone Angular component library that delivers a polished, Material-inspired photo carousel with keyboard support, swipe gestures, thumbnail navigation, and optional selection metadata.

The library powers the demo app in this repository and can be installed independently in any Angular >= 17 project.

Installation

npm install @shlomoa/mat-image-carousel

Make sure your project already depends on @angular/material (v20 or newer).

Usage

Import the components you need directly into your standalone component:

import { Component } from '@angular/core';
import { ImageCarouselComponent, SelectionDetailsComponent, CarouselImage } from '@shlomoa/mat-image-carousel';

@Component({
   selector: 'demo-shell',
   imports: [ImageCarouselComponent, SelectionDetailsComponent],
   template: `
      <image-carousel
         [images]="images"
         ariaLabel="Sample trip photos"
         (selectionChange)="selection = $event"
      />

      <selection-details
         [image]="selection?.image ?? null"
         [index]="selection?.index ?? null"
      />
   `,
})
export class DemoShellComponent {
   images: CarouselImage[] = [
      { src: 'https://picsum.photos/id/1015/1200/800', alt: 'Mountain lake' },
      { src: 'https://picsum.photos/id/1025/1200/800', alt: 'Puppy portrait' },
      // ...
   ];

   selection: { index: number; image: CarouselImage } | null = null;
}

Optional exports

  • ImageCarouselComponent: the main carousel with swipe gestures and navigation controls.
  • CarouselSelectorComponent: thumbnail rail with wrap-around navigation.
  • SelectionDetailsComponent: accessible announcement panel for the current selection.
  • UplevelComponent: decorative Material button that emits an activated event.
  • CarouselImage, CarouselSelection: shared TypeScript interfaces.

Building & Testing

From the workspace root:

npm run build:lib   # ng build mat-image-carousel
npm run test        # runs both app and library karma suites

Packaging

Generate a tarball you can sideload into another project:

npm run pack:lib

The command creates dist/mat-image-carousel/shlomoa-mat-image-carousel-<version>.tgz.

Publishing

Publish the library to npm (requires an authenticated npm session):

npm run publish:lib

This script builds the library and publishes the contents of dist/mat-image-carousel/ with access=public.

License

Licensed under the MIT License.