slickgrid-react 9.10.0 → 9.12.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 +9 -9
- package/dist/components/slickgrid-react.js +1 -1
- package/dist/components/slickgrid-react.js.map +1 -1
- package/dist/components/slickgridReactProps.d.ts +172 -419
- package/dist/components/slickgridReactProps.js.map +1 -1
- package/dist/models/gridOption.interface.d.ts +2 -2
- package/dist/models/gridOption.interface.js.map +1 -1
- package/package.json +10 -15
- package/src/components/slickgrid-react.tsx +1 -1
- package/src/components/slickgridReactProps.ts +141 -160
- package/src/models/gridOption.interface.ts +3 -2
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# <a href="https://react.dev/" rel="nofollow"><img alt="React" src="https://ghiscoding.github.io/slickgrid-react-demos/assets/react-logo-DuD1bc7a.png" width="
|
|
1
|
+
# <a href="https://react.dev/" rel="nofollow"><img alt="React" src="https://ghiscoding.github.io/slickgrid-react-demos/assets/react-logo-DuD1bc7a.png" width="70"></a> Slickgrid-React
|
|
2
2
|
|
|
3
3
|
[](https://opensource.org/licenses/MIT)
|
|
4
4
|
[](http://www.typescriptlang.org/)
|
|
@@ -85,15 +85,15 @@ export default function Example() {
|
|
|
85
85
|
|
|
86
86
|
### Versions Compatibility
|
|
87
87
|
|
|
88
|
-
> **Note**
|
|
88
|
+
> **Note** Please be aware that only the latest major version of Slickgrid-React will be supported and receive bug fixes.
|
|
89
89
|
|
|
90
|
-
| Slickgrid-React | React
|
|
91
|
-
|
|
92
|
-
| 9.x
|
|
93
|
-
| 5.x
|
|
94
|
-
| 4.x
|
|
95
|
-
| 3.x
|
|
96
|
-
| 2.x
|
|
90
|
+
| Slickgrid-React | React | Migration Guide | Notes | Date |
|
|
91
|
+
|:---------------:| --------- | --------------- | ----- | ---- |
|
|
92
|
+
| 9.x | React 19+ | [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) | 2025-05-10 |
|
|
93
|
+
| 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) | 2024-05-10 |
|
|
94
|
+
| 4.x | | [Migration 4.x](https://ghiscoding.gitbook.io/slickgrid-react/migrations/migration-to-4.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 |
|
|
95
|
+
| 3.x | | [Migration 3.x](https://ghiscoding.gitbook.io/slickgrid-react/migrations/migration-to-3.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-05-29 |
|
|
96
|
+
| 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) | 2022-12-08 |
|
|
97
97
|
|
|
98
98
|
### Styling Themes
|
|
99
99
|
|
|
@@ -622,7 +622,7 @@ export class SlickgridReact extends React.Component {
|
|
|
622
622
|
if (typeof this._i18next?.on === 'function') {
|
|
623
623
|
this._i18next.on('languageChanged', (lang) => {
|
|
624
624
|
// publish event of the same name that Slickgrid-Universal uses on a language change event
|
|
625
|
-
this._eventPubSubService.publish('onLanguageChange');
|
|
625
|
+
this._eventPubSubService.publish('onLanguageChange', lang);
|
|
626
626
|
if (gridOptions.enableTranslate) {
|
|
627
627
|
this.extensionService.translateAllExtensions(lang);
|
|
628
628
|
if ((gridOptions.createPreHeaderPanel && gridOptions.createTopHeaderPanel) ||
|