angular-slickgrid 5.2.2 → 5.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -11,7 +11,7 @@
11
11
  [![codecov](https://codecov.io/gh/ghiscoding/Angular-Slickgrid/branch/master/graph/badge.svg)](https://codecov.io/gh/ghiscoding/Angular-Slickgrid)
12
12
 
13
13
  ### Brief introduction
14
- 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). We will be using the [6pac/SlickGrid](https://github.com/6pac/SlickGrid/) fork, it is the most active fork since the original author @mleibman stopped working on his original repo. Also worth knowing that I have contributed a lot to the 6pac/SlickGrid fork for the benefit of Angular-Slickgrid... also a reminder, this is a wrapper of a jQuery lib (SlickGrid) and a big portion of the lib (like Editors, Filters and others) are written in jQuery/JavaScript, so just keep that in mind and it also mean that jQuery is a dependency.
14
+ One of the best javascript datagrid [SlickGrid](https://github.com/mleibman/SlickGrid) which was originally developed by @mleibman is now available to React. 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). We will be using the [6pac/SlickGrid](https://github.com/6pac/SlickGrid/) fork, it is the most active fork since the original @mleibman was retired some time ago by the original author for personal reasons. Also worth to know, that I also contributed a lot to the 6pac/SlickGrid fork for the benefit of all the SlickGrid libraries that I maintain like this one here.... also as a reminder, this is a wrapper of a jQuery lib (SlickGrid) and its core component is written in jQuery/JavaScript, so just keep that in mind and it also mean that jQuery is a dependency of Angular-Slickgrid.
15
15
 
16
16
  ### License
17
17
  [MIT License](LICENSE)
@@ -1,7 +1,7 @@
1
- import 'slickgrid/dist/slick.core.min';
2
- import 'slickgrid/dist/slick.interactions.min';
3
- import 'slickgrid/dist/slick.grid.min';
4
- import 'slickgrid/dist/slick.dataview.min';
1
+ import 'slickgrid/slick.core';
2
+ import 'slickgrid/slick.interactions';
3
+ import 'slickgrid/slick.grid';
4
+ import 'slickgrid/slick.dataview';
5
5
  import { AfterViewInit, ApplicationRef, ChangeDetectorRef, ElementRef, EventEmitter, OnDestroy } from '@angular/core';
6
6
  import { TranslateService } from '@ngx-translate/core';
7
7
  import { BackendServiceApi, Column, EventSubscription, ExternalResource, Locale, Metrics, Pagination, ServicePagination, SlickDataView, SlickEventHandler, SlickGrid, BackendUtilityService, CollectionService, ExtensionService, ExtensionUtility, FilterFactory, FilterService, GridEventService, GridService, GridStateService, GroupingAndColspanService, PaginationService, ResizerService, RxJsFacade, SharedService, SlickGroupItemMetadataProvider, SortService, TreeDataService } from '@slickgrid-universal/common';
@@ -106,7 +106,7 @@ export declare class AngularSlickgridComponent implements AfterViewInit, OnDestr
106
106
  initialization(eventHandler: SlickEventHandler): void;
107
107
  /**
108
108
  * On a Pagination changed, we will trigger a Grid State changed with the new pagination info
109
- * Also if we use Row Selection or the Checkbox Selector, we need to reset any selection
109
+ * Also if we use Row Selection or the Checkbox Selector with a Backend Service (Odata, GraphQL), we need to reset any selection
110
110
  */
111
111
  paginationChanged(pagination: ServicePagination): void;
112
112
  /**
@@ -1,7 +1,8 @@
1
- import { Subscription } from 'rxjs';
2
1
  /**
3
2
  * Unsubscribe all Observables Subscriptions
4
3
  * It will return an empty array if it all went well
5
4
  * @param subscriptions
6
5
  */
7
- export declare function unsubscribeAllObservables(subscriptions: Subscription[]): Subscription[];
6
+ export declare function unsubscribeAllObservables(subscriptions: Array<{
7
+ unsubscribe: () => void;
8
+ }>): any[];