Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

md2-datepicker

dharmeshpipariya29MIT0.0.1-alpha.1TypeScript support: included

Angular2 based Material Design Datepicker component.

angular, material, material design, components

readme

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

  2. Setup MD2-DATEPICKER in your project `ts // 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.