Releases: ghiscoding/aurelia-slickgrid
v8.5.2
8.5.2 (2024-08-17)
Bug Fixes
- use setTimeout/setInterval from window object with correct TS type (#1252) (f272174) - by @ghiscoding
Installation
Please remember that all packages of @slickgrid-universal
(v5.5.2
) and Aurelia-Slickgrid
(v8.5.2
) 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
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.
- review the Slickgrid-Universal changelog
- and the Aurelia-Slickgrid changelog (above)
v8.5.1
8.5.1 (2024-08-17)
Bug Fixes
- deps: update all non-major dependencies (#1249) (e439c05) - by @renovate-bot
- Tree Data should work without initial sort (#1251) (98546d0) - by @ghiscoding
v8.5.0 - Infinite Scroll
8.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)
- Example 38 - with OData Backend
- Example 39 - with GraphQL Backend
- 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) (#1244) (c19ddbb) - by @ghiscoding
- Infinite Scroll for JSON data (#1245) (a982443) - by @ghiscoding
Installation
Please remember that all packages of @slickgrid-universal
(v5.5.0
) and Aurelia-Slickgrid
(v8.5.0
) 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
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.
- review the Slickgrid-Universal changelog
- and the Aurelia-Slickgrid changelog (above)
v8.4.0
8.4.0 (2024-07-20)
Features
- add
columnPickerLabel
for custom label (#1239) (a83e958) - by @ghiscoding
Bug Fixes
filterQueryOverride
provide all search values (#1238) (0c2aea3) - by @ghiscoding
Installation
Please remember that all packages of @slickgrid-universal
(v5.4.0
) and Aurelia-Slickgrid
(v8.4.0
) 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
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.
- review the Slickgrid-Universal changelog
- and the Aurelia-Slickgrid changelog (above)
v8.3.2
8.3.2 (2024-07-13)
Bug Fixes
- SASS warnings & other unit test fixes (#1235) (7b9965a) - by @ghiscoding
Installation
Please remember that all packages of @slickgrid-universal
(v5.3.4
) and Aurelia-Slickgrid
(v8.3.2
) 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
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.
- review the Slickgrid-Universal changelog
- and the Aurelia-Slickgrid changelog (above)
v8.3.1
8.3.1 (2024-07-06)
Bug Fixes
- Composite Editor should work with Cell Menu (#1230) (f799cf9) - by @ghiscoding
v8.3.0
8.3.0 (2024-06-29)
Features
- add onPreHeaderContextMenu for Column Picker usage (#1228) (fc43fa8) - by @ghiscoding
Bug Fixes
- deps: update all non-major dependencies (#1226) (c98dd52) - by @renovate-bot
- setting date picker should always work (#1229) (b1b763a) - by @ghiscoding
Installation
Please remember that all packages of @slickgrid-universal
(v5.3.2
) and Aurelia-Slickgrid
(v8.3.0
) 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
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.
- review the Slickgrid-Universal changelog
- and the Aurelia-Slickgrid changelog (above)
v8.2.0
8.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 (#1224) (f1ae45c) - by @ghiscoding
- add new optional
filterShortcuts
to Column Filter (#1223) (d4b1e28) - by @ghiscoding - paste multiline content as single cell (3e74491) - by @ghiscoding
Installation
Please remember that all packages of @slickgrid-universal
(v5.2.0
) and Aurelia-Slickgrid
(v8.2.0
) 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
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.
- review the Slickgrid-Universal changelog
- and the Aurelia-Slickgrid changelog (above)
v8.1.0 - Filter Predicates
8.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 forSQL 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.
A huge thanks to @zewa666 and @jr01 for their contributions & feedback to add some of these new features and fixes. 🚀
Features
- add
filterQueryOverride
to GraphQL Service (#1214) (507a79a) - by @ghiscoding - add
filterQueryOverride
to OData Service (#1215) (988118f) - by @ghiscoding - add a
filterPredicate
option for user customization (#1213) (9caf80e) - by @ghiscoding - add local data StartsWith/EndsWith (
a*z
) filter combo (#1216) (677fd4c) - by @ghiscoding - add optional Top-Header for Draggable Grouping & Header Grouping (#1219) (3e555f5) - by @ghiscoding
- add StartsWith/EndsWith (
a*z
) to OData/GraphQL (#1217) (c8122e7) - by @ghiscoding - enhance Excel
valueParserCallback
with dataContext & new demo (#1211) (fdcc1cf) - by @ghiscoding
Bug Fixes
- demo: out of boundaries page Grid Preset should be unset (#1209) (e1a4d46) - by @ghiscoding
- deps: update all non-major dependencies (#1207) (c3bb68e) - by @renovate-bot
- TreeData: addItem should keep current sorted column (#1221) (87c39fb) - by @ghiscoding
- using caret
^
to get latest Aurelia 2 Beta 17 version (#1206) (e1d412d) - by @ghiscoding
Installation
Please remember that all packages of @slickgrid-universal
(v5.1.0
) and Aurelia-Slickgrid
(v8.1.0
) 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
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.
- review the Slickgrid-Universal changelog
- and the Aurelia-Slickgrid changelog (above)
v8.0.1
8.0.1 (2024-05-12)
Bug Fixes
- small styling issues & better primary color support w/Dark Mode (#1204) (9636a5b) - by @ghiscoding