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

Commit 8a62354

Browse files
Ghislain BeaulacGhislain Beaulac
Ghislain Beaulac
authored and
Ghislain Beaulac
committed
prepare release 2.0.2
1 parent 9c47146 commit 8a62354

39 files changed

+53
-49
lines changed

dist/README.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
One of the best javascript datagrid [SlickGrid](https://github.com/mleibman/SlickGrid) which was originally developed by @mleibman is now available to Angular. I have used a few datagrids and slickgrid beats most of them in terms of functionalities and performance (it can easily deal with even a million row).
88

99
### Angular Compatibility
10-
- version `1.x.x` for Angular 4 to 6 (ng6, need to use `rxjs-compat` as shown in this [post](https://github.com/ghiscoding/Angular-Slickgrid/issues/36#issuecomment-395710915))
11-
- version `2.x.x` for 7
10+
- version `1.x.x` for Angular 4 to 6 (*ng6, need `rxjs-compat` as shown in this [post](https://github.com/ghiscoding/Angular-Slickgrid/issues/36#issuecomment-395710915))
11+
- version `2.x.x` for Angular 7+
1212

1313
### SlickGrid Source
1414
We will be using [6pac SlickGrid fork](https://github.com/6pac/SlickGrid/) (the most active fork since the original @mleibman fork was closed some time ago by his author personal reasons).
@@ -17,10 +17,14 @@ We will be using [6pac SlickGrid fork](https://github.com/6pac/SlickGrid/) (the
1717
The goal is of course to be able to run SlickGrid within Angular 4+ but also to incorporate as much as possible the entire list of functionalities (and more) that SlickGrid offers (you can see a vast list of samples on the [6pac SlickGrid examples](https://github.com/6pac/SlickGrid/wiki/Examples) website).
1818

1919
### Demo page
20-
The creation of `Angular-Slickgrid` started with `Bootstrap 3` support and `Bootstrap 4` is now supported as well starting with version `1.2.0`
20+
`Angular-Slickgrid` supports both `Bootstrap 3` and `Bootstrap 4`, you can demo of both below.
2121
- [Bootstrap 3 demo](https://ghiscoding.github.io/Angular-Slickgrid) / [examples repo](https://github.com/ghiscoding/Angular-Slickgrid/tree/master/src/app/examples)
2222
- [Bootstrap 4 demo](https://ghiscoding.github.io/angular-slickgrid-bs4-demo) / [examples repo](https://github.com/ghiscoding/angular-slickgrid-bs4-demo/tree/master/src/app/examples)
2323

24+
#### Material Theme
25+
Technically speaking, `Material` theme is not provided, but it should still work.
26+
The styling might need some adjustments to make it look like `Material` but there's over 200+ [SASS variables](https://github.com/ghiscoding/Angular-Slickgrid/blob/master/dist/styles/sass/_variables.scss),
27+
so I'm sure making a theme is doable and if you do, please, please contribute it as a new theme to the project. Thank you.
2428

2529
### NPM Package
2630
[Angular-Slickgrid on NPM](https://www.npmjs.com/package/angular-slickgrid)
@@ -65,7 +69,7 @@ This is a work in progress, but so far here are some of the features that `angul
6569
## Missing features
6670
What if `Angular-Slickgrid` is missing feature(s) versus the original `SlickGrid`?
6771

68-
Fear not and directly use the `SlickGrid` and `DataView` objects that are expose from the start through Event Emitters. For more info continue reading on [Uncyclo - SlickGrid & DataView objects](/ghiscoding/Angular-Slickgrid/wiki/SlickGrid-&-DataView-Objects) and [Uncyclo - Grid & DataView Events](https://github.com/ghiscoding/Angular-Slickgrid/wiki/Grid-&-DataView-Events)
72+
Fear not and simply and use the `SlickGrid` and `DataView` objects, just like in the core lib, these are exposed through Event Emitters. For more info continue reading on [Uncyclo - SlickGrid & DataView objects](/ghiscoding/Angular-Slickgrid/wiki/SlickGrid-&-DataView-Objects) and [Uncyclo - Grid & DataView Events](https://github.com/ghiscoding/Angular-Slickgrid/wiki/Grid-&-DataView-Events)
6973

7074
### License
7175
[MIT License](LICENSE)

dist/bundles/angular-slickgrid.umd.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7866,9 +7866,9 @@
78667866
this.extensionList.push({ name: ExtensionName.gridMenu, class: this.gridMenuExtension, extension: this.gridMenuExtension.register() });
78677867
}
78687868
}
7869-
// Grouping Plugin
7869+
// Grouping Plugin & Draggable Grouping Plugin
78707870
// register the group item metadata provider to add expand/collapse group handlers
7871-
if (this.sharedService.gridOptions.enableGrouping) {
7871+
if (this.sharedService.gridOptions.enableDraggableGrouping || this.sharedService.gridOptions.enableGrouping) {
78727872
if (this.groupItemMetaExtension && this.groupItemMetaExtension.register) {
78737873
this.extensionList.push({ name: ExtensionName.groupItemMetaProvider, class: this.groupItemMetaExtension, extension: this.groupItemMetaExtension.register() });
78747874
}

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/bundles/angular-slickgrid.umd.min.js

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.min.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/esm2015/app/modules/angular-slickgrid/components/angular-slickgrid.component.js

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/esm2015/app/modules/angular-slickgrid/components/slick-pagination.component.js

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/esm2015/app/modules/angular-slickgrid/editors/selectEditor.js

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/esm2015/app/modules/angular-slickgrid/filters/compoundDateFilter.js

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/esm2015/app/modules/angular-slickgrid/filters/selectFilter.js

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/esm2015/app/modules/angular-slickgrid/models/backendServiceApi.interface.js

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

0 commit comments

Comments
 (0)