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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@record-evolution/widget-image

v1.1.17

Published

Webcomponent widget-image following open-wc recommendations

Readme

<widget-image>

A Lit 3.x web component for displaying images with single/multi-image modes, time-based filtering, and responsive grid layouts. Part of the IronFlock widget ecosystem.

screenshot

Installation

npm i @record-evolution/widget-image

Usage

<script type="module">
    import '@record-evolution/widget-image/dist/widget-image.js'
</script>

<widget-image-1.1.15></widget-image-1.1.15>

Note: The version number in the tag name must match the installed package version.

Configuration

Configure the widget by setting the inputData property:

const widget = document.querySelector('widget-image-1.1.15')
widget.inputData = {
    title: 'My Image',
    subTitle: 'Optional subtitle',
    imageUrl: 'https://example.com/image.jpg',
    stretchToFit: false
}

Single Image Mode

Display a single image with optional title and subtitle.

| Option | Type | Description | | -------------- | ------- | --------------------------------------------- | | title | string | Widget title | | subTitle | string | Widget subtitle | | imageUrl | string | URL of the image to display | | useUpload | boolean | Use uploaded image instead of URL | | stretchToFit | boolean | Stretch image to fill container (vs. contain) |

Multi Image Mode

Display multiple images in an optimized grid layout with automatic sizing.

widget.inputData = {
    multiImage: true,
    gap: 12,
    labelFontSize: 14,
    data: [
        { imageUrl: 'https://example.com/img1.jpg', label: 'Image 1', timestamp: 1737417600000 },
        { imageUrl: 'https://example.com/img2.jpg', label: 'Image 2', timestamp: 1737504000000 }
    ]
}

| Option | Type | Description | | --------------- | ------- | ---------------------------------- | | multiImage | boolean | Enable multi-image grid mode | | gap | number | Gap between images in pixels | | labelFontSize | number | Font size for image labels | | data | array | Array of image objects (see below) |

Data Item Properties

| Property | Type | Description | | ----------- | ------ | -------------------------------------- | | imageUrl | string | Image URL | | label | string | Optional label text | | timestamp | number | Unix timestamp (ms) for time filtering |

Time-Based Filtering

Filter images by time range (useful for IoT dashboards):

widget.timeRange = {
    start: 1737417600000, // Start timestamp (Unix ms)
    end: 1737590400000 // End timestamp (Unix ms)
}

Images without timestamps are always shown. Images with timestamps outside the range are hidden.

Theming

The widget supports theming via CSS custom properties or a theme object:

widget.theme = {
    theme_name: 'dark',
    theme_object: {
        backgroundColor: '#1a1a1a',
        textStyle: { color: '#ffffff' }
    }
}

CSS Custom Properties

widget-image-1.1.15 {
    --re-text-color: #333;
    --re-tile-background-color: #fff;
}

Development

npm start       # Dev server at http://localhost:8000/demo/
npm run build   # Production build to dist/
npm run types   # Regenerate TypeScript types from schema
npm run release # Build, bump version, push, and tag

License

MIT