Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jkuri/ng-daterangepicker

Angular Date Range Picker inspired by PayPal's one
https://github.com/jkuri/ng-daterangepicker

angular angular-component date datepicker datepicker-component ng2

Last synced: 1 day ago
JSON representation

Angular Date Range Picker inspired by PayPal's one

Awesome Lists containing this project

README

        

Angular DateRange Picker
---

This date range picker was heavily inspired by PayPal's datepicker as seen on website.

Demo: http://ng-daterangepicker.jankuri.com

### Installation

```sh
npm install ng-daterangepicker --save
```

or

```sh
yarn add ng-daterangepicker --save
```

### Example

```ts
import { NgDateRangePickerModule } from 'ng-daterangepicker';

// app.module.ts
@NgModule({
...
imports: [ ..., NgDateRangePickerModule, ... ],
...
})
export class AppModule { }
```

```ts
// app.component.ts
import { Component, OnInit } from '@angular/core';
import { NgDateRangePickerOptions } from 'ng-daterangepicker';

@Component({
selector: 'app-root',
templateUrl: 'app.component.html'
})
export class AppComponent {
options: NgDateRangePickerOptions;

ngOnInit() {
this.options = {
theme: 'default',
range: 'tm',
dayNames: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
presetNames: ['This Month', 'Last Month', 'This Week', 'Last Week', 'This Year', 'Last Year', 'Start', 'End'],
dateFormat: 'yMd',
outputFormat: 'DD/MM/YYYY',
startOfWeek: 1
};
}
}
```

```html

```

### Configuration

```ts
export interface NgDateRangePickerOptions {
theme: 'default' | 'green' | 'teal' | 'cyan' | 'grape' | 'red' | 'gray';
range: 'tm' | 'lm' | 'lw' | 'tw' | 'ty' | 'ly';
dayNames: string[];
presetNames: string[];
dateFormat: string;
outputFormat: string;
startOfWeek: number;
}
```

### Running the demo

```sh
git clone https://github.com/jkuri/ng-daterangepicker.git --depth 1
cd ng-daterangepicker
npm start
```

### Licence

MIT