Releases: Akinzekeel/BlazorGrid
v1.0.8
v1.0.7
Changes:
- 9688f1d Remove the default "overflow: hidden" property on grid cells as it was causing unexpected height calculation glitches
- 6e29df5 Translation to Spanish (thanks @restebanlm)
1.0.6
New feature: Row highlighting
This release contains a single new feature: Row highlighting (you may also refer to this as row selection). To enable this feature on a grid, simply set the RowHighlighting parameter to true. Click here to see it in action.
Other changes
From this version onwards, there is no more direct dependency on System.Text.Json.
Potential breaking change
BlazorGrid was originally planned to include filtering, however this feature is now no longer planned since it is much easier to create customized filtering logic at an application level rather than in an agnostic component library like this. Some parts of the filtering had still been around, however those classes have now been removed. If, for some reason, you were referencing any of these filtering classes (such as the FilterDescriptor) then this release may break your code.
Note that highlighting requires 2 new Sass variables, so if you previously copied the Sass by hand you will have to pull a current copy.
Commits
1.0.5
v1.0.4
v1.0.3
Changes:
- 580a958 Fix an issue where rapid scrolling may cause a "CancellationTokenSource disposed" exception (#28)
- a02445e Remove legacy parameters SourceUrl and Rows from code, tests and docs
- 34391e4 Optimizations for handling overflow in grid cells
This release turned out to be unstable. Please use 1.0.4 instead.
v1.0.2
Minor update this time
Changes:
- d9b6f3d Add protobuf file for easy use with gRPC. The file is not compiled so there are no dependencies. Compiling & using this file is up to you if you need it. More information will be added to the documentation later on.
- b79329c Fix libman.json, package.json and package-lock.json being included in the Content output
- 6133ccd Fix error overlay persisting after retrying successfully (#29)
v1.0.1
First noteworthy update is out!
There is going to be breaking change eventually where the IGridProvider dependency is removed in favor of the new Provider delegate (similar to the Virtualize ItemsProvider delegate). This will make it much easier to integrate with other transport layers such as gRPC.
For now, anything related to the IGridProvider will still work but is marked as obsolete and is also no longer mentioned in the documentation.
Changes:
- 10099b9 Add a new provider delegate parameter in favor of the legacy IGridProvider (#27)
- 39724ea Fix column background color turning transparent on hover in the docs (#24)
- 08f3090 Move BlazorGrid.scss to /Content and mark it to be included, but keep the scss in /Styles excluded. This should make it easier to keep custom Scss building up to date without having to re-download from GitHub and also reduce the size of the NuGet package
v1.0.0
BlazorGrid is now officially out of preview!
Check the official website https://blazorgrid.z6.web.core.windows.net for more information as well as examples & documentation.