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

@m3e/progress-indicator

v1.2.2

Published

Progress Indicator for M3E

Readme

@m3e/progress-indicator

The m3e-linear-progress-indicator and m3e-circular-progress-indicator components provide accessible, animated progress indicators for tracking the completion of tasks or processes. Both components support multiple modes and are fully customizable via CSS custom properties.

This package is part of M3E monorepo, a unified suite of Material 3 web components. Explore the docs to see them in action.

📦 Installation

npm install @m3e/progress-indicator

💻 Editor Integration

This package includes a Custom Elements Manifest to support enhanced editor tooling and developer experience.

Visual Studio Code

To enable autocomplete and hover documentation for @m3e/progress-indicator, install the Custom Elements Manifest Language Server extension. It will automatically detect the manifest bundled with this package and surface tag names, attributes, slots, and events in supported files.

Alternately, you can explicitly reference the html-custom-data.json and css-custom-data.json in your workspace settings:

{
  "html.customData": ["./node_modules/@m3e/progress-indicator/dist/html-custom-data.json"],
  "css.customData": ["./node_modules/@m3e/progress-indicator/dist/css-custom-data.json"]
}

🚀 Native Module Support

This package uses JavaScript Modules. To use it directly in a browser without a bundler, use a module script similar to the following.

<script type="module" src="/node_modules/@m3e/progress-indicator/dist/index.js"></script>

In addition, you must use an import map to include dependencies.

<script type="importmap">
  {
    "imports": {
      "lit": "https://cdn.jsdelivr.net/npm/[email protected]/+esm",
      "@m3e/core": "/node_modules/@m3e/core/dist/index.js"
    }
  }
</script>

For production, use index.min.js for faster load times.

🗂️ Elements

  • m3e-linear-progress-indicator — A horizontal bar for indicating progress and activity.
  • m3e-circular-progress-indicator — A circular indicator of progress and activity.

🧪 Example

The following example illustrates determinate progress indicators.

<m3e-linear-progress-indicator value="30"></m3e-linear-progress-indicator>
<m3e-circular-progress-indicator value="30"></m3e-circular-progress-indicator>

The next example illustrates indeterminate progress indicators.

<m3e-linear-progress-indicator mode="indeterminate"></m3e-linear-progress-indicator>
<m3e-circular-progress-indicator indeterminate></m3e-circular-progress-indicator>

📖 API Reference

🗂️ m3e-linear-progress-indicator

This section details the attributes and CSS custom properties available for the m3e-linear-progress-indicator component.

⚙️ Attributes

| Attribute | Type | Default | Description | | ------------ | --------------------------------------------------------- | --------------- | -------------------------------------------------------------------- | | buffer-value | number | 0 | A fractional value, between 0 and max, indicating buffer progress. | | max | number | 100 | The maximum progress value. | | mode | "determinate" \| "indeterminate" \| "buffer" \| "query" | "determinate" | The mode of the progress bar. | | value | number | 0 | A fractional value, between 0 and max, indicating progress. |

🎛️ CSS Custom Properties

| Property | Description | | --------------------------------------------------------------- | ----------------------------------------------------- | | --m3e-linear-progress-indicator-thickness | Thickness (height) of the progress bar. | | --m3e-linear-progress-indicator-shape | Border radius of the progress bar. | | --m3e-progress-indicator-track-color | Track color of the progress bar (background/buffer). | | --m3e-progress-indicator-color | Color of the progress indicator (foreground). | | --m3e-linear-wavy-progress-indicator-amplitude | Amplitude of the wavy variant. | | --m3e-linear-wavy-progress-indicator-wavelength | Wavelength of the wavy variant. | | --m3e-linear-wavy-indeterminate-progress-indicator-wavelength | Wavelength of the indeterminate/query wavy variant. |

🗂️ m3e-circular-progress-indicator

This section details the attributes, slots, and CSS custom properties available for the m3e-circular-progress-indicator component.

⚙️ Attributes

| Attribute | Type | Default | Description | | ------------- | --------- | ------- | ------------------------------------------------------------------ | | indeterminate | boolean | false | Whether to show something is happening without conveying progress. | | max | number | 100 | The maximum progress value. | | value | number | 0 | A fractional value, between 0 and max, indicating progress. |

🧩 Slots

| Slot | Description | | ----------- | -------------------------------------------------- | | (default) | Renders the content inside the progress indicator. |

🎛️ CSS Custom Properties

| Property | Description | | --------------------------------------------------- | --------------------------------------------------- | | --m3e-circular-flat-progress-indicator-diameter | Diameter of the flat variant. | | --m3e-circular-wavy-progress-indicator-diameter | Diameter of the wavy variant. | | --m3e-circular-wavy-progress-indicator-amplitude | Amplitude of the wavy variant. | | --m3e-circular-wavy-progress-indicator-wavelength | Wavelength of the wavy variant. | | --m3e-circular-progress-indicator-thickness | Thickness of the progress indicator. | | --m3e-progress-indicator-track-color | Track color of the progress indicator (background). | | --m3e-progress-indicator-color | Color of the progress indicator (foreground). |

🤝 Contributing

See the root monorepo CONTRIBUTING.md for guidelines on contributing to this package.

📄 License

This package is licensed under the MIT License.