angular-slickgrid 8.10.1 → 8.10.2
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 +5 -0
- package/app/modules/angular-slickgrid/components/angular-slickgrid.component.d.ts +1 -1
- package/app/modules/angular-slickgrid/models/gridOption.interface.d.ts +3 -1
- package/esm2022/app/modules/angular-slickgrid/components/angular-slickgrid.component.mjs +7 -7
- package/esm2022/app/modules/angular-slickgrid/models/gridOption.interface.mjs +1 -1
- package/esm2022/app/modules/angular-slickgrid/modules/angular-slickgrid.module.mjs +4 -4
- package/esm2022/app/modules/angular-slickgrid/services/angularUtil.service.mjs +3 -3
- package/esm2022/app/modules/angular-slickgrid/services/container.service.mjs +3 -3
- package/esm2022/app/modules/angular-slickgrid/services/translater.service.mjs +3 -3
- package/fesm2022/angular-slickgrid.mjs +19 -19
- package/fesm2022/angular-slickgrid.mjs.map +1 -1
- package/package.json +13 -10
package/README.md
CHANGED
|
@@ -33,6 +33,11 @@ A good starting point is the **[Docs - Quick Start](https://ghiscoding.gitbook.i
|
|
|
33
33
|
npm install angular-slickgrid
|
|
34
34
|
```
|
|
35
35
|
|
|
36
|
+
### Troubleshooting
|
|
37
|
+
|
|
38
|
+
> [!WARNING]
|
|
39
|
+
> This project **does not** work well with `strictTemplates` because of its use of native Custom Event, so please make sure to either `strictTemplates` or cast your event as `any` (see this [discussion](https://github.com/ghiscoding/Angular-Slickgrid/discussions/815) for more info)
|
|
40
|
+
|
|
36
41
|
### Styling Themes
|
|
37
42
|
|
|
38
43
|
Multiple styling themes are available
|
|
@@ -78,8 +78,8 @@ export declare class AngularSlickgridComponent<TData = any> implements AfterView
|
|
|
78
78
|
gridOptions: GridOption;
|
|
79
79
|
get paginationOptions(): Pagination | undefined;
|
|
80
80
|
set paginationOptions(newPaginationOptions: Pagination | undefined);
|
|
81
|
-
set columnDefinitions(columnDefinitions: Column[]);
|
|
82
81
|
get columnDefinitions(): Column[];
|
|
82
|
+
set columnDefinitions(columnDefinitions: Column[]);
|
|
83
83
|
columnDefinitionsChange: EventEmitter<any>;
|
|
84
84
|
get dataset(): any[];
|
|
85
85
|
set dataset(newDataset: any[]);
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import type { TranslateService } from '@ngx-translate/core';
|
|
2
|
-
import type { Column, GridOption as UniversalGridOption } from '@slickgrid-universal/common';
|
|
2
|
+
import type { BasePaginationComponent, Column, GridOption as UniversalGridOption } from '@slickgrid-universal/common';
|
|
3
3
|
import type { RowDetailView } from './rowDetailView.interface';
|
|
4
4
|
export interface GridOption<C extends Column = Column> extends UniversalGridOption<C> {
|
|
5
|
+
/** External Custom Pagination Component that can be provided by the user */
|
|
6
|
+
customPaginationComponent?: typeof BasePaginationComponent;
|
|
5
7
|
/** ngx-translate i18n translation service instance */
|
|
6
8
|
i18n?: TranslateService;
|
|
7
9
|
/** Row Detail View Plugin options & events (columnId, cssClass, toolTip, width) */
|