Skip to content

AngularJS2 / TypeScript implementation of the RDash admin dashboard theme

License

Notifications You must be signed in to change notification settings

uncledlm/rdash-angular2

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Introduction

AngularJS 2 implementation of the RDash admin dashboard theme

Responsive, bloat free, bootstrap powered admin style dashboard!

Note: Angular 2.0 is not production ready yet! This project is perfect for playing around with the latest versions but do not start new projects with it since a lot of new changes are going to be introduced until the framework is officially released.

Demo App

How to start

git clone https://github.com/ziyasal/rdash-angular2.git
cd rdash-angular2
npm install
# dev
npm start

Components

  • RdWidget
  • RdWidgetHeader
  • RdWidgetBody
  • RdWidgetFooter
  • RdLoading

Simple Widget

    <rd-widget>
      <rd-widget-body>       
       <span>HTML CONTENT</span>       
      </rd-widget-body>
    </rd-widget>

Widget with Header

 <rd-widget>
       <rd-widget-header icon="fa-tasks" title="Servers">
         <a href="javascript:void(0)" style="float: right">Manage</a>
       </rd-widget-header>
       <rd-widget-body classes="medium no-padding">
         <server-list-view [model]="servers"></server-list-view>
       </rd-widget-body>
     </rd-widget>

Widget with Footer

 <rd-widget>
       <rd-widget-header icon="fa-tasks" title="Servers">
         <a href="javascript:void(0)" style="float: right">Manage</a>
       </rd-widget-header>
       <rd-widget-body classes="medium no-padding">
         <server-list-view [model]="servers"></server-list-view>
       </rd-widget-body>
       <rd-widget-footer>
         <span>FOOTER CONTENT</span>
       </rd-widget-footer>
     </rd-widget>

Widget with Loader

 <rd-widget>
    <rd-widget-body classes="medium no-padding">
       <rd-loading></rd-loading>
    </rd-widget-body>
 </rd-widget>

Change Log

You can follow the Angular 2 change log here.

License

MIT

About

AngularJS2 / TypeScript implementation of the RDash admin dashboard theme

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • HTML 58.3%
  • TypeScript 36.7%
  • CSS 4.1%
  • JavaScript 0.9%