Skip to content
This repository was archived by the owner on Jun 1, 2025. It is now read-only.

Commit dd07ba9

Browse files
Ghislain BeaulacGhislain Beaulac
authored andcommitted
prepare release 0.4.2
1 parent 13bd025 commit dd07ba9

30 files changed

+638
-446
lines changed

dist/README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,9 @@ This is a work in progress, but so far here are some of the features that `angul
3131
- Integrated Plugins.
3232
- Column Picker (show/hide any column by doing `right+click` in the header, click [here to see print screen](/screenshots/columnPicker.png)).
3333
- ... more to come
34-
- Server side (backend) services
35-
- Filtering, Sorting, Pagination
36-
- [GraphQL](https://github.com/ghiscoding/Angular-Slickgrid/wiki/GraphQL)
37-
- [OData](https://github.com/ghiscoding/Angular-Slickgrid/wiki/OData)
34+
- Server side (backend) Services (filtering, sorting, pagination)
35+
- [GraphQL](https://github.com/ghiscoding/Angular-Slikgrid/wiki/GraphQL)
36+
- [OData](https://github.com/ghiscoding/Angular-Slickgrid/wiki/OData)
3837
- Some Features of SlickGrid itself which are working out of the gate
3938
- Sort/Multi-Sort (client/server side)
4039
- Header Row with Filters (currently support `Input` and `Select` dropdown, multi-select is planned)

dist/angular-slickgrid/angular-slickgrid.es5.js

Lines changed: 189 additions & 128 deletions
Large diffs are not rendered by default.

dist/angular-slickgrid/angular-slickgrid.es5.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/angular-slickgrid/angular-slickgrid.js

Lines changed: 176 additions & 129 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/angular-slickgrid/angular-slickgrid.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/bundles/angular-slickgrid.umd.js

Lines changed: 193 additions & 131 deletions
Large diffs are not rendered by default.

dist/bundles/angular-slickgrid.umd.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-slickgrid",
3-
"version": "0.4.1",
3+
"version": "0.4.2",
44
"description": "Slickgrid components made available in Angular",
55
"keywords": [
66
"angular",
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1+
import { BackendService } from './index';
12
import { Observable } from 'rxjs/Observable';
23
import 'rxjs/add/operator/toPromise';
34
export interface BackendEventChanged {
5+
onInit?: (query: string) => Promise<any> | Observable<any>;
46
preProcess?: () => void;
57
process: (query: string) => Promise<any> | Observable<any>;
68
postProcess: (response: any) => void;
7-
service: any;
9+
service: BackendService;
810
filterTypingDebounce?: number;
911
}

dist/src/app/modules/angular-slickgrid/models/backendServiceOption.interface.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ export interface BackendServiceOption {
44
paginationOptions?: any;
55
filteringOptions?: any[];
66
sortingOptions?: any[];
7-
onBackendEventChanged?: BackendEventChanged;
7+
onBackendEventApi?: BackendEventChanged;
88
}

0 commit comments

Comments
 (0)