Skip to content

Releases: ghiscoding/slickgrid-react

v4.2.0

30 Dec 20:06
Compare
Choose a tag to compare

4.2.0 (2023-12-30)

Quick Info

This release brings some perf improvements and also completes the CSP Safe implementation, there was 1 last DataView function that was not yet converted to be CSP Safe and now it is (don't forget to use the new useCSPSafeFilter if you also use the DataView). There is also a new CSP Compliance documentation that you can read.
Lastly a few other small features and fixes were pushed, see below. Happy Holidays 🎁


Features

  • update Slickgrid-Universal with perf improvements (#279) (a157905)

Installation

Please remember that all packages of @slickgrid-universal (v4.2.0) and Slickgrid-React (v4.2.0) must be updated at the same time and they will always get bumped on the same day to avoid any upgrade issues.

v4.1.0

21 Dec 03:40
Compare
Choose a tag to compare

4.1.0 (2023-12-21)

Bug Fixes

Features

  • reimplement highlight row, node-extend & fix few issues (#275) (e29842a)

Installation

Please remember that all packages of @slickgrid-universal (v4.1.0) and Slickgrid-React (v4.1.0) must be updated at the same time and they will always get bumped on the same day to avoid any upgrade issues.

v4.0.2

16 Dec 21:41
Compare
Choose a tag to compare

4.0.2 (2023-12-16)

⚠️ BREAKING CHANGES

  • migrate to Slickgrid-Universal v4.0 new major version (#269) (e3b71e7)

Quick Info

This new release is merging SlickGrid into the project and is dropping the previous external 6pac/slickgrid dependency. The aim of this release is to be standalone, improve best practices & move towards CSP compliance while also making the project leaner. Merging SlickGrid into the projects has a few benefits, the biggest are (easier to troubleshoot, drop unused code, deduplicate code like DOM utils, decrease external dependencies usage and finally a small decrease in build size).

Another great feature in conjunction with this release is a new Documentation website powered by GitBook. This should be more pleasing to read and also easier to receive documentation changes (note that because of the changes from Wiki to GitBook, some of the links might be invalid and if you find any then please submit a PR).

Read the Migration to 4.0 for all the changes

Bug Fixes

  • deps: update all Slickgrid-Universal dependencies (0795026)
  • regression from PR #262, read external resource when required (dcf01e4)

Installation

Please remember that all packages of @slickgrid-universal (v4.0.3) and Slickgrid-React (v4.0.2) must be updated at the same time and they will always get bumped on the same day to avoid any upgrade issues.

v3.6.5 - invalid version

15 Dec 05:56
Compare
Choose a tag to compare

3.6.5 (2023-12-15)

THIS IS AN INVALID VERSION - Release-it made a totally invalid bump recommendation and thought it was a minor version even though I had a BREAKING CHANGE PR.

Please ignore this version, it was supposed to be v4.0

v3.6.4 - deprecated Formatters

13 Dec 00:42
Compare
Choose a tag to compare

3.6.4 (2023-12-13)

Please note that multiple built-in Formatters are now deprecated and will be removed in the next major version (which is coming very soon). Below is the list of Formatters and their alternatives with code sample on what to change. Note that the CSS class may vary depending on which UI framework you use.

Formatter removed cssClass equivalent alternative
Formatters.bold cssClass: 'text-bold' or fw-bold
Formatters.center cssClass: 'text-center'
Formatters.italic cssClass: 'text-italic' or fst-italic
Formatters.alignRight cssClass: 'text-right' or text-end
Formatters.lowercase cssClass: 'text-lowercase'
Formatters.uppercase cssClass: 'text-uppercase'
Formatters.fakeHyperlink cssClass: 'text-underline cursor' cssClass: 'fake-hyperlink'
Formatters.checkbox to be removed use the Formatters.iconBoolean
Formatters.deleteIcon to be removed use the Formatters.icon (see below)
Formatters.editIcon to be removed use the Formatters.icon (see below)
Formatters.infoIcon to be removed use the Formatters.icon (see below)
Formatters.yesNo to be removed create a custom Formatter

The alternative is to use cssClass as shown below

this.columnDefinitions = [
  { 
    id: 'firstName', name: 'First Name', field: 'firstName',
-   formatter: Formatters.bold
+   cssClass: 'text-bold'
  },
  { 
    id: 'lastName', name: 'Last Name', field: 'lastName',
-   formatter: Formatters.multiple, params: { formatters: [Formatters.uppercase, Formatters.bold] },
+   cssClass: 'text-uppercase text-bold'
  },
  {
    id: 'deleteIcon', name: '', field: '',
-   formatter: Formatters.deleteIcon, 
    // NOTE: we previously accepted "icon" and "formatterIcon" property in the past but these props will be removed
+   formatter: Formatters.icon, params: { iconCssClass: 'fa fa-trash pointer' }
  },
];

Installation

Please remember that all packages of @slickgrid-universal (v3.7.2) and Slickgrid-React (v3.6.4) must be updated at the same time and they will always get bumped on the same day to avoid any upgrade issues.

please remember that Slickgrid-Universal monorepo 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 Slickgrid-React changelog (above)

Bug Fixes

  • devMode can be false/object & use !important on text CSS utils (#270) (66576ee)

v3.6.3 - deprecated Formatters

08 Dec 18:56
Compare
Choose a tag to compare

3.6.3 (2023-12-08)

Please note that multiple built-in Formatters are now deprecated and will be removed in the next major version (which is coming very soon). Below is the list of Formatters and their alternatives with code sample on what to change. Note that the CSS class may vary depending on which UI framework you use.

Bug Fixes

  • registered external resouces should keep singleton ref (#262) (14703df)

Features

  • introduce devMode to support nodejs based unit testing (#267) (fff7e22)

Installation

Please remember that all packages of @slickgrid-universal (v3.7.1) and Slickgrid-React (v3.6.3) must be updated at the same time and they will always get bumped on the same day to avoid any upgrade issues.

please remember that Slickgrid-Universal monorepo 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 Slickgrid-React changelog (above)

v3.6.1

26 Nov 20:03
Compare
Choose a tag to compare

3.6.1 (2023-11-26)

Quick Info

I am now publishing Slickgrid-React and Slickgrid-Universal on npm with --provenance via GitHub Action (read this GitHub blog for more info), the provenance will now be visible on NPM as shown below.

image


Bug Fixes

  • add npm publish with provenance support (d190f05)

Features

  • GraphQL: .excludeFieldFromQuery, exclude field but keep fields (#261) (b0e67cf)

Installation

Please remember that all packages of @slickgrid-universal (v3.6.0) and Slickgrid-React (v3.6.1) must be updated at the same time and they will always get bumped on the same day to avoid any upgrade issues.

please remember that Slickgrid-Universal monorepo 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 Slickgrid-React changelog (above)

v3.5.1

11 Nov 00:54
Compare
Choose a tag to compare

3.5.1 (2023-11-13)

Release Info

This release brings couple of small features like compoundOperatorAltTexts (read Wiki) and GraphQL verbatimSearchTerms which avoid transforming filter searchTerms like null to an empty string (the lib does that by default because null wouldn't work on most filters which is why it is transformed to an empty string), some user might want the untouched terms and this verbatim flag gives you this. Most of the changes were done in Slickgrid-Universal

Bug Fixes

  • SlickCellRangeSelector stopped event bubbling in editor (#252) (f3e64e8)
  • add ms-select-vanilla missing type & improve pkg exports (#256) (dfd10b9), closes #1313
  • improve build & types exports for all targets, Node, CJS/ESM (#255) (d64d814)

Installation

Please remember that all packages of @slickgrid-universal (v3.5.0) and Slickgrid-React (v3.5.0) must be updated at the same time and they will always get bumped on the same day to avoid any upgrade issues.

please remember that Slickgrid-Universal monorepo 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 Slickgrid-React changelog (above)

v3.4.0

03 Nov 05:08
Compare
Choose a tag to compare

3.4.0 (2023-11-03)

Release Info

This new release brings nested sub-menu(s) to all Menu plugins, you can see examples below or see print screens in each PRs, you can use the sub-menus with 2 type of events (click or mouseover, the latter is the default). This involved a lot of refactoring, also please note that prior to this version ColumnPicker & GridMenu were created at the same time as the grid but menus were hidden and shown whenever clicked, however with this new release ColumnPicker/GridMenu will be created dynamically and on-the-fly.

This release also adds full support for GraphQL optional cursor pagination. Previous version never fully implemented cursor pagination until today. :) 🚀

Deprecations ⚠️

Please note that to align all Menu plugins, I decided to rename all HeaderMenu items array list as commandItems, updating your arrays are preferred but do not worry if you keep the previous names they still work and we will simply show a console warning for you to eventually change them.

  • Header Menu
    • rename items to commandItems

Examples with sub-menus & Wikis docs

Features

  • add sub-menus to all Menu extensions/plugins (#243) (63c60ed)
  • update GraphQL demo with cursor pagination (#245) (4fc6616)

Installation

Please remember that all packages of @slickgrid-universal (v3.4.2) and Slickgrid-React (v3.4.0) must be updated at the same time and they will always get bumped on the same day to avoid any upgrade issues.

please remember that Slickgrid-Universal monorepo 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 Slickgrid-React changelog (above)

v3.3.2

14 Oct 05:06
Compare
Choose a tag to compare

3.3.2 (2023-10-14)

Bug Fixes

  • graphql: column with complex object could throw null pointer exception (#229) (2cbb717)
  • remove unused code editor files from npm publish (e913649)