Skip to content

Commit

Permalink
updating dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
istvan.mezo committed May 16, 2018
1 parent 38fa50e commit 1eee55b
Show file tree
Hide file tree
Showing 18 changed files with 2,549 additions and 2,719 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v6.0.2
This package no longer contains Angular and flatpickr as a dependency. Flatpickr has to be installed separately - see README.

## v6.0.1
Fixed an AOT bug in v6.0.0.

Expand Down
24 changes: 16 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
[![Build Status](https://travis-ci.org/mezoistvan/ng2-flatpickr.svg?branch=master)](https://travis-ci.org/mezoistvan/ng2-flatpickr)

# ng2-flatpickr
ng2-flatpickr is a lightweight Angular 2+ wrapper for flatpickr, which is usable in reactive forms inside Angular.
ng2-flatpickr is a lightweight Angular wrapper for flatpickr, which is usable in reactive forms inside Angular.

Examples are here: https://mezoistvan.github.io/ng2-flatpickr-examples/.

```javascript
npm install --save ng2-flatpickr
yarn add ng2-flatpickr
npm install --save flatpickr ng2-flatpickr
yarn add flatpickr ng2-flatpickr
```

# For RxJS v5 use ^5.0.2 and for RxJS v6 use ^6.0.1.
# For RxJS v5 use ^5.0.2 and for RxJS v6 use ^6.0.2.
Your bundle size will thank you for that.
```
npm install --save ng2-flatpickr@5.0.2
yarn add ng2-flatpickr@5.0.2
npm install --save flatpickr ng2-flatpickr@5.0.2
yarn add flatpickr ng2-flatpickr@5.0.2
OR
npm install --save ng2-flatpickr@6.0.1
yarn add ng2-flatpickr@6.0.1
npm install --save flatpickr ng2-flatpickr@6.0.2
yarn add flatpickr ng2-flatpickr@6.0.2
```

# How to use:
Expand Down Expand Up @@ -91,3 +91,11 @@ Flatpickr css needs to be loaded separately. when using `@angular/cli`, load it
"../node_modules/flatpickr/dist/flatpickr.min.css"
]
```
From v6, in `angular.json`:
```javascript
"styles": [
"node_modules/flatpickr/dist/flatpickr.min.css"
]
```
Binary file added dist.tgz
Binary file not shown.
24 changes: 16 additions & 8 deletions dist/README.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
[![Build Status](https://travis-ci.org/mezoistvan/ng2-flatpickr.svg?branch=master)](https://travis-ci.org/mezoistvan/ng2-flatpickr)

# ng2-flatpickr
ng2-flatpickr is a lightweight Angular 2+ wrapper for flatpickr, which is usable in reactive forms inside Angular.
ng2-flatpickr is a lightweight Angular wrapper for flatpickr, which is usable in reactive forms inside Angular.

Examples are here: https://mezoistvan.github.io/ng2-flatpickr-examples/.

```javascript
npm install --save ng2-flatpickr
yarn add ng2-flatpickr
npm install --save flatpickr ng2-flatpickr
yarn add flatpickr ng2-flatpickr
```

# For RxJS v5 use ^5.0.2 and for RxJS v6 use ^6.0.0.
# For RxJS v5 use ^5.0.2 and for RxJS v6 use ^6.0.2.
Your bundle size will thank you for that.
```
npm install --save ng2-flatpickr@5.0.2
yarn add ng2-flatpickr@5.0.2
npm install --save flatpickr ng2-flatpickr@5.0.2
yarn add flatpickr ng2-flatpickr@5.0.2
OR
npm install --save ng2-flatpickr@6.0.0
yarn add ng2-flatpickr@6.0.0
npm install --save flatpickr ng2-flatpickr@6.0.2
yarn add flatpickr ng2-flatpickr@6.0.2
```

# How to use:
Expand Down Expand Up @@ -91,3 +91,11 @@ Flatpickr css needs to be loaded separately. when using `@angular/cli`, load it
"../node_modules/flatpickr/dist/flatpickr.min.css"
]
```
From v6, in `angular.json`:
```javascript
"styles": [
"node_modules/flatpickr/dist/flatpickr.min.css"
]
```
Loading

0 comments on commit 1eee55b

Please sign in to comment.