angular-slickgrid 7.4.0 → 7.5.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 JavasSript datagrid [SlickGrid](https://github.com/mleibman/SlickGrid), which was originally developed by @mleibman, is now available to Angular. SlickGrid beats most other datagrids in terms of features, customizability and performance (it can easily deal with even a million row). Angular-Slickgrid is a wrapper on top of SlickGrid and it requires [Slickgrid-Universal](https://github.com/ghiscoding/slickgrid-universal/) dependency, originally we used the `6pac/SlickGrid` fork but that was dropped in >=7.0, so we no longer need external SlickGrid dependencies anymore apart from Slickgrid-Universal since [v7.0](https://github.com/ghiscoding/Angular-Slickgrid/releases/tag/v7.0.3). SlickGrid was also recently refactored to be browser native (no more jQuery).
14
+ One of the best JavasSript datagrid [SlickGrid](https://github.com/mleibman/SlickGrid), which was originally developed by @mleibman, is now available to the Angular world. SlickGrid beats most other datagrids in terms of features, customizability and performance (running smoothly with even a million rows). Angular-Slickgrid is a wrapper on top of [Slickgrid-Universal](https://github.com/ghiscoding/slickgrid-universal/) (which is required), in the early beginning we used the `6pac/SlickGrid` fork but that was dropped in >=[v7.0](https://github.com/ghiscoding/Angular-Slickgrid/releases/tag/v7.0.3) since Slickgrid-Universal is now a standalone project. SlickGrid was also recently rewritten to be browser native (no more ~jQuery~ 🎉).
15
15
 
16
16
  ### License
17
17
  [MIT License](LICENSE)
@@ -22,6 +22,8 @@ One of the best JavasSript datagrid [SlickGrid](https://github.com/mleibman/Slic
22
22
  For common issues, see the [Troubleshooting Section](#troubleshooting-section) below
23
23
 
24
24
  ## Installation
25
+ [![Open in Codeflow](https://developer.stackblitz.com/img/open_in_codeflow.svg)](https:///pr.new/ghiscoding/angular-slickgrid)
26
+
25
27
  A good starting point is the **[Docs - Quick Start](https://ghiscoding.gitbook.io/angular-slickgrid/getting-started/quick-start)** and/or simply clone the [Angular-Slickgrid Demos](https://github.com/ghiscoding/angular-slickgrid-demos) repository. Please review all documentation and closed issues before opening any new issue, also consider asking installation and/or general questions on [Stack Overflow](https://stackoverflow.com/search?tab=newest&q=slickgrid) unless you think there's a bug with the library.
26
28
 
27
29
  ```sh
@@ -24,6 +24,7 @@ export declare class AngularSlickgridComponent<TData = any> implements AfterView
24
24
  protected _dataset?: TData[] | null;
25
25
  protected _columnDefinitions: Column[];
26
26
  protected _currentDatasetLength: number;
27
+ protected _darkMode: boolean;
27
28
  protected _eventHandler: SlickEventHandler;
28
29
  protected _eventPubSubService: EventPubSubService;
29
30
  protected _angularGridInstances: AngularGridInstance | undefined;
@@ -122,6 +123,7 @@ export declare class AngularSlickgridComponent<TData = any> implements AfterView
122
123
  * if there are then load them in the paginationOptions object
123
124
  */
124
125
  setPaginationOptionsWhenPresetDefined(gridOptions: GridOption, paginationOptions: Pagination): Pagination;
126
+ setDarkMode(dark?: boolean): void;
125
127
  /**
126
128
  * Dynamically change or update the column definitions list.
127
129
  * We will re-render the grid so that the new header and data shows up correctly.