angular-slickgrid 10.1.0 → 10.1.1

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.
Files changed (2) hide show
  1. package/README.md +5 -11
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -41,12 +41,12 @@ interface User {
41
41
  }
42
42
 
43
43
  export class GridComponent implements OnInit {
44
- columnDefinitions: Column[] = []; // it could also be `Column<User>[]`
44
+ columns: Column[] = []; // it could also be `Column<User>[]`
45
45
  gridOptions: GridOption;
46
46
  dataset: User[] = [];
47
47
 
48
48
  onInit() {
49
- this.columnDefinitions = [
49
+ this.columns = [
50
50
  { id: 'firstName', name: 'First Name', field: 'firstName', sortable: true },
51
51
  { id: 'lastName', name: 'Last Name', field: 'lastName', sortable: true },
52
52
  { id: 'age', name: 'Age', field: 'age', type: 'number', sortable: true }
@@ -62,7 +62,7 @@ export class GridComponent implements OnInit {
62
62
 
63
63
  ```html
64
64
  <angular-slickgrid gridId="grid2"
65
- [columns]="columnDefinitions"
65
+ [columns]="columns"
66
66
  [options]="gridOptions"
67
67
  [dataset]="dataset">
68
68
  </angular-slickgrid>
@@ -112,16 +112,12 @@ Make sure to check out the [Releases](https://github.com/ghiscoding/slickgrid-un
112
112
 
113
113
  | Angular-Slickgrid | Angular | Migration Guide | Notes | Date |
114
114
  | :----------------:|:-------:|-----------------| ------| ---- |
115
- | 10.x | >=21.0 | [Migration 10.x](https://ghiscoding.gitbook.io/angular-slickgrid/migrations/migration-to-10.x) | Smaller code, requires Slickgrid-Universal [10.x](https://github.com/ghiscoding/slickgrid-universal/releases/tag/v10.0.0) | 2026-03-02 |
115
+ | 10.x | >=21.0 | [Migration 10.x](https://ghiscoding.gitbook.io/angular-slickgrid/migrations/migration-to-10.x) | modernization and accessibility, requires Slickgrid-Universal [10.x](https://github.com/ghiscoding/slickgrid-universal/releases/tag/v10.0.0) | 2026-03-02 |
116
116
  | 9.x | >=19.0 | [Migration 9.x](https://ghiscoding.gitbook.io/angular-slickgrid/migrations/migration-to-9.x) | ESM-Only, requires Slickgrid-Universal [9.x](https://github.com/ghiscoding/slickgrid-universal/releases/tag/v9.0.0) | 2025-05-10 |
117
117
  | 8.x | >=18.0 | [Migration 8.x](https://ghiscoding.gitbook.io/angular-slickgrid/migrations/migration-to-8.x) | Modern UI / Dark Mode, requires Slickgrid-Universal [5.x](https://github.com/ghiscoding/slickgrid-universal/releases/tag/v5.0.0) | 2024-05-22 |
118
118
  | 7.x | >=17.0 | [Migration 7.x](https://ghiscoding.gitbook.io/angular-slickgrid/migrations/migration-to-7.x) | merge SlickGrid into Slickgrid-Universal, <br> requires Slickgrid-Universal [4.x](https://github.com/ghiscoding/slickgrid-universal/releases/tag/v4.0.2) | 2023-12-15 |
119
119
  | 6.x | >=16.0 | [Migration 6.x](https://ghiscoding.gitbook.io/angular-slickgrid/migrations/Migration-to-6.x) | removal of jQuery (now uses browser native code),<br> requires Slickgrid-Universal [3.x](https://github.com/ghiscoding/slickgrid-universal/releases/tag/v3.0.0) | 2023-07-01 |
120
120
  | 5.x | >=14.0 | [Migration 5.x](https://ghiscoding.gitbook.io/angular-slickgrid/migrations/Migration-to-5.x) | removal of jQueryUI, requires Slickgrid-Universal [2.x](https://github.com/ghiscoding/slickgrid-universal/releases/tag/v2.0.0) | 2022-10-17 |
121
- | 4.x | >=13.0 | [Migration 4.x](https://ghiscoding.gitbook.io/angular-slickgrid/migrations/Migration-to-4.x) | for Ivy build only, requires Slickgrid-Universal [1.x](https://github.com/ghiscoding/slickgrid-universal/releases/tag/v1.1.1) | 2021-12-11 |
122
- | 3.x | >=12.0 | [Migration 3.x](https://ghiscoding.gitbook.io/angular-slickgrid/migrations/Migration-to-3.x) | the lib now uses [Slickgrid-Universal](https://github.com/ghiscoding/slickgrid-universal) monorepo [v0.19.2](https://github.com/ghiscoding/slickgrid-universal/releases/tag/v0.19.2).<br>Also, IE11 is EOL and no longer supported. | 2021-07-02 |
123
- | 2.x | 7-11.x | [Migration 2.x](https://ghiscoding.gitbook.io/angular-slickgrid/migrations/Migration-to-2.x) | support multiple grids on the same page |
124
- | 1.x | 4-6.x | | |
125
121
 
126
122
  **Note** For a full compatibility table of every Angular-Slickgrid versions with Slickgrid-Universal, please take a look at the [Versions Compatibility Table - Wiki](https://github.com/ghiscoding/Angular-Slickgrid/wiki/Versions-Compatibility-Table).
127
123
 
@@ -131,12 +127,10 @@ Angular-Slickgrid uses [`ngx-translate`](https://github.com/ngx-translate/core)
131
127
 
132
128
  | Angular Version | @ngx-translate/core |
133
129
  |-----------------|---------------------|
130
+ | 21+ | 17.x |
134
131
  | 19+ | 16.x |
135
132
  | 16+ | 15.x |
136
133
  | 13+ (Ivy only) | 14.x |
137
- | 10-13 | 13.x |
138
- | 8-9 | 12.x |
139
- | 7 | 11.x |
140
134
 
141
135
  ### Tested with [Vitest](https://vitest.dev/) (Unit Tests) - [Cypress](https://www.cypress.io/) (E2E Tests)
142
136
  Slickgrid-Universal & Angular-Slickgrid both have **100%** Unit Test Coverage and also every Angular-Slickgrid Examples are fully tested with [Cypress](https://www.cypress.io/) as E2E tests.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "angular-slickgrid",
3
- "version": "10.1.0",
3
+ "version": "10.1.1",
4
4
  "description": "Slickgrid components made available in Angular",
5
5
  "keywords": [
6
6
  "angular",
@@ -31,13 +31,13 @@
31
31
  },
32
32
  "dependencies": {
33
33
  "@ngx-translate/core": "^17.0.0",
34
- "@slickgrid-universal/common": "10.1.0",
35
- "@slickgrid-universal/custom-footer-component": "10.1.0",
36
- "@slickgrid-universal/empty-warning-component": "10.1.0",
37
- "@slickgrid-universal/event-pub-sub": "10.1.0",
38
- "@slickgrid-universal/pagination-component": "10.1.0",
39
- "@slickgrid-universal/rxjs-observable": "10.1.0",
40
- "@slickgrid-universal/utils": "10.1.0",
34
+ "@slickgrid-universal/common": "10.1.1",
35
+ "@slickgrid-universal/custom-footer-component": "10.1.1",
36
+ "@slickgrid-universal/empty-warning-component": "10.1.1",
37
+ "@slickgrid-universal/event-pub-sub": "10.1.1",
38
+ "@slickgrid-universal/pagination-component": "10.1.1",
39
+ "@slickgrid-universal/rxjs-observable": "10.1.1",
40
+ "@slickgrid-universal/utils": "10.1.1",
41
41
  "dequal": "^2.0.3",
42
42
  "rxjs": "^7.8.2",
43
43
  "tslib": "^2.3.0"