UNPKG

ngx-ui-loader

Version:

An all-in-one and fully customizable loader/spinner for Angular applications. It supports foreground, background spinner/loader, indicative progress bar and multiple loaders.

49 lines (48 loc) 1.45 kB
/** * Available spinner types */ export declare enum SPINNER { ballScaleMultiple = "ball-scale-multiple", ballSpin = "ball-spin", ballSpinClockwise = "ball-spin-clockwise", ballSpinClockwiseFadeRotating = "ball-spin-clockwise-fade-rotating", ballSpinFadeRotating = "ball-spin-fade-rotating", chasingDots = "chasing-dots", circle = "circle", cubeGrid = "cube-grid", doubleBounce = "double-bounce", fadingCircle = "fading-circle", foldingCube = "folding-cube", pulse = "pulse", rectangleBounce = "rectangle-bounce", rectangleBounceParty = "rectangle-bounce-party", rectangleBouncePulseOut = "rectangle-bounce-pulse-out", rectangleBouncePulseOutRapid = "rectangle-bounce-pulse-out-rapid", rotatingPlane = "rotating-plane", squareJellyBox = "square-jelly-box", squareLoader = "square-loader", threeBounce = "three-bounce", threeStrings = "three-strings", wanderingCubes = "wandering-cubes" } /** * Available postions */ export declare enum POSITION { bottomCenter = "bottom-center", bottomLeft = "bottom-left", bottomRight = "bottom-right", centerCenter = "center-center", centerLeft = "center-left", centerRight = "center-right", topCenter = "top-center", topLeft = "top-left", topRight = "top-right" } /** * Progress bar directions */ export declare enum PB_DIRECTION { leftToRight = "ltr", rightToLeft = "rtl" }