@ng-zi/extensions-progress
v0.0.2
Published
Angular Material Extensions for Progress
Downloads
2
Readme
Progress
API reference for Material Extensions Progress
import { MtxProgressModule } from '@ng-zi/extensions/progress';
Directives
MtxProgress
Selector: [mtx-progress]
Exported as: mtxProgress
Properties
| Name | Description |
| :--- | :--- |
| @Input()
type: MtxProgressType \| undefined
| The progress's type. Default is undefined
. |
| @Input()
value: number
| The value of the progress. Default is 0
. |
| @Input()
height: number
| The height of the progress. |
| @Input()
color: string
| The text color of the progress. |
| @Input()
foreground: string
| The bar color of the progress. |
| @Input()
background: string
| The track color of the progress. |
| @Input()
striped: boolean
| Whether to apply the striped class. |
| @Input()
animate: boolean
| Whether to apply the animated class. |
Type aliases
MtxProgressType
type MtxProgressType = 'info' | 'success' | 'warning' | 'danger';