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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@shortcm/linear-progress

v0.43.0

Published

The Material Components for the web linear progress indicator component

Downloads

2

Readme

Linear Progress

The MDC Linear Progress component is a spec-aligned linear progress indicator component adhering to the Material Design progress & activity requirements.

Design & API Documentation

Installation

npm install @material/linear-progress

Usage

<div role="progressbar" class="mdc-linear-progress">
  <div class="mdc-linear-progress__buffering-dots"></div>
  <div class="mdc-linear-progress__buffer"></div>
  <div class="mdc-linear-progress__bar mdc-linear-progress__primary-bar">
    <span class="mdc-linear-progress__bar-inner"></span>
  </div>
  <div class="mdc-linear-progress__bar mdc-linear-progress__secondary-bar">
    <span class="mdc-linear-progress__bar-inner"></span>
  </div>
</div>

CSS Modifiers

The provided modifiers are:

| Class | Description | | --------------------- | ------------------------------------------------------- | | mdc-linear-progress--indeterminate | Puts the linear progress indicator in an indeterminate state. | | mdc-linear-progress--reversed | Reverses the direction of the linear progress indicator. | | mdc-linear-progress--closed | Hides the linear progress indicator. |

Sass Mixins

Mixin | Description --- | --- mdc-linear-progress-bar-color($color) | Sets the color of the progress bar mdc-linear-progress-buffer-color($color) | Sets the color of the buffer bar and dots

Using the Foundation Class

MDC Linear Progress ships with an MDCLinearProgressFoundation class that external frameworks and libraries can use to integrate the component. As with all foundation classes, an adapter object must be provided. The adapter for linear progress must provide the following functions, with correct signatures:

| Method Signature | Description | | --- | --- | | addClass(className: string) => void | Adds a class to the root element. | | removeClass(className: string) => void | Removes a class from the root element. | | hasClass(className: string) => boolean | Returns boolean indicating whether the root element has a given class. | | getPrimaryBar() => Element | Returns the primary bar element. | | getBuffer() => Element | Returns the buffer element. | | setStyle(el: Element, styleProperty: string, value: string) => void | Sets the inline style on the given element. |

MDCLinearProgressFoundation API

MDC Linear Progress Foundation exposes the following methods:

| Method Signature | Description | | --- | --- | | setDeterminate(value: boolean) => void | Toggles the component between the determinate and indeterminate state. | | setProgress(value: number) => void | Sets the progress bar to this value. Value should be between [0, 1]. | | setBuffer(value: number) => void | Sets the buffer bar to this value. Value should be between [0, 1]. | | setReverse(value: boolean) => void | Reverses the direction of the linear progress indicator. | | open() => void | Puts the component in the open state. | | close() => void | Puts the component in the closed state. |

MDCLinearProgress API

MDC Linear Progress exposes the following methods:

| Method Signature | Description | | --- | --- | | set determinate(value: boolean) => void | Toggles the component between the determinate and indeterminate state. | | set progress(value: number) => void | Sets the progress bar to this value. Value should be between [0, 1]. | | set buffer(value: number) => void | Sets the buffer bar to this value. Value should be between [0, 1]. | | set reverse(value: boolean) => void | Reverses the direction of the linear progress indicator. | | open() => void | Puts the component in the open state. | | close() => void | Puts the component in the closed state. |