11.0.0 • Published 2 years ago

@logo-software/progress-bar v11.0.0

Weekly downloads
-
License
See license in LI...
Repository
-
Last release
2 years ago

Progress Bar Module

A progress bar shows the user where they are along the steps of their process journey. It comes many features

Click here for demo

Installation

All public npm packages of Logo Software is at https://www.npmjs.com/~logofe. To install Progress Bar Module:

$ npm set registry https://registry.npmjs.org/
$ npm install @logo-software/progress-bar -s

Just import it to your project of @NgModule import section.

import { ProgressBarModule } from '@logo-software/progress-bar';

@NgModule({
  imports: [CommonModule, ProgressBarModule],
})
export class AppModule {
}

Progress Bar Component

Progress Bar visualize task completion status. Add the below code to your code stack and give initializer parameters.

app.component.html

<logo-progress-bar
  [size]="'small'"
  [theme]="'primary'"
  [cssClasses]="'my-logo-progress-bar'"
  [complete]="500"
  [current]="sampleCurrent"
  [isProgress]="false"
  [isInWait]="false"
>
</logo-progress-bar>

For API details, please visit http://design.logo.com.tr/#/docs/components/components-overview