0.0.3 • Published 8 years ago

tb-md2 v0.0.3

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

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

  2. Setup MD2 in your project

// system.config.js
// ================
{
  map: {
    'md2': 'node_modules/md2'
  },
  packages: {
    'md2': {
      main: 'all.js',
      defaultExtension: 'js'
    }
  }
}


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

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

Components: