All Projects → ziyasal → Rdash Angular2

ziyasal / Rdash Angular2

Licence: mit
RDash admin dashboard theme /w AngularJS2 & TypeScript

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Rdash Angular2

Ngx Mqtt
This library isn't just a wrapper around MQTT.js for angular. It uses observables and takes care of subscription handling and message routing.
Stars: ✭ 157 (-14.67%)
Mutual labels:  angular2
Ngx Inline Editor
Native UI Inline-editor Angular (4.0+) component
Stars: ✭ 172 (-6.52%)
Mutual labels:  angular2
Ngx Socket Io
Socket.IO module for Angular
Stars: ✭ 178 (-3.26%)
Mutual labels:  angular2
Angular Development With Primeng
Code samples from the book "Angular UI Development with PrimeNG"
Stars: ✭ 159 (-13.59%)
Mutual labels:  angular2
1backend
Run your web apps easily with a complete platform that you can install on any server. Build composable microservices and lambdas.
Stars: ✭ 2,024 (+1000%)
Mutual labels:  angular2
Angular Notifier
A well designed, fully animated, highly customizable, and easy-to-use notification library for your Angular application.
Stars: ✭ 175 (-4.89%)
Mutual labels:  angular2
Mydaterangepicker
Angular 2+ date range picker
Stars: ✭ 157 (-14.67%)
Mutual labels:  angular2
Angular2 Login Seed
(deprecated) Seed app w/ Angular2, Node, Express, and OAuth login
Stars: ✭ 181 (-1.63%)
Mutual labels:  angular2
Ngx Daterangepicker Material
Pure Angular 2+ date range picker with material design theme, a demo here:
Stars: ✭ 169 (-8.15%)
Mutual labels:  angular2
Ngx Wig
Angular(...Angular 7, Angular 8, Angular 9, Angular 10, Angular 11) WYSIWYG HTML Rich Text Editor (from ngWig - https://github.com/stevermeister/ngWig)
Stars: ✭ 178 (-3.26%)
Mutual labels:  angular2
Ngx Currency
📦 Currency mask module for Angular
Stars: ✭ 161 (-12.5%)
Mutual labels:  angular2
Angular Google Maps
Angular 2+ Google Maps Components
Stars: ✭ 1,982 (+977.17%)
Mutual labels:  angular2
Augury
Angular Debugging and Visualization Tools
Stars: ✭ 2,050 (+1014.13%)
Mutual labels:  angular2
Ngx Gauge
A highly customizable Gauge component for Angular 9+ apps and dashboards
Stars: ✭ 158 (-14.13%)
Mutual labels:  angular2
Angular2 Hotkeys
Keyboard shortcuts for Angular 2 apps
Stars: ✭ 179 (-2.72%)
Mutual labels:  angular2
Origami
Angular + Polymer
Stars: ✭ 158 (-14.13%)
Mutual labels:  angular2
Angular Truffle Starter Dapp
Angular CLI + Truffle Starter Dapp; write, compile & deploy smart contracts on Ethereum blockchains
Stars: ✭ 174 (-5.43%)
Mutual labels:  angular2
Ngx Popper
An angular wrapper for popper.js, great for tooltips and positioning popping elements
Stars: ✭ 183 (-0.54%)
Mutual labels:  angular2
Ng2 Nouislider
Angular2 noUiSlider directive
Stars: ✭ 181 (-1.63%)
Mutual labels:  angular2
Ionic2 Rating
⭐️ Angular star rating bar. Built for Ionic 2+.
Stars: ✭ 177 (-3.8%)
Mutual labels:  angular2

Introduction

AngularJS 2 implementation of the RDash admin dashboard theme

Responsive, bloat free, bootstrap powered admin style dashboard!

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>

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].