Skip to content

Commit f5693c2

Browse files
author
Thomas Nesser
committed
dist
1 parent e62a433 commit f5693c2

File tree

79 files changed

+9913
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+9913
-0
lines changed

dist/ngx-ui-loader/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CHANGELOG can be seen [here](https://github.com/t-ho/ngx-ui-loader/wiki/Changelog)

dist/ngx-ui-loader/LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) t-ho
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

dist/ngx-ui-loader/README.md

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
[![npm version](https://badge.fury.io/js/ngx-ui-loader.svg)](https://badge.fury.io/js/ngx-ui-loader)
2+
[![demo](https://img.shields.io/badge/demo-StackBlitz-blueviolet.svg)](https://stackblitz.com/edit/ngx-ui-loader)
3+
[![Build Status](https://travis-ci.org/t-ho/ngx-ui-loader.svg?branch=master)](https://travis-ci.org/t-ho/ngx-ui-loader)
4+
[![codecov](https://codecov.io/gh/t-ho/ngx-ui-loader/branch/master/graph/badge.svg)](https://codecov.io/gh/t-ho/ngx-ui-loader)
5+
[![npm](https://img.shields.io/npm/dw/ngx-ui-loader.svg)](https://www.npmjs.com/package/ngx-ui-loader)
6+
[![](https://data.jsdelivr.com/v1/package/npm/ngx-ui-loader/badge?style=rounded)](https://www.jsdelivr.com/package/npm/ngx-ui-loader)
7+
[![npm bundle size (minified + gzip)](https://img.shields.io/bundlephobia/minzip/ngx-ui-loader.svg)](https://bundlephobia.com/result?p=ngx-ui-loader)
8+
[![license](https://img.shields.io/npm/l/ngx-ui-loader.svg)](https://github.com/t-ho/ngx-ui-loader/wiki/License)
9+
10+
# ngx-ui-loader
11+
12+
An all-in-one and fully customizable loader/spinner for Angular 5, 6 and 7+ applications. It supports foreground, background spinner/loader, indicative progress bar and multiple loaders.
13+
14+
[![ngx-ui-loader-demo](https://raw.githubusercontent.com/t-ho/ngx-ui-loader/master/src/assets/multi-loaders.gif)](https://ngx-ui-loader.stackblitz.io/multiloader)
15+
16+
Available spinners:
17+
18+
[![ngx-ui-loader-spinners](https://raw.githubusercontent.com/t-ho/ngx-ui-loader/master/src/assets/available-spinners.gif)](https://ngx-ui-loader.stackblitz.io/spinners)
19+
20+
## Features
21+
* Support **multiple loaders** (>= [email protected]). See [Multiple loaders](https://github.com/t-ho/ngx-ui-loader/wiki/Getting-started#24-multiple-loaders) for more details and [demo here](https://ngx-ui-loader.stackblitz.io/multiloader)
22+
* Show foreground loader with **progress bar**
23+
* The page content can be **blurred/frosted** while showing foreground loader. See [NgxUiLoaderBlurred](https://github.com/t-ho/ngx-ui-loader/wiki/NgxUiLoaderBlurred-directive) directive for more details
24+
* Show loader with different id for different tasks
25+
* Be able to add **logo** and **loading text**
26+
* Be able to change position of spinners, logo and loading text
27+
* Be able to change color and size of logo, spinners and progress bar
28+
* Be able to change the direction of progress bar
29+
* Automatically show loader for router events. See [NgxUiLoaderRouterModule](https://github.com/t-ho/ngx-ui-loader/wiki/Automatically-show-loader-for-router-events) for more details
30+
* Automatically show loader for http requests. See [NgxUiLoaderHttpModule](https://github.com/t-ho/ngx-ui-loader/wiki/Automatically-show-loader-for-Http-requests) for more details
31+
32+
## The full documentation is available at the [wiki page](https://github.com/t-ho/ngx-ui-loader/wiki)
33+
34+
## Demo
35+
36+
Live demo [here](https://ngx-ui-loader.stackblitz.io).
37+
38+
Multiple loaders demo [here](https://ngx-ui-loader.stackblitz.io/multiloader).
39+
40+
Live demo source code [here](https://stackblitz.com/edit/ngx-ui-loader) on Stackblitz.
41+
42+
## Installation
43+
44+
Install `ngx-ui-loader` via NPM, using the command below.
45+
46+
### NPM
47+
48+
```shell
49+
$ npm install --save ngx-ui-loader
50+
```
51+
52+
### Or Yarn
53+
54+
```shell
55+
$ yarn add ngx-ui-loader
56+
```
57+
58+
*Please read [wiki page](https://github.com/t-ho/ngx-ui-loader/wiki) for more instructions*
59+
60+
### * For Angular 4 and 5, please use ngx-ui-loader version 1.2.x
61+
62+
```shell
63+
$ npm install --save [email protected]
64+
```
65+
66+
*The documentation for **v1.2.x** is available [here](https://github.com/t-ho/ngx-ui-loader/blob/v1.x.x/README.md)*
67+
68+
### If you like `ngx-ui-loader`, please give it a :star:

0 commit comments

Comments
 (0)