1.0.3 • Published 5 years ago

@bmaxtech/aurelia-loaders v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

aurelia-loaders

This is an aurelia compatible plugin for loading indicators.

How to use aurelia-loaders

install @bmaxtech/aurelia-loaders via npm or yarn

npm i @bmaxtech/aurelia-loaders --save

or

yarn add @bmaxtech/aurelia-loaders

then register plugin with your application

aurelia.use.plugin(PLATFORM.moduleName('@bmaxtech/aurelia-loaders'))

use progress-bar or spinner element within your application

color schemes available for progress-bar and spinner elements
  • #B0BEC5 #B0BEC5 - default
  • #2196F3 #2196F3 - primary
  • #323a45 #323a45 - secondary
  • #64DD17 #64DD17 - success
  • #FFD600 #FFD600 - warning
  • #29B6F6 #29B6F6 - info
  • #ef1c1c #ef1c1c - danger

Usage of progress-bar element

preview

basic usage

<progress-bar progress="50"></progress-bar>

advance usage

  • style-class : string = used for external style configurations | default = ''
  • height : integer = adjust progress bar height | default = 20px
  • progress : integer = current progress | default = 0
  • step : integer = progress bar incrementing step value | default = 10
  • timer : boolean = auto-incrementer, if this is true, the progress bar will be automatically incremented | default = false
  • timer-interval : integer = auto-incrementer interval time in seconds | default = 2500 (2.5s)
  • theme : string = color scheme of the progress bar, value can be primary, secondary, success, info, warning or danger | default = primary
  • on-complete : function = callback function, when auto-incrementer is used, this function will be called when progress gets completed | default = undefined
  • show-value : boolean = show current progress percentage value in progress bar | default = true
<progress-bar style-class="" height="" progress="" step="" timer="" timer-interval="" theme="" on-complete.call="" show-value=""></progress-bar>

Usage of spinner element

common options :

  • type : string = the spinner type, value can be S1 to S14 | default = S1
  • style-class : string = used for external style configurations | default = ''
  • size : integer = the width and height | default : 40
  • color : string = spinner color | default : black
<spinner type="" style-class="" size="" color=""></spinner>

More about Spinners

SpinnerPreviewOptions
S1type: S1, size: 100, color: HEX or RGB value
S2type: S2, size: 100, color: HEX or RGB value
S3type: S3, size: 100, color: HEX or RGB value
S4type: S4, size: 100, color: HEX or RGB value
S5type: S5, size: 100, color: HEX or RGB value
S6type: S6, size: 100, color: HEX or RGB value
S7type: S7, size: 100, color: HEX or RGB value
S8type: S8, size: 100, color: default, primary, secondary, success, warning, info, danger
S9type: S9, size: 100, color: HEX or RGB value
S10type: S10, size: 100, color: default, primary, secondary, success, warning, info, danger
S11type: S11, size: 100, color: default, primary, secondary, success, warning, info, danger
S12type: S12, size: 100, color: HEX or RGB value
S13type: S13, size: 100, color: HEX or RGB value
S14type: S14, size: 100, color: default, primary, secondary, success, warning, info, danger
1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago

0.1.7

5 years ago

0.1.6

5 years ago

0.1.5

5 years ago

0.1.4

5 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago