Skip to content

Commit 26df945

Browse files
committed
* First Major Release
1 parent 989bbc7 commit 26df945

File tree

11 files changed

+57
-59
lines changed

11 files changed

+57
-59
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ PaperAdmin is a bootstrap single page dashboard developed using Angular JS 4. Pa
44
easy. It features custom components such as calendars, list views with CRUD(Create, Read, Update, Delete) functionality, pie charts with status and custom
55
cards to display relevant information.
66

7-
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 1.2.0.
7+
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 1.2.0. And the some parts of styles have been
8+
adopted from <a href="http://www.medialoot.com/item/lumino-admin-bootstrap-template/">Medialoot</a>
89

910
## Development server
1011

package-lock.json

Lines changed: 21 additions & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "PaperAdmin",
3-
"version": "0.0.0",
3+
"version": "1.0.0",
44
"author": "Mohammed Rashid",
55
"description": "A flat Angular JS 2/4 Dashboard",
66
"keywords": [
@@ -9,6 +9,11 @@
99
"angular4",
1010
"dashboard",
1111
"angularjs",
12+
"calendar",
13+
"listview",
14+
"charts",
15+
"smart-table",
16+
"routing",
1217
"javascript"
1318
],
1419
"license": "MIT",
@@ -34,9 +39,10 @@
3439
"angular-svg-round-progressbar": "^1.1.0",
3540
"chart.js": "^2.6.0",
3641
"core-js": "^2.4.1",
37-
"ng2-auto-breadcrumb": "^1.0.9",
42+
"enhanced-resolve": "^3.3.0",
43+
"ng2-auto-breadcrumb": "^0.1.4",
3844
"ng2-charts": "^1.6.0",
39-
"ng2-listview-crud": "^1.0.1",
45+
"ng2-listview-crud": "^0.1.3",
4046
"ng2-smart-table": "^1.2.1",
4147
"rxjs": "^5.1.0",
4248
"zone.js": "^0.8.4"

src/app/app.module.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,19 @@ import { AppComponent } from './app.component';
77
// Routing Module
88
import { AppRoutingModule } from './app.routing';
99
import { FullLayoutComponent} from './layout/full-layout.component';
10-
import {Ng2AutoBreadCrumbComponent} from 'ng2-auto-breadcrumb';
10+
import {Ng2AutoBreadCrumb} from "ng2-auto-breadcrumb";
11+
1112

1213
@NgModule({
1314
imports: [
1415
BrowserModule,
1516
AppRoutingModule,
16-
CommonModule
17+
CommonModule,
18+
Ng2AutoBreadCrumb
1719
],
1820
declarations: [
1921
FullLayoutComponent,
20-
AppComponent,
21-
Ng2AutoBreadCrumbComponent
22+
AppComponent
2223
],
2324
providers: [{
2425
provide: LocationStrategy,

src/app/components/calendar/calendar.component.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
<!--
2+
Theme: PaperAdmin V1
3+
Author: https://github.com/mohdrashid
4+
Custom plugin
5+
-->
16
<div class="panel" [style.background]="properties['color']" [style.color]="properties['font']">
27
<div class="panel-heading dark-overlay">
38
<i class="{{properties['icon']}}" style="margin-right: 10px"></i>{{properties['label']}}

src/app/dashboard/dashboard.component.html

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
<div class="row">
2-
<div class="col-lg-12">
3-
<h1 class="page-header">Dashboard</h1>
4-
</div>
5-
</div><!--/.row-->
6-
71
<div class="row">
82
<div class="col-xs-12 col-md-6 col-sm-12 col-lg-3">
93
<statsCard [data]="card1"></statsCard>

src/app/layout/full-layout.component.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,10 @@
6060
<li><a routerLinkActive="active" [routerLink]="['/register']"><i class="fa fa-users fa-fw"></i> Register</a></li>
6161

6262
</ul>
63-
<div class="attribution">Some styles adopted from
64-
<a href="http://www.medialoot.com/item/lumino-admin-bootstrap-template/">Medialoot</a><br/>
65-
63+
<div class="attribution">Angular JS 2/4 Dashboard by
64+
<a href="https://github.com/mohdrashid">@mohdrashid</a><br/>
65+
CSS by <a href="http://www.medialoot.com/item/lumino-admin-bootstrap-template/">Medialoot</a>
66+
6667
</div>
6768
</div><!--/.sidebar-->
6869
<div class="col-sm-9 col-sm-offset-3 col-lg-10 col-lg-offset-2 main">

src/app/widgets/main/main.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Created by mohma on 7/26/2017.
33
*/
44
import { Component } from '@angular/core';
5-
import {ListViewCRUDProperty} from "ng2-listview-crud";
5+
import {Ng2ListViewCRUDProperty} from "ng2-listview-crud";
66

77
@Component({
88
templateUrl: './main.component.html',
@@ -18,7 +18,7 @@ export class MainWidgetComponent {
1818
public dangerColor="#f9243f";
1919
public fontColor="#ececec";
2020

21-
public listView:ListViewCRUDProperty= {
21+
public listView:Ng2ListViewCRUDProperty= {
2222
label: "CRUD ListView",
2323
icon: "fa fa-list",
2424
color: "#ffb53e",

src/app/widgets/main/main.module.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {FormsModule, ReactiveFormsModule} from "@angular/forms";
66

77
import { MainWidgetComponent} from "./main.component";
88
import { MainWidgetRoutingModule} from "./main-routing";
9-
import {ListViewCRUDComponent} from "ng2-listview-crud";
9+
import {Ng2ListViewCRUD} from "ng2-listview-crud";
1010
import {CommonModule} from "@angular/common";
1111
import {CalendarComponent} from "../../components/calendar/calendar.component";
1212
import {AlertComponent} from "../../components/alert/alert.component";
@@ -16,9 +16,10 @@ import {AlertComponent} from "../../components/alert/alert.component";
1616
imports: [
1717
FormsModule, ReactiveFormsModule,
1818
MainWidgetRoutingModule,
19-
CommonModule
19+
CommonModule,
20+
Ng2ListViewCRUD
2021
],
21-
declarations: [ MainWidgetComponent, CalendarComponent, ListViewCRUDComponent, AlertComponent],
22+
declarations: [ MainWidgetComponent, CalendarComponent, AlertComponent],
2223
providers: [ ]
2324
})
2425
export class MainWidgetModule { }

src/app/widgets/tables/tables.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
* Created by mohma on 7/26/2017.
33
*/
44
import { Component } from '@angular/core';
5-
import {ListView} from "../../components/listviewCRUD/listviewCRUD";
65

76
@Component({
87
templateUrl: './tables.html',

src/index.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
<!doctype html>
22
<html lang="en">
3+
<!--
4+
Theme: PaperAdmin V1
5+
Author: https://github.com/mohdrashid
6+
Responsive single page dashboard using Angular JS
7+
-->
38
<head>
49
<base href="/">
510
<meta charset="utf-8">

0 commit comments

Comments
 (0)