Skip to content

Releases: ghiscoding/slickgrid-react

v5.6.0

24 Aug 21:26
Compare
Choose a tag to compare

5.6.0 (2024-08-24)

Release Info

With this release, we are migrating to the original Vanilla-Calendar-Pro project and dropping the vanilla-calendar-picker temporary fork and that is because all features & bug fixes I had in my fork were all merged recently to the original project (the fork was always meant to be a temporary thing).

There's also a new rowTopOffsetRenderType grid option that might be of interest, the default is top but if you set it to transform then all rows of the grid will use transform: translateY({offset}px) to position each row in the grid and the transform might actually improve perf as per this article: Why Moving Elements With Translate() Is Better Than Pos:abs Top/left

Features

  • migrate back to Vanilla-Calendar-Pro (1716f40)

v5.5.2

17 Aug 16:38
Compare
Choose a tag to compare

5.5.2 (2024-08-17)

Bug Fixes

  • use setTimeout/setInterval from window object with correct TS type (#397) (badb990)

Installation

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

also remember that Slickgrid-Universal monorepo is where the biggest portion of the code exists (~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)

v5.5.1

17 Aug 03:13
Compare
Choose a tag to compare

5.5.1 (2024-08-17)

Bug Fixes

v5.5.0 - Infinite Scroll

07 Aug 01:30
Compare
Choose a tag to compare

5.5.0 (2024-08-07)

Release Info

This new release adds the Infinite Scroll feature and with it adds not just 1 but 3 new examples to cover all use cases (read the new Infinite Scroll docs for more info)

  1. Example 38 - with OData Backend
  2. Example 39 - with GraphQL Backend
  3. Example 40 - with JSON data (local)

Infinite scrolling allows the grid to lazy-load rows from the server when reaching the scroll bottom (end) position. In its simplest form, the more the user scrolls down, the more rows get loaded. If we reached the end of the dataset and there is no more data to load, then we'll assume to have the entire dataset loaded in memory. This contrast with the regular Pagination approach which will only hold a single page data at a time.

Features

  • Infinite Scroll for Backend Services (OData/GraphQL) (#386) (8dc8d7b)
  • Infinite Scroll for JSON data (#387) (2d06248)

Bug Fixes


Installation

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

also remember that Slickgrid-Universal monorepo is where the biggest portion of the code exists (~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)

v5.4.0

20 Jul 18:57
Compare
Choose a tag to compare

5.4.0 (2024-07-20)

Features

  • add columnPickerLabel for custom label (#375) (0b86f12)

Bug Fixes

  • filterQueryOverride provide all search values (#374) (d7825e7)

Installation

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

also remember that Slickgrid-Universal monorepo is where the biggest portion of the code exists (~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)

v5.3.2

13 Jul 19:06
Compare
Choose a tag to compare

5.3.2 (2024-07-13)

Bug Fixes

  • SASS warnings & other unit test fixes (#372) (c526d2b)

Installation

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

also remember that Slickgrid-Universal monorepo is where the biggest portion of the code exists (~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)

v5.3.1

06 Jul 01:10
Compare
Choose a tag to compare

5.3.1 (2024-07-06)

Bug Fixes

  • Composite Editor should work with Cell Menu (#370) (e4d90a0)

v5.3.0

29 Jun 02:03
Compare
Choose a tag to compare

5.3.0 (2024-06-29)

Features

  • add onPreHeaderContextMenu for Column Picker usage (#368) (c5d16e2)

Bug Fixes

  • setting date picker should always work (#369) (8f68f66)

Installation

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

also remember that Slickgrid-Universal monorepo is where the biggest portion of the code exists (~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)

v5.2.0

18 Jun 02:18
Compare
Choose a tag to compare

5.2.0 (2024-06-18)

New Release Info

This new release brings Filter Shortcuts that once defined will be added as sub-menus the Column Header Menu. These shortcuts are nothing new in terms of what you can already do with Column Filters, however the main reason to use them is to define some filters with simple logic, for example give me all the Blanks or Non-Blanks Values or even better filter the last 6 months data. For more info and demo, take a look at:

  • Example 6 - Filter "Next 20 days" with Date Range
  • Example 15 - Filter "Description" Blanks/Non-Blanks and "Start" Until Now/Future
  • Read the Filter Shortcuts docs on how to use it

Lastly there's also a new Example 37 which is showing Column Totals in the grid Footer (the code was taken from an old SlickGrid example).


Features

  • add Footer Totals Row and fix footer styling (#366) (4f6226e)
  • add new optional filterShortcuts to Column Filter (#365) (88b8e93)
  • paste multiline content as single cell (d415a51)

Installation

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

also remember that Slickgrid-Universal monorepo is where the biggest portion of the code exists (~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)

v5.1.0 - Filter Predicates

08 Jun 03:46
Compare
Choose a tag to compare

5.1.0 (2024-06-08)

New Release Info

This new release brings a ton of new features and most of the new feature ideas came from this great Stack Overflow question Angular Slickgrid - Custom Filter which the user asked if it was possible to create a custom filter as SQL LIKE. So, from this idea in mind and considering that we already had a sortComparer for custom Sorting but no ways to customize Filtering, now let's work around this idea shall we?

  • filterPredicate for local JSON dataset (see Example 32 for SQL LIKE demo)
  • new filterQueryOverride which is the filter override for Backend Services (OData / GraphQL)
  • new OperatorType.custom that can be used with above custom filter predicate/override
  • new Operator a*z (StartsWith & EndsWith combo) available for local JSON dataset and Backend Services
  • new Top-Header panel which now allows the user to use both Draggable Grouping and Header Grouping together, this just wasn't possible before (see Example 18)

This new release also brings a lot of improvements to the Excel Export with a new Example 36 which demos how to dynamically use Excel Formulas (e.g. Sums), you can even use Excel Formulas with Grouping to do Sums, isn't it awesome!? Let's just say that pretty much everything you can do in excel-builder-vanilla, you can probably do in Slickgrid-Universal.


Features

  • add filterQueryOverride to GraphQL Service (#353) (7157271)
  • add filterQueryOverride to OData Service (#354) (8e53c4b)
  • add a filterPredicate option for user customization (#352) (abd9356)
  • add local data StartsWith/EndsWith (a*z) filter combo (#355) (23f3f9d)
  • add optional Top-Header for Draggable Grouping & Header Grouping (#358) (e4d1706)
  • add StartsWith/EndsWith (a*z) to OData/GraphQL (#356) (643f8a8)
  • enhance Excel valueParserCallback with dataContext & new demo (#350) (e1e6c0d)

Bug Fixes

  • demo: out of boundaries page Grid Preset should be unset (#347) (36a3a85)
  • Draggable Grouping drop zone should always be 100% wide (b15abe4)
  • TreeData: addItem should keep current sorted column (#359) (734a770)

Installation

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

also remember that Slickgrid-Universal monorepo is where the biggest portion of the code exists (~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)