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

primereact-timeline-progress

v1.0.1

Published

TimelineProgress is a component which indicates progress using PrimeReact's built-in Timeline.

Downloads

8

Readme

🎨  primereact-timeline-progress

TimelineProgress is a custom PrimeReact component which uses the built-in Timeline to indicate progress of a process.
Please see Usage for details.

Live Demo

You can evaluate this package in a ⚡ StackBlitz example available here.

Prerequisites

Use NPM or an equivalent to add this package to your project:

npm i primereact-timeline-progress

Usage

Using TimelineProgress in your JSX code is same as working with the built-in components, for example:

import { TimelineProgress } from 'primereact-timeline-progress';

function App() {
    return <TimelineProgress
        stages={ [ 'Upload your file', 'Confirm your choices', 'Processing', 'Download' ] }
        stage={ 0 }
    />;
}

Properties

|name|is required?|type|default value|description| |---|---|---|---|---| |stages|Yes|array<string> | array<object>|undefined|A list of all stages in your process. Provide an array of strings or objects with a label property (and opposite, optionally).| |stage|No|number|0|Current stage of the process (0-indexed).| |layout|No|string|vertical|Inherited from Timeline. Use either vertical or horizontal.| |align|No|string|left | top|Inherited from Timeline. Available values: alternate, left, right, top, bottom. Default value depends on layout.| |emphasize_current_label|No|boolean|true|Whether to use bold text for the current stage label.| |diminish_opposite|No|boolean|true|Whether to use smaller font size for opposite values.|

Important notes

  • The component's styling depends on selected theme.
  • All properties are strictly checked. If you provide an invalid value, TimelineProgress will try to stop you (see console for errors).
  • TimelineProgress fixes the Timeline's issue with alternate alignment rendering in horizontal layouts (As seen here). There's no need to provide a placeholder opposite value to avoid rendering defects.
  • TimelineProgress removes the opposite side of the Timeline if it's unused. Originally, Timeline leaves a blank div which takes space without any apparent purpose (leading to issues with alignment, for instance).

License

LICENSE.md

Disclaimer

This package is not connected to, affiliated with or endorsed by PrimeTek in any way.

Contact

Please feel free to reach out if you'd like to provide feedback, contribute, or discuss your specific application:

📬 [email protected]