slickgrid-react 9.10.0 → 9.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 +1 -1
- package/dist/components/slickgrid-react.js +1 -1
- package/dist/components/slickgrid-react.js.map +1 -1
- package/dist/components/slickgridReactProps.d.ts +170 -419
- package/dist/components/slickgridReactProps.js.map +1 -1
- package/package.json +9 -14
- package/src/components/slickgrid-react.tsx +1 -1
- package/src/components/slickgridReactProps.ts +140 -160
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/)
|
|
@@ -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) ||
|