New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

angular-progress-bar

Package Overview
Dependencies
Maintainers
1
Versions
54
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angular-progress-bar

An angular progress-bar

  • 1.0.11
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
1.5K
decreased by-21.06%
Maintainers
1
Weekly downloads
 
Created
Source

Angular Progress Bar

License NPM version

Toc

Introduction

Angular progress bar is a component available from Angular 2, 4, 5, 6 and Ionic 2 and 3, and 4.

This component allow you to manage a progress visually

Online demo

You can find a demo at https://angular-progress-bar-demo.stackblitz.io

Appearance

Basic

Appearence

Grey

Appearence

Installation

Type the following command to install the package:

npm install angular-progress-bar@latest --save

Then you need to import it into your app modules

import {ProgressBarModule} from "angular-progress-bar"

@NgModule({
    imports: [
        ProgressBarModule
    ]
})

How to use

Classic way

By this way, progress property will be the value shown in the progress bar, and color property will be the color displayed

<progress-bar [progress]="100" [color]="'#488aff'">
</progress-bar>

Color degraded way

By this way, progress property will be the value shown in the progress bar, but color-degraded property must be bined ton an object.

This object, must containes a key value made be a string that represent a percent, and the value must be an hexadecimal color

in the example show below, from 0 to 15 percent the color will be #00cbcb then from 16 to 25 percent the color will be #f9c3d3 and then from 25 to the end the color will be #fd8c8e

<progress-bar [progress]="100" [color-degraded]="{'0': '#00cbcb',  '15': '#f9c3d3', '25': '#fd8c8e'}">
</progress-bar>

Keywords

FAQs

Package last updated on 17 Feb 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc