angular-material-datepicker
Version:
Prototype of a Material Design Datepicker Component for Angular 2
77 lines (64 loc) • 2.29 kB
Markdown
[](https://badge.fury.io/js/angular-material-datepicker)
Prototype of a Material Design Datepicker Component for Angular 2 with theming support based on [Angular-2-Datepicker](https://github.com/koleary94/Angular-2-Datepicker) by Kevin O'Leary [(koleary94)](https://github.com/koleary94).

```bash
npm install angular-material-datepicker
npm install @angular/material
```
```typescript
import { MaterialModule } from '@angular/material';
import { DatePickerModule } from 'angular-material-datepicker';
...
@NgModule({
imports: [
MaterialModule.forRoot(),
DatePickerModule,
...
],
...
})
export class YourModule { }
```
Import themes and apply them to the Calendar in your `style.scss`.
```scss
// Import a pre-built theme
@import '~@angular/material/core/theming/prebuilt/deeppurple-amber';
// Import your custom input theme file so you can call the custom-input-theme function
@import '~angular-material-datepicker/src/datepicker/calendar.component.scss';
// Using the $theme variable from the pre-built theme you can call the theming function
@include calendar-theme($theme);
```
```html
<md-datepicker></md-datepicker>
```
You can use two-way-binding to set and get and selected value of the Datepicker.
```html
<md-datepicker [(date)]="mydate"></md-datepicker>
```
You can try out the Datepicker in the demo app built with [Angular-CLI](https://github.com/angular/angular-cli).
```bash
npm install -g angular-cli@latest
```
```bash
npm install
```
```bash
ng serve
```
[](http://localhost:4200/)
MIT