Skip to content

Commit

Permalink
chore(release): 1.0.0-alpha.7 distribution files
Browse files Browse the repository at this point in the history
  • Loading branch information
ccrowhurstram committed Aug 27, 2015
1 parent ffa617c commit 7685f4f
Show file tree
Hide file tree
Showing 9 changed files with 544 additions and 89 deletions.
57 changes: 57 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,60 @@
<a name="1.0.0-alpha.7"></a>
# 1.0.0-alpha.7 (2015-08-27)


## Bug Fixes

- **NgTableParams:** the url method does not URI encoded all parameter values
([6e7bf3a7](https://github.com/esvit/ng-table/commit/6e7bf3a733f15987b5b3aefeb738f3d5c03aaa8e))


## Features

- **NgTableParams:** improved support for grouping data
([1cd90cde](https://github.com/esvit/ng-table/commit/1cd90cdeb1b3720945c246e875d602ea8d30c873))
- **groupRow:** extend header with a data group picker
([ffa617cb](https://github.com/esvit/ng-table/commit/ffa617cb53fd02d38d02b86d4b37e52813dcec1e))
- **ngTableDefaultGetData:** allow NgTableParams to determine if sorting, filtering, and paging apply
([6536d734](https://github.com/esvit/ng-table/commit/6536d734f865a101021639db311648e334b649a7))


## Breaking Changes

- **NgTableParams:**
- due to [1cd90cde](https://github.com/esvit/ng-table/commit/1cd90cdeb1b3720945c246e875d602ea8d30c873),


* `settings().groupBy` renamed and moved to `parameters().group`

Previously:

```js
var params = new NgTableParams({...}, { groupBy: 'role'});
// changing value:
params.settings({ groupBy: 'age'});

```

Now:

```js
var params = new NgTableParams({group: 'role'}, {...});
// changing value:
params.group('age');
// OR
params.parameters({ group: { age: undefined }});
```

* paging is applied after grouping

This means that groups will no longer be duplicated and split across pages.

- due to [6e7bf3a7](https://github.com/esvit/ng-table/commit/6e7bf3a733f15987b5b3aefeb738f3d5c03aaa8e),


All parameter values are now URI encoded, thus a numerical filter value will now be returned as a quoted string


<a name="1.0.0-alpha.6"></a>
# 1.0.0-alpha.6 (2015-08-17)

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng-table",
"version": "1.0.0-alpha.6",
"version": "1.0.0-alpha.7",
"main": [
"./dist/ng-table.min.js",
"./dist/ng-table.min.css"
Expand Down
12 changes: 12 additions & 0 deletions dist/ng-table.css
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,15 @@
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.ng-table .ng-table-group-header th {
text-align: left;
}
.ng-table .ng-table-group-selector {
display: block;
}
.ng-table .ng-table-group-selector > button {
float: right;
}
.ng-table + .pagination {
margin-top: 0;
}
Expand Down Expand Up @@ -134,11 +143,14 @@
display: block;
}
}
.ng-table-group-selector:before,
.ng-table-group-selector:after,
.filter:before,
.filter:after {
display: table;
content: " ";
}
.ng-table-group-selector:after,
.filter:after {
clear: both;
}
Expand Down
Loading

0 comments on commit 7685f4f

Please sign in to comment.