Thanks to visit codestin.com
Credit goes to Github.com

Skip to content

maniator/angular-md

 
 

Repository files navigation

MD2

Angular2 based Material Design components, directives and services are Accordion, Autocomplete, Collapse, Colorpicker, Datepicker, Dialog(Modal), Menu, Multiselect, Select, Tabs, Tags(Chips), Toast and Tooltip.

Build Status

Quick start

  1. A recommended way to install md2 is through npm package manager using the following command:

npm install md2 --save

  1. Setup MD2 in your project
// system.config.js
// ================
{
  map: {
    'md2': 'md2/bundles/md2.umd.js'
  }
}


// app.module.ts
// =============

import { Md2Module }  from 'md2';
@NgModule({
  imports: [
    ...,
    Md2Module.forRoot(),
  ],
  ...
})
export class AppModule { }
  1. More information regarding of using md2 is located in demo and demo sources.

Components:

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 70.3%
  • CSS 15.1%
  • HTML 9.4%
  • JavaScript 2.7%
  • Shell 2.5%