├── .gitignore ├── 0.bundle.map ├── 0.chunk.js ├── README.md ├── angular-cli.json ├── assets ├── css │ ├── angular2-calendar.css │ ├── bootstrap.css │ ├── dashboard.css │ ├── font-awesome.min.css │ ├── leaflet.css │ ├── site.css │ └── skins.css ├── fonts │ ├── 5YB-ifwqHP20Yn46l_BDhA.eot │ ├── FontAwesome.otf │ ├── Roboto.woff │ ├── RobotoBold.woff │ ├── RobotoLight.woff │ ├── RobotoMedium.woff │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.otf │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── images │ ├── layers-2x.png │ ├── layers.png │ ├── marker-icon-2x.png │ ├── marker-icon.png │ └── marker-shadow.png └── img │ ├── avatar.png │ ├── avatar04.png │ ├── avatar2.png │ ├── avatar3.png │ ├── avatar5.png │ ├── boxed-bg.jpg │ ├── boxed-bg.png │ ├── credit │ ├── american-express.png │ ├── cirrus.png │ ├── mastercard.png │ ├── mestro.png │ ├── paypal.png │ ├── paypal2.png │ └── visa.png │ ├── default-50x50.gif │ ├── icons.png │ ├── photo1.png │ ├── photo2.png │ ├── photo3.jpg │ ├── photo4.jpg │ ├── user1-128x128.jpg │ ├── user2-160x160.jpg │ ├── user3-128x128.jpg │ ├── user4-128x128.jpg │ ├── user5-128x128.jpg │ ├── user6-128x128.jpg │ ├── user7-128x128.jpg │ ├── user8-128x128.jpg │ └── weather │ ├── cloudy.png │ ├── moderate.png │ ├── rainy.png │ └── sun.png ├── e2e ├── app.e2e-spec.ts ├── app.po.ts └── tsconfig.json ├── favicon.ico ├── index.html ├── inline.bundle.js ├── inline.bundle.map ├── json ├── authentication │ └── signIn.json ├── chart │ └── ng2-chart │ │ ├── barChart.json │ │ ├── doughnutChart.json │ │ ├── lineChart.json │ │ ├── pieChart.json │ │ ├── polarAreaChart.json │ │ └── radarChart.json └── employeeData.json ├── karma.conf.js ├── main.bundle.js ├── main.bundle.map ├── package.json ├── protractor.conf.js ├── scripts.bundle.js ├── scripts.bundle.map ├── src ├── app.component.js ├── app.component.js.map ├── app.component.spec.js ├── app.component.spec.js.map ├── app.component.spec.ts ├── app.component.ts ├── app.module.js ├── app.module.js.map ├── app.module.ts ├── assets │ ├── css │ │ ├── angular2-calendar.css │ │ ├── bootstrap.css │ │ ├── dashboard.css │ │ ├── font-awesome.min.css │ │ ├── leaflet.css │ │ ├── site.css │ │ └── skins.css │ ├── fonts │ │ ├── 5YB-ifwqHP20Yn46l_BDhA.eot │ │ ├── FontAwesome.otf │ │ ├── Roboto.woff │ │ ├── RobotoBold.woff │ │ ├── RobotoLight.woff │ │ ├── RobotoMedium.woff │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.otf │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── images │ │ ├── layers-2x.png │ │ ├── layers.png │ │ ├── marker-icon-2x.png │ │ ├── marker-icon.png │ │ └── marker-shadow.png │ └── img │ │ ├── avatar.png │ │ ├── avatar04.png │ │ ├── avatar2.png │ │ ├── avatar3.png │ │ ├── avatar5.png │ │ ├── boxed-bg.jpg │ │ ├── boxed-bg.png │ │ ├── credit │ │ ├── american-express.png │ │ ├── cirrus.png │ │ ├── mastercard.png │ │ ├── mestro.png │ │ ├── paypal.png │ │ ├── paypal2.png │ │ └── visa.png │ │ ├── default-50x50.gif │ │ ├── icons.png │ │ ├── photo1.png │ │ ├── photo2.png │ │ ├── photo3.jpg │ │ ├── photo4.jpg │ │ ├── user1-128x128.jpg │ │ ├── user2-160x160.jpg │ │ ├── user3-128x128.jpg │ │ ├── user4-128x128.jpg │ │ ├── user5-128x128.jpg │ │ ├── user6-128x128.jpg │ │ ├── user7-128x128.jpg │ │ ├── user8-128x128.jpg │ │ └── weather │ │ ├── cloudy.png │ │ ├── moderate.png │ │ ├── rainy.png │ │ └── sun.png ├── auth-guard.service.js ├── auth-guard.service.js.map ├── auth-guard.service.ts ├── auth.service.js ├── auth.service.js.map ├── auth.service.ts ├── can-deactivate-guard.service.js ├── can-deactivate-guard.service.js.map ├── can-deactivate-guard.service.ts ├── config │ ├── app.config.js │ ├── app.config.js.map │ ├── app.config.ts │ ├── menu.config.js │ ├── menu.config.js.map │ ├── menu.config.ts │ ├── notification.config.js │ ├── notification.config.js.map │ └── notification.config.ts ├── dialog.service.js ├── dialog.service.js.map ├── dialog.service.ts ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── json │ ├── authentication │ │ └── signIn.json │ ├── chart │ │ ├── highchart │ │ │ ├── population-chart.json │ │ │ ├── simple-line-chart.json │ │ │ └── stock-chart.json │ │ └── ng2-chart │ │ │ ├── barChart.json │ │ │ ├── doughnutChart.json │ │ │ ├── lineChart.json │ │ │ ├── pieChart.json │ │ │ ├── polarAreaChart.json │ │ │ └── radarChart.json │ ├── employeeData.json │ └── weather │ │ ├── population-chart.json │ │ └── weather.json ├── login-routing.module.js ├── login-routing.module.js.map ├── login-routing.module.ts ├── login.component.js ├── login.component.js.map ├── login.component.ts ├── main.js ├── main.js.map ├── main.ts ├── modules │ ├── authentication │ │ ├── auth-guard.service.js │ │ ├── auth-guard.service.js.map │ │ ├── auth-guard.service.ts │ │ ├── authentication-routing.module.js │ │ ├── authentication-routing.module.js.map │ │ ├── authentication-routing.module.ts │ │ ├── authentication.module.js │ │ ├── authentication.module.js.map │ │ ├── authentication.module.ts │ │ ├── authentication.service.js │ │ ├── authentication.service.js.map │ │ ├── authentication.service.ts │ │ ├── chart.services.js │ │ ├── chart.services.js.map │ │ └── components │ │ │ ├── login.component.js │ │ │ ├── login.component.js.map │ │ │ ├── login.component.ts │ │ │ └── view │ │ │ └── login.html │ └── dashboard │ │ ├── components │ │ ├── calendar │ │ │ ├── calendar.component.ts │ │ │ └── view │ │ │ │ └── calendar.html │ │ ├── carosuel │ │ │ ├── carosuel.component.ts │ │ │ ├── styles │ │ │ │ └── carousel.css │ │ │ └── view │ │ │ │ └── carousel.html │ │ ├── chart │ │ │ ├── chart.service.js │ │ │ ├── chart.service.js.map │ │ │ ├── chart.service.ts │ │ │ ├── highchart-weather.component.ts │ │ │ ├── highchart.component.ts │ │ │ ├── ng2-chart.component.js │ │ │ ├── ng2-chart.component.js.map │ │ │ ├── ng2-chart.component.ts │ │ │ ├── ng2-google-chart.component.ts │ │ │ ├── styles │ │ │ │ └── high-chart.css │ │ │ └── view │ │ │ │ ├── google-chart.html │ │ │ │ ├── high-chart-weather.html │ │ │ │ ├── high-chart.html │ │ │ │ └── ng2-chart.html │ │ ├── dashboard │ │ │ ├── dashboard.component.js │ │ │ ├── dashboard.component.js.map │ │ │ ├── dashboard.component.ts │ │ │ ├── dashboard.service.ts │ │ │ ├── footer.component.js │ │ │ ├── footer.component.js.map │ │ │ ├── footer.component.ts │ │ │ ├── header.component.js │ │ │ ├── header.component.js.map │ │ │ ├── header.component.ts │ │ │ ├── right-sidebar.component.js │ │ │ ├── right-sidebar.component.js.map │ │ │ ├── right-sidebar.component.ts │ │ │ ├── sidebar.component.js │ │ │ ├── sidebar.component.js.map │ │ │ ├── sidebar.component.ts │ │ │ ├── styles │ │ │ │ └── right-side-bar.css │ │ │ └── view │ │ │ │ ├── dashboard.html │ │ │ │ ├── footer.html │ │ │ │ ├── header.html │ │ │ │ ├── login.html │ │ │ │ ├── right-sidebar.html │ │ │ │ └── sidebar.html │ │ ├── drag&drop │ │ │ ├── drag-and-drop.component.ts │ │ │ ├── styles │ │ │ │ └── drag-and-drop.css │ │ │ └── view │ │ │ │ └── drag-and-drop.html │ │ ├── forms │ │ │ ├── form-advanced.component.js │ │ │ ├── form-advanced.component.js.map │ │ │ ├── form-advanced.component.ts │ │ │ ├── form-editors.component.js │ │ │ ├── form-editors.component.js.map │ │ │ ├── form-editors.component.ts │ │ │ ├── form-general.component.js │ │ │ ├── form-general.component.js.map │ │ │ ├── form-general.component.ts │ │ │ └── view │ │ │ │ ├── advanced.html │ │ │ │ ├── editors.html │ │ │ │ └── general.html │ │ ├── home │ │ │ ├── home.component.js │ │ │ ├── home.component.js.map │ │ │ ├── home.component.ts │ │ │ ├── home.service.ts │ │ │ ├── styles │ │ │ │ └── home.css │ │ │ └── view │ │ │ │ └── home.html │ │ ├── mailbox │ │ │ ├── compose-mail.component.js │ │ │ ├── compose-mail.component.js.map │ │ │ ├── compose-mail.component.ts │ │ │ ├── inbox.component.js │ │ │ ├── inbox.component.js.map │ │ │ ├── inbox.component.ts │ │ │ ├── mailbox.component.js │ │ │ ├── mailbox.component.js.map │ │ │ ├── mailbox.component.ts │ │ │ ├── read-mail.component.js │ │ │ ├── read-mail.component.js.map │ │ │ ├── read-mail.component.ts │ │ │ └── view │ │ │ │ ├── compose.html │ │ │ │ ├── inbox.html │ │ │ │ ├── mailbox.html │ │ │ │ └── read-mail.html │ │ ├── maps │ │ │ ├── google-map.component.js │ │ │ ├── google-map.component.js.map │ │ │ ├── google-map.component.ts │ │ │ ├── leaflet-map.component.ts │ │ │ ├── leaflet-weather.component.ts │ │ │ ├── styles │ │ │ │ └── google-map.css │ │ │ └── view │ │ │ │ ├── google-map.html │ │ │ │ ├── leaflet-map.html │ │ │ │ └── leaflet-weather.html │ │ ├── notifications │ │ │ ├── ng2-toasty.component.js │ │ │ ├── ng2-toasty.component.js.map │ │ │ ├── ng2-toasty.component.ts │ │ │ ├── notification.component.js │ │ │ ├── notification.component.js.map │ │ │ ├── notification.component.ts │ │ │ └── view │ │ │ │ ├── simple-notification.html │ │ │ │ └── toasty.html │ │ ├── table │ │ │ ├── ng2-table.component.js │ │ │ ├── ng2-table.component.js.map │ │ │ ├── ng2-table.component.ts │ │ │ ├── table-data.ts │ │ │ └── view │ │ │ │ └── ng2-table.html │ │ ├── time │ │ │ ├── styles │ │ │ │ └── time.css │ │ │ ├── time.component.ts │ │ │ └── view │ │ │ │ └── time.html │ │ └── widgets │ │ │ ├── view │ │ │ └── widget.html │ │ │ ├── widget.component.js │ │ │ ├── widget.component.js.map │ │ │ └── widget.component.ts │ │ ├── dashboard-routing.module.js │ │ ├── dashboard-routing.module.js.map │ │ ├── dashboard-routing.module.ts │ │ ├── dashboard.module.js │ │ ├── dashboard.module.js.map │ │ └── dashboard.module.ts ├── polyfills.ts ├── routing │ ├── app-routing.module.js │ ├── app-routing.module.js.map │ └── app-routing.module.ts ├── selective-preload-strategy.js ├── selective-preload-strategy.js.map ├── selective-preload-strategy.ts ├── services │ ├── api.service.js │ ├── api.service.js.map │ └── api.service.ts ├── styles.css ├── test.ts ├── tsconfig.json ├── typings.d.ts ├── typings.json └── typings │ ├── globals │ ├── es6-promise │ │ ├── index.d.ts │ │ └── typings.json │ ├── es6-shim │ │ ├── index.d.ts │ │ └── typings.json │ └── jquery │ │ ├── index.d.ts │ │ └── typings.json │ └── index.d.ts ├── styles.bundle.js ├── styles.bundle.map ├── tslint.json └── typings.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /0.bundle.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/0.bundle.map -------------------------------------------------------------------------------- /0.chunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/0.chunk.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/README.md -------------------------------------------------------------------------------- /angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/angular-cli.json -------------------------------------------------------------------------------- /assets/css/angular2-calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/css/angular2-calendar.css -------------------------------------------------------------------------------- /assets/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/css/bootstrap.css -------------------------------------------------------------------------------- /assets/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/css/dashboard.css -------------------------------------------------------------------------------- /assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/css/font-awesome.min.css -------------------------------------------------------------------------------- /assets/css/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/css/leaflet.css -------------------------------------------------------------------------------- /assets/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/css/site.css -------------------------------------------------------------------------------- /assets/css/skins.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/css/skins.css -------------------------------------------------------------------------------- /assets/fonts/5YB-ifwqHP20Yn46l_BDhA.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/fonts/5YB-ifwqHP20Yn46l_BDhA.eot -------------------------------------------------------------------------------- /assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/fonts/Roboto.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/fonts/Roboto.woff -------------------------------------------------------------------------------- /assets/fonts/RobotoBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/fonts/RobotoBold.woff -------------------------------------------------------------------------------- /assets/fonts/RobotoLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/fonts/RobotoLight.woff -------------------------------------------------------------------------------- /assets/fonts/RobotoMedium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/fonts/RobotoMedium.woff -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/fonts/glyphicons-halflings-regular.otf -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /assets/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/images/layers-2x.png -------------------------------------------------------------------------------- /assets/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/images/layers.png -------------------------------------------------------------------------------- /assets/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/images/marker-icon-2x.png -------------------------------------------------------------------------------- /assets/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/images/marker-icon.png -------------------------------------------------------------------------------- /assets/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/images/marker-shadow.png -------------------------------------------------------------------------------- /assets/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/img/avatar.png -------------------------------------------------------------------------------- /assets/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/img/avatar04.png -------------------------------------------------------------------------------- /assets/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/img/avatar2.png -------------------------------------------------------------------------------- /assets/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/img/avatar3.png -------------------------------------------------------------------------------- /assets/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/img/avatar5.png -------------------------------------------------------------------------------- /assets/img/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/img/boxed-bg.jpg -------------------------------------------------------------------------------- /assets/img/boxed-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/img/boxed-bg.png -------------------------------------------------------------------------------- /assets/img/credit/american-express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/img/credit/american-express.png -------------------------------------------------------------------------------- /assets/img/credit/cirrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/img/credit/cirrus.png -------------------------------------------------------------------------------- /assets/img/credit/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/img/credit/mastercard.png -------------------------------------------------------------------------------- /assets/img/credit/mestro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/img/credit/mestro.png -------------------------------------------------------------------------------- /assets/img/credit/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/img/credit/paypal.png -------------------------------------------------------------------------------- /assets/img/credit/paypal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/img/credit/paypal2.png -------------------------------------------------------------------------------- /assets/img/credit/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/img/credit/visa.png -------------------------------------------------------------------------------- /assets/img/default-50x50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/img/default-50x50.gif -------------------------------------------------------------------------------- /assets/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/img/icons.png -------------------------------------------------------------------------------- /assets/img/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/img/photo1.png -------------------------------------------------------------------------------- /assets/img/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/img/photo2.png -------------------------------------------------------------------------------- /assets/img/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/img/photo3.jpg -------------------------------------------------------------------------------- /assets/img/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/img/photo4.jpg -------------------------------------------------------------------------------- /assets/img/user1-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/img/user1-128x128.jpg -------------------------------------------------------------------------------- /assets/img/user2-160x160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/img/user2-160x160.jpg -------------------------------------------------------------------------------- /assets/img/user3-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/img/user3-128x128.jpg -------------------------------------------------------------------------------- /assets/img/user4-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/img/user4-128x128.jpg -------------------------------------------------------------------------------- /assets/img/user5-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/img/user5-128x128.jpg -------------------------------------------------------------------------------- /assets/img/user6-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/img/user6-128x128.jpg -------------------------------------------------------------------------------- /assets/img/user7-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/img/user7-128x128.jpg -------------------------------------------------------------------------------- /assets/img/user8-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/img/user8-128x128.jpg -------------------------------------------------------------------------------- /assets/img/weather/cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/img/weather/cloudy.png -------------------------------------------------------------------------------- /assets/img/weather/moderate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/img/weather/moderate.png -------------------------------------------------------------------------------- /assets/img/weather/rainy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/img/weather/rainy.png -------------------------------------------------------------------------------- /assets/img/weather/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/assets/img/weather/sun.png -------------------------------------------------------------------------------- /e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/e2e/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/index.html -------------------------------------------------------------------------------- /inline.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/inline.bundle.js -------------------------------------------------------------------------------- /inline.bundle.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/inline.bundle.map -------------------------------------------------------------------------------- /json/authentication/signIn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/json/authentication/signIn.json -------------------------------------------------------------------------------- /json/chart/ng2-chart/barChart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/json/chart/ng2-chart/barChart.json -------------------------------------------------------------------------------- /json/chart/ng2-chart/doughnutChart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/json/chart/ng2-chart/doughnutChart.json -------------------------------------------------------------------------------- /json/chart/ng2-chart/lineChart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/json/chart/ng2-chart/lineChart.json -------------------------------------------------------------------------------- /json/chart/ng2-chart/pieChart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/json/chart/ng2-chart/pieChart.json -------------------------------------------------------------------------------- /json/chart/ng2-chart/polarAreaChart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/json/chart/ng2-chart/polarAreaChart.json -------------------------------------------------------------------------------- /json/chart/ng2-chart/radarChart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/json/chart/ng2-chart/radarChart.json -------------------------------------------------------------------------------- /json/employeeData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/json/employeeData.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/karma.conf.js -------------------------------------------------------------------------------- /main.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/main.bundle.js -------------------------------------------------------------------------------- /main.bundle.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/main.bundle.map -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/package.json -------------------------------------------------------------------------------- /protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/protractor.conf.js -------------------------------------------------------------------------------- /scripts.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/scripts.bundle.js -------------------------------------------------------------------------------- /scripts.bundle.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/scripts.bundle.map -------------------------------------------------------------------------------- /src/app.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/app.component.js -------------------------------------------------------------------------------- /src/app.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/app.component.js.map -------------------------------------------------------------------------------- /src/app.component.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/app.component.spec.js -------------------------------------------------------------------------------- /src/app.component.spec.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/app.component.spec.js.map -------------------------------------------------------------------------------- /src/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/app.component.spec.ts -------------------------------------------------------------------------------- /src/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/app.component.ts -------------------------------------------------------------------------------- /src/app.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/app.module.js -------------------------------------------------------------------------------- /src/app.module.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/app.module.js.map -------------------------------------------------------------------------------- /src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/app.module.ts -------------------------------------------------------------------------------- /src/assets/css/angular2-calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/css/angular2-calendar.css -------------------------------------------------------------------------------- /src/assets/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/css/bootstrap.css -------------------------------------------------------------------------------- /src/assets/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/css/dashboard.css -------------------------------------------------------------------------------- /src/assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/css/font-awesome.min.css -------------------------------------------------------------------------------- /src/assets/css/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/css/leaflet.css -------------------------------------------------------------------------------- /src/assets/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/css/site.css -------------------------------------------------------------------------------- /src/assets/css/skins.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/css/skins.css -------------------------------------------------------------------------------- /src/assets/fonts/5YB-ifwqHP20Yn46l_BDhA.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/fonts/5YB-ifwqHP20Yn46l_BDhA.eot -------------------------------------------------------------------------------- /src/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /src/assets/fonts/Roboto.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/fonts/Roboto.woff -------------------------------------------------------------------------------- /src/assets/fonts/RobotoBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/fonts/RobotoBold.woff -------------------------------------------------------------------------------- /src/assets/fonts/RobotoLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/fonts/RobotoLight.woff -------------------------------------------------------------------------------- /src/assets/fonts/RobotoMedium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/fonts/RobotoMedium.woff -------------------------------------------------------------------------------- /src/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/assets/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /src/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/assets/fonts/glyphicons-halflings-regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/fonts/glyphicons-halflings-regular.otf -------------------------------------------------------------------------------- /src/assets/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/assets/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/assets/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/images/layers-2x.png -------------------------------------------------------------------------------- /src/assets/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/images/layers.png -------------------------------------------------------------------------------- /src/assets/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/images/marker-icon-2x.png -------------------------------------------------------------------------------- /src/assets/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/images/marker-icon.png -------------------------------------------------------------------------------- /src/assets/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/images/marker-shadow.png -------------------------------------------------------------------------------- /src/assets/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/img/avatar.png -------------------------------------------------------------------------------- /src/assets/img/avatar04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/img/avatar04.png -------------------------------------------------------------------------------- /src/assets/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/img/avatar2.png -------------------------------------------------------------------------------- /src/assets/img/avatar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/img/avatar3.png -------------------------------------------------------------------------------- /src/assets/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/img/avatar5.png -------------------------------------------------------------------------------- /src/assets/img/boxed-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/img/boxed-bg.jpg -------------------------------------------------------------------------------- /src/assets/img/boxed-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/img/boxed-bg.png -------------------------------------------------------------------------------- /src/assets/img/credit/american-express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/img/credit/american-express.png -------------------------------------------------------------------------------- /src/assets/img/credit/cirrus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/img/credit/cirrus.png -------------------------------------------------------------------------------- /src/assets/img/credit/mastercard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/img/credit/mastercard.png -------------------------------------------------------------------------------- /src/assets/img/credit/mestro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/img/credit/mestro.png -------------------------------------------------------------------------------- /src/assets/img/credit/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/img/credit/paypal.png -------------------------------------------------------------------------------- /src/assets/img/credit/paypal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/img/credit/paypal2.png -------------------------------------------------------------------------------- /src/assets/img/credit/visa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/img/credit/visa.png -------------------------------------------------------------------------------- /src/assets/img/default-50x50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/img/default-50x50.gif -------------------------------------------------------------------------------- /src/assets/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/img/icons.png -------------------------------------------------------------------------------- /src/assets/img/photo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/img/photo1.png -------------------------------------------------------------------------------- /src/assets/img/photo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/img/photo2.png -------------------------------------------------------------------------------- /src/assets/img/photo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/img/photo3.jpg -------------------------------------------------------------------------------- /src/assets/img/photo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/img/photo4.jpg -------------------------------------------------------------------------------- /src/assets/img/user1-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/img/user1-128x128.jpg -------------------------------------------------------------------------------- /src/assets/img/user2-160x160.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/img/user2-160x160.jpg -------------------------------------------------------------------------------- /src/assets/img/user3-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/img/user3-128x128.jpg -------------------------------------------------------------------------------- /src/assets/img/user4-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/img/user4-128x128.jpg -------------------------------------------------------------------------------- /src/assets/img/user5-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/img/user5-128x128.jpg -------------------------------------------------------------------------------- /src/assets/img/user6-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/img/user6-128x128.jpg -------------------------------------------------------------------------------- /src/assets/img/user7-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/img/user7-128x128.jpg -------------------------------------------------------------------------------- /src/assets/img/user8-128x128.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/img/user8-128x128.jpg -------------------------------------------------------------------------------- /src/assets/img/weather/cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/img/weather/cloudy.png -------------------------------------------------------------------------------- /src/assets/img/weather/moderate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/img/weather/moderate.png -------------------------------------------------------------------------------- /src/assets/img/weather/rainy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/img/weather/rainy.png -------------------------------------------------------------------------------- /src/assets/img/weather/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/assets/img/weather/sun.png -------------------------------------------------------------------------------- /src/auth-guard.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/auth-guard.service.js -------------------------------------------------------------------------------- /src/auth-guard.service.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/auth-guard.service.js.map -------------------------------------------------------------------------------- /src/auth-guard.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/auth-guard.service.ts -------------------------------------------------------------------------------- /src/auth.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/auth.service.js -------------------------------------------------------------------------------- /src/auth.service.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/auth.service.js.map -------------------------------------------------------------------------------- /src/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/auth.service.ts -------------------------------------------------------------------------------- /src/can-deactivate-guard.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/can-deactivate-guard.service.js -------------------------------------------------------------------------------- /src/can-deactivate-guard.service.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/can-deactivate-guard.service.js.map -------------------------------------------------------------------------------- /src/can-deactivate-guard.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/can-deactivate-guard.service.ts -------------------------------------------------------------------------------- /src/config/app.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/config/app.config.js -------------------------------------------------------------------------------- /src/config/app.config.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/config/app.config.js.map -------------------------------------------------------------------------------- /src/config/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/config/app.config.ts -------------------------------------------------------------------------------- /src/config/menu.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/config/menu.config.js -------------------------------------------------------------------------------- /src/config/menu.config.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/config/menu.config.js.map -------------------------------------------------------------------------------- /src/config/menu.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/config/menu.config.ts -------------------------------------------------------------------------------- /src/config/notification.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/config/notification.config.js -------------------------------------------------------------------------------- /src/config/notification.config.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/config/notification.config.js.map -------------------------------------------------------------------------------- /src/config/notification.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/config/notification.config.ts -------------------------------------------------------------------------------- /src/dialog.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/dialog.service.js -------------------------------------------------------------------------------- /src/dialog.service.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/dialog.service.js.map -------------------------------------------------------------------------------- /src/dialog.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/dialog.service.ts -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/index.html -------------------------------------------------------------------------------- /src/json/authentication/signIn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/json/authentication/signIn.json -------------------------------------------------------------------------------- /src/json/chart/highchart/population-chart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/json/chart/highchart/population-chart.json -------------------------------------------------------------------------------- /src/json/chart/highchart/simple-line-chart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/json/chart/highchart/simple-line-chart.json -------------------------------------------------------------------------------- /src/json/chart/highchart/stock-chart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/json/chart/highchart/stock-chart.json -------------------------------------------------------------------------------- /src/json/chart/ng2-chart/barChart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/json/chart/ng2-chart/barChart.json -------------------------------------------------------------------------------- /src/json/chart/ng2-chart/doughnutChart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/json/chart/ng2-chart/doughnutChart.json -------------------------------------------------------------------------------- /src/json/chart/ng2-chart/lineChart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/json/chart/ng2-chart/lineChart.json -------------------------------------------------------------------------------- /src/json/chart/ng2-chart/pieChart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/json/chart/ng2-chart/pieChart.json -------------------------------------------------------------------------------- /src/json/chart/ng2-chart/polarAreaChart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/json/chart/ng2-chart/polarAreaChart.json -------------------------------------------------------------------------------- /src/json/chart/ng2-chart/radarChart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/json/chart/ng2-chart/radarChart.json -------------------------------------------------------------------------------- /src/json/employeeData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/json/employeeData.json -------------------------------------------------------------------------------- /src/json/weather/population-chart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/json/weather/population-chart.json -------------------------------------------------------------------------------- /src/json/weather/weather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/json/weather/weather.json -------------------------------------------------------------------------------- /src/login-routing.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/login-routing.module.js -------------------------------------------------------------------------------- /src/login-routing.module.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/login-routing.module.js.map -------------------------------------------------------------------------------- /src/login-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/login-routing.module.ts -------------------------------------------------------------------------------- /src/login.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/login.component.js -------------------------------------------------------------------------------- /src/login.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/login.component.js.map -------------------------------------------------------------------------------- /src/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/login.component.ts -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/main.js -------------------------------------------------------------------------------- /src/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/main.js.map -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/modules/authentication/auth-guard.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/authentication/auth-guard.service.js -------------------------------------------------------------------------------- /src/modules/authentication/auth-guard.service.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/authentication/auth-guard.service.js.map -------------------------------------------------------------------------------- /src/modules/authentication/auth-guard.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/authentication/auth-guard.service.ts -------------------------------------------------------------------------------- /src/modules/authentication/authentication-routing.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/authentication/authentication-routing.module.js -------------------------------------------------------------------------------- /src/modules/authentication/authentication-routing.module.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/authentication/authentication-routing.module.js.map -------------------------------------------------------------------------------- /src/modules/authentication/authentication-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/authentication/authentication-routing.module.ts -------------------------------------------------------------------------------- /src/modules/authentication/authentication.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/authentication/authentication.module.js -------------------------------------------------------------------------------- /src/modules/authentication/authentication.module.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/authentication/authentication.module.js.map -------------------------------------------------------------------------------- /src/modules/authentication/authentication.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/authentication/authentication.module.ts -------------------------------------------------------------------------------- /src/modules/authentication/authentication.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/authentication/authentication.service.js -------------------------------------------------------------------------------- /src/modules/authentication/authentication.service.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/authentication/authentication.service.js.map -------------------------------------------------------------------------------- /src/modules/authentication/authentication.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/authentication/authentication.service.ts -------------------------------------------------------------------------------- /src/modules/authentication/chart.services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/authentication/chart.services.js -------------------------------------------------------------------------------- /src/modules/authentication/chart.services.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/authentication/chart.services.js.map -------------------------------------------------------------------------------- /src/modules/authentication/components/login.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/authentication/components/login.component.js -------------------------------------------------------------------------------- /src/modules/authentication/components/login.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/authentication/components/login.component.js.map -------------------------------------------------------------------------------- /src/modules/authentication/components/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/authentication/components/login.component.ts -------------------------------------------------------------------------------- /src/modules/authentication/components/view/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/authentication/components/view/login.html -------------------------------------------------------------------------------- /src/modules/dashboard/components/calendar/calendar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/calendar/calendar.component.ts -------------------------------------------------------------------------------- /src/modules/dashboard/components/calendar/view/calendar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/calendar/view/calendar.html -------------------------------------------------------------------------------- /src/modules/dashboard/components/carosuel/carosuel.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/carosuel/carosuel.component.ts -------------------------------------------------------------------------------- /src/modules/dashboard/components/carosuel/styles/carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/carosuel/styles/carousel.css -------------------------------------------------------------------------------- /src/modules/dashboard/components/carosuel/view/carousel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/carosuel/view/carousel.html -------------------------------------------------------------------------------- /src/modules/dashboard/components/chart/chart.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/chart/chart.service.js -------------------------------------------------------------------------------- /src/modules/dashboard/components/chart/chart.service.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/chart/chart.service.js.map -------------------------------------------------------------------------------- /src/modules/dashboard/components/chart/chart.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/chart/chart.service.ts -------------------------------------------------------------------------------- /src/modules/dashboard/components/chart/highchart-weather.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/chart/highchart-weather.component.ts -------------------------------------------------------------------------------- /src/modules/dashboard/components/chart/highchart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/chart/highchart.component.ts -------------------------------------------------------------------------------- /src/modules/dashboard/components/chart/ng2-chart.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/chart/ng2-chart.component.js -------------------------------------------------------------------------------- /src/modules/dashboard/components/chart/ng2-chart.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/chart/ng2-chart.component.js.map -------------------------------------------------------------------------------- /src/modules/dashboard/components/chart/ng2-chart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/chart/ng2-chart.component.ts -------------------------------------------------------------------------------- /src/modules/dashboard/components/chart/ng2-google-chart.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/chart/ng2-google-chart.component.ts -------------------------------------------------------------------------------- /src/modules/dashboard/components/chart/styles/high-chart.css: -------------------------------------------------------------------------------- 1 | chart{ 2 | display: block; 3 | } -------------------------------------------------------------------------------- /src/modules/dashboard/components/chart/view/google-chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/chart/view/google-chart.html -------------------------------------------------------------------------------- /src/modules/dashboard/components/chart/view/high-chart-weather.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/chart/view/high-chart-weather.html -------------------------------------------------------------------------------- /src/modules/dashboard/components/chart/view/high-chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/chart/view/high-chart.html -------------------------------------------------------------------------------- /src/modules/dashboard/components/chart/view/ng2-chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/chart/view/ng2-chart.html -------------------------------------------------------------------------------- /src/modules/dashboard/components/dashboard/dashboard.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/dashboard/dashboard.component.js -------------------------------------------------------------------------------- /src/modules/dashboard/components/dashboard/dashboard.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/dashboard/dashboard.component.js.map -------------------------------------------------------------------------------- /src/modules/dashboard/components/dashboard/dashboard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/dashboard/dashboard.component.ts -------------------------------------------------------------------------------- /src/modules/dashboard/components/dashboard/dashboard.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/dashboard/dashboard.service.ts -------------------------------------------------------------------------------- /src/modules/dashboard/components/dashboard/footer.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/dashboard/footer.component.js -------------------------------------------------------------------------------- /src/modules/dashboard/components/dashboard/footer.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/dashboard/footer.component.js.map -------------------------------------------------------------------------------- /src/modules/dashboard/components/dashboard/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/dashboard/footer.component.ts -------------------------------------------------------------------------------- /src/modules/dashboard/components/dashboard/header.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/dashboard/header.component.js -------------------------------------------------------------------------------- /src/modules/dashboard/components/dashboard/header.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/dashboard/header.component.js.map -------------------------------------------------------------------------------- /src/modules/dashboard/components/dashboard/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/dashboard/header.component.ts -------------------------------------------------------------------------------- /src/modules/dashboard/components/dashboard/right-sidebar.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/dashboard/right-sidebar.component.js -------------------------------------------------------------------------------- /src/modules/dashboard/components/dashboard/right-sidebar.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/dashboard/right-sidebar.component.js.map -------------------------------------------------------------------------------- /src/modules/dashboard/components/dashboard/right-sidebar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/dashboard/right-sidebar.component.ts -------------------------------------------------------------------------------- /src/modules/dashboard/components/dashboard/sidebar.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/dashboard/sidebar.component.js -------------------------------------------------------------------------------- /src/modules/dashboard/components/dashboard/sidebar.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/dashboard/sidebar.component.js.map -------------------------------------------------------------------------------- /src/modules/dashboard/components/dashboard/sidebar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/dashboard/sidebar.component.ts -------------------------------------------------------------------------------- /src/modules/dashboard/components/dashboard/styles/right-side-bar.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/modules/dashboard/components/dashboard/view/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/dashboard/view/dashboard.html -------------------------------------------------------------------------------- /src/modules/dashboard/components/dashboard/view/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/dashboard/view/footer.html -------------------------------------------------------------------------------- /src/modules/dashboard/components/dashboard/view/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/dashboard/view/header.html -------------------------------------------------------------------------------- /src/modules/dashboard/components/dashboard/view/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/dashboard/view/login.html -------------------------------------------------------------------------------- /src/modules/dashboard/components/dashboard/view/right-sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/dashboard/view/right-sidebar.html -------------------------------------------------------------------------------- /src/modules/dashboard/components/dashboard/view/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/dashboard/view/sidebar.html -------------------------------------------------------------------------------- /src/modules/dashboard/components/drag&drop/drag-and-drop.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/drag&drop/drag-and-drop.component.ts -------------------------------------------------------------------------------- /src/modules/dashboard/components/drag&drop/styles/drag-and-drop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/drag&drop/styles/drag-and-drop.css -------------------------------------------------------------------------------- /src/modules/dashboard/components/drag&drop/view/drag-and-drop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/drag&drop/view/drag-and-drop.html -------------------------------------------------------------------------------- /src/modules/dashboard/components/forms/form-advanced.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/forms/form-advanced.component.js -------------------------------------------------------------------------------- /src/modules/dashboard/components/forms/form-advanced.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/forms/form-advanced.component.js.map -------------------------------------------------------------------------------- /src/modules/dashboard/components/forms/form-advanced.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/forms/form-advanced.component.ts -------------------------------------------------------------------------------- /src/modules/dashboard/components/forms/form-editors.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/forms/form-editors.component.js -------------------------------------------------------------------------------- /src/modules/dashboard/components/forms/form-editors.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/forms/form-editors.component.js.map -------------------------------------------------------------------------------- /src/modules/dashboard/components/forms/form-editors.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/forms/form-editors.component.ts -------------------------------------------------------------------------------- /src/modules/dashboard/components/forms/form-general.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/forms/form-general.component.js -------------------------------------------------------------------------------- /src/modules/dashboard/components/forms/form-general.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/forms/form-general.component.js.map -------------------------------------------------------------------------------- /src/modules/dashboard/components/forms/form-general.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/forms/form-general.component.ts -------------------------------------------------------------------------------- /src/modules/dashboard/components/forms/view/advanced.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/forms/view/advanced.html -------------------------------------------------------------------------------- /src/modules/dashboard/components/forms/view/editors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/forms/view/editors.html -------------------------------------------------------------------------------- /src/modules/dashboard/components/forms/view/general.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/forms/view/general.html -------------------------------------------------------------------------------- /src/modules/dashboard/components/home/home.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/home/home.component.js -------------------------------------------------------------------------------- /src/modules/dashboard/components/home/home.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/home/home.component.js.map -------------------------------------------------------------------------------- /src/modules/dashboard/components/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/home/home.component.ts -------------------------------------------------------------------------------- /src/modules/dashboard/components/home/home.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/home/home.service.ts -------------------------------------------------------------------------------- /src/modules/dashboard/components/home/styles/home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/home/styles/home.css -------------------------------------------------------------------------------- /src/modules/dashboard/components/home/view/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/home/view/home.html -------------------------------------------------------------------------------- /src/modules/dashboard/components/mailbox/compose-mail.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/mailbox/compose-mail.component.js -------------------------------------------------------------------------------- /src/modules/dashboard/components/mailbox/compose-mail.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/mailbox/compose-mail.component.js.map -------------------------------------------------------------------------------- /src/modules/dashboard/components/mailbox/compose-mail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/mailbox/compose-mail.component.ts -------------------------------------------------------------------------------- /src/modules/dashboard/components/mailbox/inbox.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/mailbox/inbox.component.js -------------------------------------------------------------------------------- /src/modules/dashboard/components/mailbox/inbox.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/mailbox/inbox.component.js.map -------------------------------------------------------------------------------- /src/modules/dashboard/components/mailbox/inbox.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/mailbox/inbox.component.ts -------------------------------------------------------------------------------- /src/modules/dashboard/components/mailbox/mailbox.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/mailbox/mailbox.component.js -------------------------------------------------------------------------------- /src/modules/dashboard/components/mailbox/mailbox.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/mailbox/mailbox.component.js.map -------------------------------------------------------------------------------- /src/modules/dashboard/components/mailbox/mailbox.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/mailbox/mailbox.component.ts -------------------------------------------------------------------------------- /src/modules/dashboard/components/mailbox/read-mail.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/mailbox/read-mail.component.js -------------------------------------------------------------------------------- /src/modules/dashboard/components/mailbox/read-mail.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/mailbox/read-mail.component.js.map -------------------------------------------------------------------------------- /src/modules/dashboard/components/mailbox/read-mail.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/mailbox/read-mail.component.ts -------------------------------------------------------------------------------- /src/modules/dashboard/components/mailbox/view/compose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/mailbox/view/compose.html -------------------------------------------------------------------------------- /src/modules/dashboard/components/mailbox/view/inbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/mailbox/view/inbox.html -------------------------------------------------------------------------------- /src/modules/dashboard/components/mailbox/view/mailbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/mailbox/view/mailbox.html -------------------------------------------------------------------------------- /src/modules/dashboard/components/mailbox/view/read-mail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/mailbox/view/read-mail.html -------------------------------------------------------------------------------- /src/modules/dashboard/components/maps/google-map.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/maps/google-map.component.js -------------------------------------------------------------------------------- /src/modules/dashboard/components/maps/google-map.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/maps/google-map.component.js.map -------------------------------------------------------------------------------- /src/modules/dashboard/components/maps/google-map.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/maps/google-map.component.ts -------------------------------------------------------------------------------- /src/modules/dashboard/components/maps/leaflet-map.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/maps/leaflet-map.component.ts -------------------------------------------------------------------------------- /src/modules/dashboard/components/maps/leaflet-weather.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/maps/leaflet-weather.component.ts -------------------------------------------------------------------------------- /src/modules/dashboard/components/maps/styles/google-map.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/maps/styles/google-map.css -------------------------------------------------------------------------------- /src/modules/dashboard/components/maps/view/google-map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/maps/view/google-map.html -------------------------------------------------------------------------------- /src/modules/dashboard/components/maps/view/leaflet-map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/maps/view/leaflet-map.html -------------------------------------------------------------------------------- /src/modules/dashboard/components/maps/view/leaflet-weather.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/maps/view/leaflet-weather.html -------------------------------------------------------------------------------- /src/modules/dashboard/components/notifications/ng2-toasty.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/notifications/ng2-toasty.component.js -------------------------------------------------------------------------------- /src/modules/dashboard/components/notifications/ng2-toasty.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/notifications/ng2-toasty.component.js.map -------------------------------------------------------------------------------- /src/modules/dashboard/components/notifications/ng2-toasty.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/notifications/ng2-toasty.component.ts -------------------------------------------------------------------------------- /src/modules/dashboard/components/notifications/notification.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/notifications/notification.component.js -------------------------------------------------------------------------------- /src/modules/dashboard/components/notifications/notification.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/notifications/notification.component.js.map -------------------------------------------------------------------------------- /src/modules/dashboard/components/notifications/notification.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/notifications/notification.component.ts -------------------------------------------------------------------------------- /src/modules/dashboard/components/notifications/view/simple-notification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/notifications/view/simple-notification.html -------------------------------------------------------------------------------- /src/modules/dashboard/components/notifications/view/toasty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/notifications/view/toasty.html -------------------------------------------------------------------------------- /src/modules/dashboard/components/table/ng2-table.component.js: -------------------------------------------------------------------------------- 1 | //# sourceMappingURL=ng2-table.component.js.map -------------------------------------------------------------------------------- /src/modules/dashboard/components/table/ng2-table.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/table/ng2-table.component.js.map -------------------------------------------------------------------------------- /src/modules/dashboard/components/table/ng2-table.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/table/ng2-table.component.ts -------------------------------------------------------------------------------- /src/modules/dashboard/components/table/table-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/table/table-data.ts -------------------------------------------------------------------------------- /src/modules/dashboard/components/table/view/ng2-table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/table/view/ng2-table.html -------------------------------------------------------------------------------- /src/modules/dashboard/components/time/styles/time.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/time/styles/time.css -------------------------------------------------------------------------------- /src/modules/dashboard/components/time/time.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/time/time.component.ts -------------------------------------------------------------------------------- /src/modules/dashboard/components/time/view/time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/time/view/time.html -------------------------------------------------------------------------------- /src/modules/dashboard/components/widgets/view/widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/widgets/view/widget.html -------------------------------------------------------------------------------- /src/modules/dashboard/components/widgets/widget.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/widgets/widget.component.js -------------------------------------------------------------------------------- /src/modules/dashboard/components/widgets/widget.component.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/widgets/widget.component.js.map -------------------------------------------------------------------------------- /src/modules/dashboard/components/widgets/widget.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/components/widgets/widget.component.ts -------------------------------------------------------------------------------- /src/modules/dashboard/dashboard-routing.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/dashboard-routing.module.js -------------------------------------------------------------------------------- /src/modules/dashboard/dashboard-routing.module.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/dashboard-routing.module.js.map -------------------------------------------------------------------------------- /src/modules/dashboard/dashboard-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/dashboard-routing.module.ts -------------------------------------------------------------------------------- /src/modules/dashboard/dashboard.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/dashboard.module.js -------------------------------------------------------------------------------- /src/modules/dashboard/dashboard.module.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/dashboard.module.js.map -------------------------------------------------------------------------------- /src/modules/dashboard/dashboard.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/modules/dashboard/dashboard.module.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/routing/app-routing.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/routing/app-routing.module.js -------------------------------------------------------------------------------- /src/routing/app-routing.module.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/routing/app-routing.module.js.map -------------------------------------------------------------------------------- /src/routing/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/routing/app-routing.module.ts -------------------------------------------------------------------------------- /src/selective-preload-strategy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/selective-preload-strategy.js -------------------------------------------------------------------------------- /src/selective-preload-strategy.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/selective-preload-strategy.js.map -------------------------------------------------------------------------------- /src/selective-preload-strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/selective-preload-strategy.ts -------------------------------------------------------------------------------- /src/services/api.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/services/api.service.js -------------------------------------------------------------------------------- /src/services/api.service.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/services/api.service.js.map -------------------------------------------------------------------------------- /src/services/api.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/services/api.service.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /src/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/typings.json -------------------------------------------------------------------------------- /src/typings/globals/es6-promise/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/typings/globals/es6-promise/index.d.ts -------------------------------------------------------------------------------- /src/typings/globals/es6-promise/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/typings/globals/es6-promise/typings.json -------------------------------------------------------------------------------- /src/typings/globals/es6-shim/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/typings/globals/es6-shim/index.d.ts -------------------------------------------------------------------------------- /src/typings/globals/es6-shim/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/typings/globals/es6-shim/typings.json -------------------------------------------------------------------------------- /src/typings/globals/jquery/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/typings/globals/jquery/index.d.ts -------------------------------------------------------------------------------- /src/typings/globals/jquery/typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/typings/globals/jquery/typings.json -------------------------------------------------------------------------------- /src/typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/src/typings/index.d.ts -------------------------------------------------------------------------------- /styles.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/styles.bundle.js -------------------------------------------------------------------------------- /styles.bundle.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/styles.bundle.map -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/tslint.json -------------------------------------------------------------------------------- /typings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjithprabhuk/ng2-Dashboard/HEAD/typings.json --------------------------------------------------------------------------------