Skip to content

Commit

Permalink
Prepare to release v0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mariuszfoltak committed Nov 13, 2016
1 parent d1e9a4a commit 13eae4f
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## 0.5.2 (2016-11-13)

Changes:

- added inputs/outputs for sorting (#14)

Bugfixes:

- detect changes in inputData array (#10)
- fixed detecting changes in mfRowsOnPage (#32)
- fixed support for AOT compilation

## 0.5.1 (2016-10-25)

Changes:
Expand Down
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,14 @@ AppComponent.html
- selector: `table[mfData]`
- exportAs: `mfDataTable`
- inputs
- `mfData: any[]` - array of data to display on table
- `mfData: any[]` - array of data to display in table
- `mfRowsOnPage: number` - number of rows should be displayed on page (default: 1000)
- `mfActivePage: number` - page number should be displayed on init (default: 1)
- `mfActivePage: number` - page number (default: 1)
- `mfSortBy: any` - sort by parameter
- `mfSortOrder: string` - sort order parameter, "asc" or "desc"
- outputs
- `mfSortByChange: any` - sort by parameter
- `mfSortOrderChange: any` - sort order parameter

### `mfDefaultSorter` component

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular2-datatable",
"version": "0.5.1",
"version": "0.5.2",
"description": "DataTable component for Angular2 framework",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 13eae4f

Please sign in to comment.