Skip to content

Commit

Permalink
chore(release): 1.0.0-beta.8 distribution files
Browse files Browse the repository at this point in the history
  • Loading branch information
ccrowhurstram committed Oct 24, 2015
1 parent 8e0b109 commit 98592f6
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 14 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<a name="1.0.0-beta.8"></a>
# 1.0.0-beta.8 (2015-10-24)


## Features

- **ngTableController:** add visibleColumnCount to the the current $data array
([8e0b1095](https://github.com/esvit/ng-table/commit/8e0b1095611b1ce44deec0dd8c286d863874be83))


<a name="1.0.0-beta.7"></a>
# 1.0.0-beta.7 (2015-10-18)

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-beta.7",
"version": "1.0.0-beta.8",
"main": [
"./dist/ng-table.min.js",
"./dist/ng-table.min.css"
Expand Down
18 changes: 10 additions & 8 deletions dist/ng-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -258,11 +258,11 @@
* @name ngTableDefaultGetDataProvider
* @description Allows for the configuration of the ngTableDefaultGetData service.
*
* Set filterFilterName to the name of a angular filter that knows how to take `NgTableParams.filter()`
* to restrict an array of data.
* Set filterFilterName to the name of a angular filter that knows how to apply the values returned by
* `NgTableParams.filter()` to restrict an array of data.
*
* Set sortingFilterName to the name of a angular filter that knows how to take `NgTableParams.orderBy()`
* to sort an array of data.
* Set sortingFilterName to the name of a angular filter that knows how to apply the values returned by
* `NgTableParams.orderBy()` to sort an array of data.
*
* Out of the box the `ngTableDefaultGetData` service will be configured to use the angular `filter` and `orderBy`
* filters respectively
Expand Down Expand Up @@ -580,7 +580,7 @@
defaultSort: 'asc', // set to 'asc' or 'desc' to apply sorting to groups
isExpanded: true
},
defaultFettingsFns = getDefaultSettingFns();
defaultSettingsFns = getDefaultSettingFns();

this.data = [];

Expand Down Expand Up @@ -1138,7 +1138,7 @@
// don't debounce by default filter input when working with small synchronous datasets
if (settings.filterOptions.filterDelay === defaultFilterOptions.filterDelay &&
settings.total <= settings.filterOptions.filterDelayThreshold &&
settings.getData === defaultFettingsFns.getData){
settings.getData === defaultSettingsFns.getData){
settings.filterOptions.filterDelay = 0;
}
}
Expand Down Expand Up @@ -1315,7 +1315,7 @@
sortingIndicator: 'span'
};

this.settings(defaultFettingsFns);
this.settings(defaultSettingsFns);
this.settings(ngTableDefaults.settings);
this.settings(baseSettings);
this.parameters(baseParameters, true);
Expand Down Expand Up @@ -1594,11 +1594,13 @@
ngTableEventsChannel.onPagesChanged(bindPagesToScope, $scope, isMyPublisher);

function bindDataToScope(params, newDatapage){
var visibleColumns = getVisibleColumns();
if (params.hasGroup()) {
$scope.$groups = newDatapage || [];
$scope.$groups.visibleColumnCount = getVisibleColumns().length;
$scope.$groups.visibleColumnCount = visibleColumns.length;
} else {
$scope.$data = newDatapage;
$scope.$data.visibleColumnCount = visibleColumns.length;
}
}

Expand Down
2 changes: 1 addition & 1 deletion dist/ng-table.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/ng-table.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/ng-table.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng-table",
"version": "1.0.0-beta.7",
"version": "1.0.0-beta.8",
"author": "Vitalii Savchuk <esvit666@gmail.com>",
"license": "BSD",
"repository": {
Expand Down

0 comments on commit 98592f6

Please sign in to comment.