diff --git a/docs/changelog.md b/docs/changelog.md index cf88a495e..c0e702a07 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,14 @@ # Changelog +## 22.2.2 + +- Fix: prefer un-prefixed style attributes over prefixed one + + Fixes an issue on Firefox 126 (released May 2024), which no longer support + `-moz-transform` but `transform`. But when we get style attributes from an element, + `-moz-transform` is still available, which makes our `testStyle` fails. So to resolve + this issue, we want to use un-prefixed attribute if available. + ## 22.2.1 - Fix: revert add types for table rows diff --git a/projects/ngx-datatable/package.json b/projects/ngx-datatable/package.json index ef7c6261e..68483d7c0 100644 --- a/projects/ngx-datatable/package.json +++ b/projects/ngx-datatable/package.json @@ -1,6 +1,6 @@ { "name": "@siemens/ngx-datatable", - "version": "22.2.1", + "version": "22.2.2", "description": "ngx-datatable is an Angular table grid component for presenting large and complex data.", "peerDependencies": { "@angular/common": ">=17.0.0",