Skip to content

v7.6.1

Compare
Choose a tag to compare
@github-actions github-actions released this 01 Apr 02:46
· 16 commits to master since this release

7.6.1 (2024-04-01)

Quick Info

This release will now work with multiple tooltips on the same cell (e.g. multiple buttons with icons like the "Action" column in Example 35).

Another great change with this release is that I created a PR on the autocompleter external dependency to provide an ESM build (it was simply missing a Rollup es build) and I waited for a over a month without any news, so I decided to create a new temporary autocompleter-es package (my hope is that this is a temp package and that my PR will be merge in the near future so that I can switch back to the original package). So... long story short, you can now remove autocompleter from allowedCommonJsDependencies (from angular.json) and that is 1 less CJS dependency to worry about :)

Edit

My autocompleter PR got merged, so I'll switch back to the original package for the next release, note that this has zero impact on your side since this is an internal dependency of Slickgrid-Universal when using the Autocomplete Editor/Filter. The removal of CJS, as shown below, is still valid :)

{
  "allowedCommonJsDependencies": [
-   "autocompleter",
    "isomorphic-dompurify", // it was previous `dompurify` but it was recently replaced to support SSR
    "flatpickr",
    "moment-mini",
    "stream"
  ],
}

Bug Fixes

  • allow multiple tooltips per grid cell (85cabd7)

Installation

Please remember that all packages of @slickgrid-universal (v4.6.1) and Angular-Slickgrid (v7.6.1) must be updated at the same time and they will always get bumped on the same day to avoid any upgrade issues. You can also consult the Versions Compatibility Table - Wiki

please remember that Slickgrid-Universal monorepo now contains the biggest portion of the code (~90%), so most of the commits are now happening on that side.

  1. review the Slickgrid-Universal changelog
  2. and the Angular-Slickgrid changelog (above)