angular-slickgrid 8.10.1 → 8.11.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 +29 -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 +16 -14
- 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 +28 -26
- package/fesm2022/angular-slickgrid.mjs.map +1 -1
- package/package.json +14 -11
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
|
|
@@ -109,3 +114,27 @@ Slickgrid-Universal has **100%** Unit Test Coverage and all Angular-Slickgrid Ex
|
|
|
109
114
|
- [Angular 12 with WebPack 5 - how to fix polyfill error](https://github.com/ghiscoding/Angular-Slickgrid/wiki/Versions-Compatibility-Table#angular-12-with-webpack-5---how-to-fix-polyfill-error)
|
|
110
115
|
- [`ngcc` Build Warnings (Angular >=8.0 && <16.0)](https://github.com/ghiscoding/Angular-Slickgrid/wiki/Versions-Compatibility-Table#ngcc-build-warnings-angular-80--160)
|
|
111
116
|
- [`strictTemplates` error](https://github.com/ghiscoding/Angular-Slickgrid/wiki/Versions-Compatibility-Table#stricttemplates-error)
|
|
117
|
+
|
|
118
|
+
## Sponsors
|
|
119
|
+
|
|
120
|
+
<div>
|
|
121
|
+
<span>
|
|
122
|
+
<a href="https://github.com/wundergraph" class="Link" title="Wundergraph" target="_blank"><img src="https://avatars.githubusercontent.com/u/64281914" width="50" height="50" valign="middle" /></a>
|
|
123
|
+
</span>
|
|
124
|
+
|
|
125
|
+
<span>
|
|
126
|
+
<a href="https://github.com/johnsoncodehk" class="Link" title="johnsoncodehk (Volar)" target="_blank"><img src="https://avatars.githubusercontent.com/u/16279759" width="50" height="50" valign="middle" /></a>
|
|
127
|
+
</span>
|
|
128
|
+
|
|
129
|
+
<span>
|
|
130
|
+
<a href="https://github.com/kevinburkett" class="Link" title="kevinburkett" target="_blank"><img class="circle avatar-user" src="https://avatars.githubusercontent.com/u/48218815?s=52&v=4" width="45" height="45" valign="middle" /></a>
|
|
131
|
+
</span>
|
|
132
|
+
|
|
133
|
+
<span>
|
|
134
|
+
<a href="https://github.com/anton-gustafsson" class="Link" title="anton-gustafsson" target="_blank"><img src="https://avatars.githubusercontent.com/u/22906905?s=52&v=4" width="50" height="50" valign="middle" /></a>
|
|
135
|
+
</span>
|
|
136
|
+
|
|
137
|
+
<span>
|
|
138
|
+
<a href="https://github.com/gibson552" class="Link" title="gibson552" target="_blank"><img src="https://avatars.githubusercontent.com/u/84058359?s=52&v=4" width="50" height="50" valign="middle" /></a>
|
|
139
|
+
</span>
|
|
140
|
+
</div>
|
|
@@ -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) */
|