Skip to content

Commit bdd85f8

Browse files
author
Steve Hostettler
committed
add new ui
1 parent a33035a commit bdd85f8

File tree

74 files changed

+33380
-29819
lines changed

Some content is hidden

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

74 files changed

+33380
-29819
lines changed

package.json

Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
{
2+
"name": "ngx-admin",
3+
"version": "8.0.0",
4+
"license": "MIT",
5+
"repository": {
6+
"type": "git",
7+
"url": "git+https://github.com/akveo/ngx-admin.git"
8+
},
9+
"bugs": {
10+
"url": "https://github.com/akveo/ngx-admin/issues"
11+
},
12+
"scripts": {
13+
"ng": "ng",
14+
"conventional-changelog": "conventional-changelog",
15+
"start": "ng serve",
16+
"build": "ng build",
17+
"build:prod": "npm run build -- --configuration production --aot",
18+
"test": "ng test",
19+
"test:coverage": "rimraf coverage && npm run test -- --code-coverage",
20+
"lint": "ng lint",
21+
"lint:fix": "ng lint ngx-admin-demo --fix",
22+
"lint:styles": "stylelint ./src/**/*.scss",
23+
"lint:ci": "npm run lint && npm run lint:styles",
24+
"pree2e": "webdriver-manager update --standalone false --gecko false",
25+
"e2e": "ng e2e",
26+
"docs": "compodoc -p src/tsconfig.app.json -d docs",
27+
"docs:serve": "compodoc -p src/tsconfig.app.json -d docs -s",
28+
"prepush": "npm run lint:ci",
29+
"release:changelog": "npm run conventional-changelog -- -p angular -i CHANGELOG.md -s",
30+
"postinstall": "ngcc --properties es2015 es5 browser module main --first-only --create-ivy-entry-points --tsconfig \"./src/tsconfig.app.json\""
31+
},
32+
"dependencies": {
33+
"@akveo/ng2-completer": "^9.0.1",
34+
"@angular/animations": "^12.2.16",
35+
"@angular/cdk": "12.2.12",
36+
"@angular/common": "^12.2.16",
37+
"@angular/compiler": "^12.2.16",
38+
"@angular/core": "^12.2.16",
39+
"@angular/forms": "^12.2.16",
40+
"@angular/platform-browser": "^12.2.16",
41+
"@angular/platform-browser-dynamic": "^12.2.16",
42+
"@angular/router": "^12.2.16",
43+
"@asymmetrik/ngx-leaflet": "3.0.1",
44+
"@nebular/auth": "8.0.0",
45+
"@nebular/eva-icons": "8.0.0",
46+
"@nebular/security": "8.0.0",
47+
"@nebular/theme": "8.0.0",
48+
"@swimlane/ngx-charts": "^20.1.0",
49+
"angular2-chartjs": "0.4.1",
50+
"bootstrap": "4.3.1",
51+
"chart.js": "2.7.1",
52+
"classlist.js": "1.1.20150312",
53+
"clone-deep": "^4.0.1",
54+
"core-js": "2.5.1",
55+
"d3-ease": "^3.0.1",
56+
"echarts": "^4.0.2",
57+
"eva-icons": "^1.1.3",
58+
"geojson": "^0.5.0",
59+
"intl": "1.2.5",
60+
"ionicons": "2.0.1",
61+
"leaflet": "1.2.0",
62+
"nebular-icons": "1.1.0",
63+
"ngx-echarts": "^4.2.2",
64+
"node-sass": "^7.0.1",
65+
"normalize.css": "6.0.0",
66+
"npm": "^8.5.5",
67+
"pace-js": "1.0.2",
68+
"roboto-fontface": "0.8.0",
69+
"rxjs": "6.6.2",
70+
"rxjs-compat": "6.3.0",
71+
"socicon": "3.0.5",
72+
"style-loader": "^1.1.3",
73+
"tinymce": "4.5.7",
74+
"tslib": "^2.1.0",
75+
"typeface-exo": "0.0.22",
76+
"web-animations-js": "^2.3.2",
77+
"zone.js": "~0.11.4"
78+
},
79+
"devDependencies": {
80+
"@angular-devkit/build-angular": "~12.2.16",
81+
"@angular/cli": "^12.2.16",
82+
"@angular/compiler-cli": "^12.2.16",
83+
"@angular/language-service": "12.2.16",
84+
"@compodoc/compodoc": "1.0.1",
85+
"@fortawesome/fontawesome-free": "^5.2.0",
86+
"@types/d3-color": "1.0.5",
87+
"@types/jasminewd2": "2.2.0",
88+
"@types/leaflet": "1.2.3",
89+
"@types/node": "^12.11.1",
90+
"codelyzer": "^6.0.0",
91+
"conventional-changelog-cli": "1.3.4",
92+
"husky": "0.13.3",
93+
"jasmine-core": "~4.0.1",
94+
"jasmine-spec-reporter": "~5.0.0",
95+
"karma": "~6.3.4",
96+
"karma-chrome-launcher": "~3.1.0",
97+
"karma-cli": "1.0.1",
98+
"karma-coverage-istanbul-reporter": "~3.0.2",
99+
"karma-jasmine": "~4.0.0",
100+
"karma-jasmine-html-reporter": "^1.5.0",
101+
"npm-run-all": "4.0.2",
102+
"protractor": "~7.0.0",
103+
"rimraf": "2.6.1",
104+
"stylelint": "7.13.0",
105+
"ts-node": "3.2.2",
106+
"tslint": "~6.1.0",
107+
"typescript": "^4.2.3"
108+
}
109+
}

web-ui/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
<a name="8.0.0"></a>
2+
# [8.0.0](https://github.com/akveo/ngx-admin/compare/v7.0.0...v8.0.0) (2021-10-08)
3+
4+
5+
### Features
6+
7+
* update to Angular 12 ([#5868](https://github.com/akveo/ngx-admin/issues/5868)) ([080830a](https://github.com/akveo/ngx-admin/commit/080830a))
8+
9+
10+
111
<a name="7.0.0"></a>
212
# [7.0.0](https://github.com/akveo/ngx-admin/compare/v6.0.0...v7.0.0) (2021-01-19)
313

web-ui/Dockerfile

Lines changed: 0 additions & 6 deletions
This file was deleted.

web-ui/README.md

Lines changed: 44 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,53 @@
1-
[![Build Status](https://travis-ci.org/akveo/ngx-admin.svg?branch=master)](https://travis-ci.org/akveo/ngx-admin)
2-
[![Join the chat at https://gitter.im/ng2-admin/Lobby](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/ng2-admin/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
3-
[![Dependency Status](https://david-dm.org/akveo/ngx-admin/status.svg)](https://david-dm.org/akveo/ng2-admin)
1+
# ngx-admin [<img src="https://i.imgur.com/oMcxwZ0.png" alt="Eva Design System" height="20px" />](https://eva.design?utm_campaign=eva_design%20-%20home%20-%20ngx_admin%20github%20readme&utm_source=ngx_admin&utm_medium=referral&utm_content=top_status_tile) [![Build Status](https://travis-ci.org/akveo/ngx-admin.svg?branch=master)](https://travis-ci.org/akveo/ngx-admin)
42

5-
[Who uses ngx-admin?](https://github.com/akveo/ngx-admin/issues/1645)| [Documentation](https://akveo.github.io/ngx-admin/?utm_source=github&utm_medium=ngx_admin_readme&utm_campaign=themes) | [Installation Guidelines](https://akveo.github.io/ngx-admin/docs/getting-started/what-is-ngxadmin?utm_source=github&utm_medium=ngx_admin_readme&utm_campaign=themes)
3+
[Who uses ngx-admin?](https://github.com/akveo/ngx-admin/issues/1645)| [Documentation](https://akveo.github.io/ngx-admin?utm_campaign=ngx_admin%20-%20home%20-%20ngx_admin%20github%20readme&utm_source=ngx_admin&utm_medium=referral&utm_content=github_readme_documentation_link) | [Installation Guidelines](https://akveo.github.io/ngx-admin/docs/getting-started/what-is-ngxadmin?utm_campaign=ngx_admin%20-%20home%20-%20ngx_admin%20github%20readme&utm_source=ngx_admin&utm_medium=referral&utm_content=github_readme_installation_guidelines) | [Angular templates](https://www.akveo.com/templates?utm_campaign=services%20-%20github%20-%20templates&utm_source=ngx_admin&utm_medium=referral&utm_content=github%20readme%20top%20angular%20templates%20link)
64

7-
# Admin template based on Angular 7+, Bootstrap 4 and <a href="https://github.com/akveo/nebular">Nebular</a>
8-
<a target="_blank" href="http://akveo.com/ngx-admin/#/pages/dashboard?theme=corporate&utm_source=github&utm_medium=ngx_admin_readme&utm_campaign=main_pic"><img src="https://i.imgur.com/OIL7rt8.png"/></a>
5+
# New! Material theme for ngx-admin
96

7+
Material admin theme is based on the most popular Angular dashboard template - [ngx-admin](https://akveo.github.io/ngx-admin?utm_campaign=ngx_admin%20-%20home%20-%20ngx_admin%20github%20readme&utm_source=ngx_admin_material&utm_medium=referral&utm_content=github_readme)
8+
To use material theme checkout `feat/material-theme` branch.
109

11-
### With 3 stunning visual themes
10+
Get material ngx-admin integrated with backend technology of your choice. [Check out our store](https://store.akveo.com/pages/all-collections?utm_campaign=akveo_store%20-%20all%20bundles%20-%20ngx_admin%20github%20readme&utm_source=ngx_admin&utm_medium=referral%20&utm_content=check_out_our_store).
1211

13-
#### Cosmic
14-
<a target="_blank" href="http://akveo.com/ngx-admin/?theme=cosmic&utm_source=github&utm_medium=ngx_admin_readme&utm_campaign=themes#/pages/dashboard"><img src="https://i.imgur.com/tvAJJhW.png"/></a>
12+
## Key features
1513

16-
#### Corporate
17-
<a target="_blank" href="http://akveo.com/ngx-admin/?theme=corporate&utm_source=github&utm_medium=ngx_admin_readme&utm_campaign=themes#/pages/dashboard"><img src="https://i.imgur.com/wbEtUX4.jpg"/></a>
14+
- The most popular and trusted Angular open source dashboard template is out there. Used by hundreds of thousands developers worldwide and Fortune 500 companies*.
15+
- Over 40+ Angular Components and 60+ Usage Examples. Kick off your project and save money by using ngx-admin.
16+
- Already using ngx-admin and willing to switch to material theme? Material theme is backward-compatible. Check out the article describing how to do that.
17+
- ngx-admin material works perfectly with Angular Material and Nebular. Take the best from both!
1818

19-
#### Light
19+
### To use material theme checkout `feat/material-theme` branch
2020

21-
<a target="_blank" href="http://akveo.com/ngx-admin/?theme=default&utm_source=github&utm_medium=ngx_admin_readme&utm_campaign=themes#/pages/dashboard"><img src="https://i.imgur.com/cb9U34M.jpg"/></a>
21+
# Admin template based on Angular 10+ and <a href="https://github.com/akveo/nebular">Nebular</a>
22+
<a target="_blank" href="https://akveo.com/ngx-admin/pages/dashboard?theme=corporate&utm_campaign=ngx_admin%20-%20demo%20-%20ngx_admin%20github%20readme&utm_source=ngx_admin&utm_medium=referral&utm_content=hero_banner_corporate"><img src="https://i.imgur.com/mFdqvgG.png"/></a>
23+
24+
### UI Bakery
25+
Try low-code internal tool builder for free
26+
<a href="https://uibakery.io/?utm_source=github&utm_medium=clicks&utm_campaign=banner"><img src="https://user-images.githubusercontent.com/6151971/125071660-41f84900-e0c2-11eb-882a-0c675eb1e5e3.png"></a>
27+
28+
[Check out our Store](https://store.akveo.com/pages/all-collections?utm_campaign=akveo_store%20-%20all%20bundles%20-%20ngx_admin%20github%20readme&utm_source=ngx_admin&utm_medium=referral%20&utm_content=check_out_our_store) for ready to use Backend Bundles.
29+
30+
### Templates
31+
<a href="https://www.akveo.com/templates/fleet-management-dashboard?utm_campaign=services%20[…]x-admin%20&utm_medium=referral%20&utm_content=github_banner%20"><img src="https://i.imgur.com/Z8EwGfh.png"></a>
32+
33+
34+
### With 6 stunning visual themes
35+
36+
| <a target="_blank" href="https://www.akveo.com/ngx-admin/pages/dashboard?theme=material-dark&utm_campaign=ngx_admin%20-%20demo%20-%20ngx_admin%20docs&utm_source=ngx_admin&utm_medium=referral&utm_content=ngx_admin_material_themes_material_dark"><img src="https://i.imgur.com/67YAlhf.png"/></a> | <a target="_blank" href="https://www.akveo.com/ngx-admin/pages/dashboard?theme=material-light&utm_campaign=ngx_admin%20-%20demo%20-%20ngx_admin%20docs&utm_source=ngx_admin&utm_medium=referral&utm_content=ngx_admin_material_themes_material_light"><img src="https://i.imgur.com/aQzw0hD.png"/></a> |
37+
| --- | --- |
38+
| Material Dark | Material Light |
39+
40+
| <a target="_blank" href="https://www.akveo.com/ngx-admin/pages/dashboard?theme=dark&utm_campaign=ngx_admin%20-%20demo%20-%20ngx_admin%20github%20readme&utm_source=ngx_admin&utm_medium=referral&utm_content=github_readme_theme_dark"><img src="https://i.imgur.com/9UkTGgr.png"/></a> | <a target="_blank" href="https://akveo.com/ngx-admin/pages/dashboard?theme=default&utm_campaign=ngx_admin%20-%20demo%20-%20ngx_admin%20github%20readme&utm_source=ngx_admin&utm_medium=referral&utm_content=github_readme_theme_default"><img src="https://i.imgur.com/Kn3xDKQ.png"/></a> |
41+
| --- | --- |
42+
| Dark| Default |
43+
44+
| <a target="_blank" href="https://www.akveo.com/ngx-admin/pages/dashboard?theme=cosmic&utm_campaign=ngx_admin%20-%20demo%20-%20ngx_admin%20github%20readme&utm_source=ngx_admin&utm_medium=referral&utm_content=github_readme_theme_cosmic"><img src="https://i.imgur.com/iJu2YDF.png"/></a> | <a target="_blank" href="https://www.akveo.com/ngx-admin/pages/dashboard?theme=corporate&utm_campaign=ngx_admin%20-%20demo%20-%20ngx_admin%20github%20readme&utm_source=ngx_admin&utm_medium=referral&utm_content=github_readme_theme_corporate"><img src="https://i.imgur.com/GpUt6NW.png"/></a> |
45+
| --- | --- |
46+
| Cosmic | Corporate |
2247

2348
### What's included:
2449

25-
- Angular 7+ & Typescript
50+
- Angular 10+ & Typescript
2651
- Bootstrap 4+ & SCSS
2752
- Responsive layout
2853
- RTL support
@@ -32,23 +57,16 @@
3257
- 40+ Angular Components
3358
- 60+ Usage Examples
3459

35-
### Hot Themes Reload
36-
37-
<a target="_blank" href="http://akveo.com/ngx-admin/#/pages/dashboard?utm_source=github&utm_medium=ngx_admin_readme&utm_campaign=demo"><img src="https://i.imgur.com/XoJtfvK.gif"/></a>
38-
3960
### Demo
4061

41-
<a target="_blank" href="http://akveo.com/ngx-admin/">Live Demo</a>
62+
<a target="_blank" href="http://www.akveo.com/ngx-admin/?utm_campaign=ngx_admin%20-%20demo%20-%20ngx_admin%20github%20readme&utm_source=ngx_admin&utm_medium=referral&utm_content=live_demo_link">Live Demo</a>
4263

4364
## Documentation
44-
This template is using [Nebular](https://github.com/akveo/nebular) modules set, [here you can find documentation and other useful articles](https://akveo.github.io/nebular/docs/guides/install-based-on-starter-kit).
65+
This template is using [Nebular](https://github.com/akveo/nebular) modules set, [here you can find documentation and other useful articles](https://akveo.github.io/nebular/docs/guides/install-based-on-starter-kit?utm_campaign=nebular%20-%20docs%20-%20ngx_admin%20github%20readme&utm_source=ngx_admin&utm_medium=referral&utm_content=documentation_useful_articles).
4566

4667
### Empty starter kit
4768
Don't need all the pages and modules and just looking for an empty starter kit for your next project? Check out our [starter-kit branch](https://github.com/akveo/ngx-admin/tree/starter-kit).
4869

49-
### AngularJS 1.x version
50-
Here you can find AngularJS 1.x based version: [Blur Admin](http://akveo.github.io/blur-admin/)
51-
5270
## BrowserStack
5371
This project runs its tests on multiple desktop and mobile browsers using [BrowserStack](http://www.browserstack.com).
5472

@@ -58,6 +76,7 @@ This project runs its tests on multiple desktop and mobile browsers using [Brows
5876

5977
- [Eva Icons](https://github.com/akveo/eva-icons) - 480+ beautiful Open Source icons
6078
- [Nebular](https://github.com/akveo/nebular) - Angular Components, Auth and Security
79+
- [Akveo templates](https://www.akveo.com/templates?utm_campaign=services%20-%20github%20-%20templates&utm_source=ngx_admin&utm_medium=referral&utm_content=ngx_admin%20github%20readme%20more%20from%20akveo%20link) - 10+ Ready-to-use apps templates to speed up your apps developments
6180

6281
### How can I support developers?
6382
- Star our GitHub repo :star:
@@ -66,8 +85,8 @@ This project runs its tests on multiple desktop and mobile browsers using [Brows
6685
- Like our page on [Facebook](https://www.facebook.com/akveo/) :thumbsup:
6786

6887
### Looking for engineering services?
69-
Visit [our homepage](http://akveo.com/) or simply leave us a message to [[email protected]](mailto:[email protected]). We will be happy to work with you!
88+
Visit [our homepage](https://www.akveo.com?utm_campaign=services%20-%20akveo%20website%20-%20ngx_admin%20github%20readme&utm_source=ngx_admin&utm_medium=referral&utm_content=looking_for_engineering_services_visit_homepage) or simply leave us a message to [[email protected]](mailto:[email protected]). We will be happy to work with you!
7089

7190
### From Developers
72-
Made with :heart: by [Akveo team](http://akveo.com/). Follow us on [Twitter](https://twitter.com/akveo_inc) to get the latest news first!
91+
Made with :heart: by [Akveo team](https://www.akveo.com?utm_campaign=services%20-%20akveo%20website%20-%20ngx_admin%20github%20readme&utm_source=ngx_admin&utm_medium=referral&utm_content=from_developers_made_by). Follow us on [Twitter](https://twitter.com/akveo_inc) to get the latest news first!
7392
We're always happy to receive your feedback!

web-ui/angular.json

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
"build": {
1212
"builder": "@angular-devkit/build-angular:browser",
1313
"options": {
14-
"aot": true,
1514
"preserveSymlinks": true,
1615
"outputPath": "dist",
1716
"index": "src/index.html",
@@ -56,9 +55,14 @@
5655
"echarts",
5756
"lodash",
5857
"zrender/lib/svg/svg",
59-
"zrender/lib/vml/vml",
60-
"style-loader!leaflet/dist/leaflet.css"
61-
]
58+
"zrender/lib/vml/vml"
59+
],
60+
"vendorChunk": true,
61+
"extractLicenses": false,
62+
"buildOptimizer": false,
63+
"sourceMap": true,
64+
"optimization": false,
65+
"namedChunks": true
6266
},
6367
"configurations": {
6468
"production": {
@@ -72,7 +76,6 @@
7276
"outputHashing": "all",
7377
"sourceMap": false,
7478
"namedChunks": false,
75-
"aot": true,
7679
"extractLicenses": true,
7780
"vendorChunk": false,
7881
"buildOptimizer": true,
@@ -83,7 +86,8 @@
8386
}
8487
]
8588
}
86-
}
89+
},
90+
"defaultConfiguration": ""
8791
},
8892
"serve": {
8993
"builder": "@angular-devkit/build-angular:dev-server",

web-ui/nginx.default

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)