Skip to content

Commit

Permalink
prepare release 0.15.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Ghislain Beaulac authored and Ghislain Beaulac committed Apr 5, 2018
1 parent 061e95c commit bf40313
Show file tree
Hide file tree
Showing 15 changed files with 93 additions and 38 deletions.
4 changes: 4 additions & 0 deletions dist/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,10 @@ Screenshots from the demo app with the `Bootstrap` theme (that is the only avail

![Slickgrid Server Side](/screenshots/filter_and_sort.png)

### Editors and/or onCellClick

![Editors](/screenshots/editors.png)

### Slickgrid Example with Server Side (Filter/Sort/Pagination)

![Slickgrid Server Side](/screenshots/pagination.png)
2 changes: 1 addition & 1 deletion dist/angular-slickgrid.metadata.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { QueryArgument } from './queryArgument.interface';
import { BackendEventChanged } from './backendEventChanged.interface';
export interface BackendServiceOption {
/** Array of column ids that are included in the column definitions */
Expand All @@ -10,6 +11,12 @@ export interface BackendServiceOption {
sortingOptions?: any[];
/** Execute the process callback command on component init (page load) */
executeProcessCommandOnInit?: boolean;
/**
* Extra query arguments that be passed in addition to the default query arguments
* For example in GraphQL, if we want to pass "userId" and we want the query to look like
* users (first: 20, offset: 10, userId: 123) { ... }
*/
extraQueryArguments?: QueryArgument[];
/** Backend Event callbacks that will be used by the Backend Service */
onBackendEventApi?: BackendEventChanged;
}
1 change: 1 addition & 0 deletions dist/app/modules/angular-slickgrid/models/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ export * from './operatorString';
export * from './operatorType.enum';
export * from './pagination.interface';
export * from './paginationChangedArgs.interface';
export * from './queryArgument.interface';
export * from './searchTerm.type';
export * from './selectOption.interface';
export * from './slickEvent.interface';
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export interface QueryArgument {
field: string;
value: string | number | boolean;
}
41 changes: 28 additions & 13 deletions dist/bundles/angular-slickgrid.umd.js

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

4 changes: 2 additions & 2 deletions dist/bundles/angular-slickgrid.umd.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/bundles/angular-slickgrid.umd.min.js

Large diffs are not rendered by default.

7 changes: 5 additions & 2 deletions dist/bundles/angular-slickgrid.umd.min.js.map

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions dist/esm2015/angular-slickgrid.js

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

4 changes: 2 additions & 2 deletions dist/esm2015/angular-slickgrid.js.map

Large diffs are not rendered by default.

41 changes: 28 additions & 13 deletions dist/esm5/angular-slickgrid.js

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

4 changes: 2 additions & 2 deletions dist/esm5/angular-slickgrid.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-slickgrid",
"version": "0.15.2",
"version": "0.15.3",
"description": "Slickgrid components made available in Angular",
"keywords": [
"angular",
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": "angular-slickgrid",
"version": "0.15.2",
"version": "0.15.3",
"description": "Slickgrid components made available in Angular",
"keywords": [
"angular",
Expand Down

0 comments on commit bf40313

Please sign in to comment.