slickgrid-react 9.0.2 → 9.1.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 +3 -3
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -85,8 +85,8 @@ This project **does not** work well with `React.StrictMode`, so please make sure
|
|
|
85
85
|
| 9.x | React 18+ | [Migration 9.x](https://ghiscoding.gitbook.io/slickgrid-react/migrations/migration-to-9.x) | ESM-Only, requires Slickgrid-Universal [9.x](https://github.com/ghiscoding/slickgrid-universal/releases/tag/v9.0.0) |
|
|
86
86
|
| 5.x | React 18+ | [Migration 5.x](https://ghiscoding.gitbook.io/slickgrid-react/migrations/migration-to-5.x) | Modern UI / Dark Mode, requires Slickgrid-Universal [5.x](https://github.com/ghiscoding/slickgrid-universal/releases/tag/v5.0.0) |
|
|
87
87
|
| 4.x | | [Migration 4.x](https://ghiscoding.gitbook.io/slickgrid-react/migrations/migration-to-4.x) | merge SlickGrid into Slickgrid-Universal, requires Slickgrid-Universal [4.x](https://github.com/ghiscoding/slickgrid-universal/releases/tag/v4.0.2) |
|
|
88
|
-
| 3.x | | [Migration 3.x](https://
|
|
89
|
-
| 2.x | React 18+ | [Migration 2.x](https://
|
|
88
|
+
| 3.x | | [Migration 3.x](https://ghiscoding.gitbook.io/slickgrid-react/migrations/migration-to-3.x) | removal of jQuery (now uses browser native code), requires Slickgrid-Universal [3.x](https://github.com/ghiscoding/slickgrid-universal/releases/tag/v3.0.0) |
|
|
89
|
+
| 2.x | React 18+ | [Migration 2.x](https://ghiscoding.gitbook.io/slickgrid-react/migrations/migration-to-2.x) | removal of jQueryUI, requires Slickgrid-Universal [2.x](https://github.com/ghiscoding/slickgrid-universal/releases/tag/v2.0.0) version |
|
|
90
90
|
|
|
91
91
|
### Styling Themes
|
|
92
92
|
|
|
@@ -106,7 +106,7 @@ Also note that all of these themes also have **Dark Theme** equivalent and even
|
|
|
106
106
|
For a complete set of working demos (40+ examples), we strongly suggest you to clone the [Slickgrid-React Demos](https://github.com/ghiscoding/slickgrid-react-demos) repository (instructions are provided inside it). The repo provides multiple examples and are updated every time a new release is out, so it is updated frequently and is used as the GitHub live demo page.
|
|
107
107
|
|
|
108
108
|
## Latest News & Releases
|
|
109
|
-
Check out the [Releases](https://github.com/ghiscoding/slickgrid-
|
|
109
|
+
Check out the [Releases](https://github.com/ghiscoding/slickgrid-universal/releases) section for all latest News & Releases.
|
|
110
110
|
|
|
111
111
|
### Tested with [Jest](https://jestjs.io/) (Unit Tests) - [Cypress](https://www.cypress.io/) (E2E Tests)
|
|
112
112
|
Slickgrid-Universal has **100%** Unit Test Coverage and all Slickgrid-React Examples are tested with [Cypress](https://www.cypress.io/) as E2E tests.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "slickgrid-react",
|
|
3
|
-
"version": "9.0
|
|
3
|
+
"version": "9.1.0",
|
|
4
4
|
"description": "Slickgrid components made available in React",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -57,12 +57,12 @@
|
|
|
57
57
|
"/src"
|
|
58
58
|
],
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@slickgrid-universal/common": "9.0
|
|
61
|
-
"@slickgrid-universal/custom-footer-component": "9.0
|
|
62
|
-
"@slickgrid-universal/empty-warning-component": "9.0
|
|
60
|
+
"@slickgrid-universal/common": "9.1.0",
|
|
61
|
+
"@slickgrid-universal/custom-footer-component": "9.1.0",
|
|
62
|
+
"@slickgrid-universal/empty-warning-component": "9.1.0",
|
|
63
63
|
"@slickgrid-universal/event-pub-sub": "9.0.0",
|
|
64
|
-
"@slickgrid-universal/pagination-component": "9.0
|
|
65
|
-
"@slickgrid-universal/row-detail-view-plugin": "9.0
|
|
64
|
+
"@slickgrid-universal/pagination-component": "9.1.0",
|
|
65
|
+
"@slickgrid-universal/row-detail-view-plugin": "9.1.0",
|
|
66
66
|
"@slickgrid-universal/utils": "9.0.0",
|
|
67
67
|
"dequal": "^2.0.3",
|
|
68
68
|
"sortablejs": "^1.15.6"
|
|
@@ -70,5 +70,5 @@
|
|
|
70
70
|
"peerDependencies": {
|
|
71
71
|
"react": ">=19.0.0"
|
|
72
72
|
},
|
|
73
|
-
"gitHead": "
|
|
73
|
+
"gitHead": "13b7246f58494ab65f345b8eb33c34d75c457aa5"
|
|
74
74
|
}
|