sedpro / md2-datepicker

Angular2 based Material Design Datepicker component.

Home Page:http://dharmeshpipariya.github.io/md2-datepicker/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MD2-DATEPICKER

Angular2 based Material Design datepicker component.

Build Status

Quick start

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

npm install md2-datepicker --save

  1. Setup MD2-DATEPICKER in your project
// system.config.js
// ================
{
  map: {
    'md2-datepicker': 'node_modules/md2-datepicker'
  },
  packages: {
    'md2-datepicker': {
	  format: 'cjs',
      main: 'md2datepicker.umd.js'
    }
  }
}


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

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

About

Angular2 based Material Design Datepicker component.

http://dharmeshpipariya.github.io/md2-datepicker/

License:MIT License


Languages

Language:TypeScript 74.9%Language:CSS 17.8%Language:HTML 3.9%Language:JavaScript 2.5%Language:Shell 0.9%