Skip to content

Releases: Akinzekeel/BlazorGrid

v1.0.8

14 Jan 17:31
Compare
Choose a tag to compare

Package updated to .NET 6

Changes:

  • No other notable changes in this release

v1.0.7

07 Sep 14:02
Compare
Choose a tag to compare

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

22 Jul 20:03
Compare
Choose a tag to compare

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

  • 8a54515 Add new RowHighlighting parameter
  • c54fb4c Remove remaining parts of the cancelled Filtering feature

1.0.5

23 Jan 21:43
Compare
Choose a tag to compare

Changes:

  • cb52dc0 Isolate variables into content files (#30)
  • 9db91f8 Add missing "overflow: hidden" to grid cells

v1.0.4

16 Jan 14:52
Compare
Choose a tag to compare

Changes:

  • f20f455 Move SearchQueryInputDebounceMs to IBlazorGridConfig
  • bf0666d Remove obsolete DefaultPageSize
  • a780a98 Additional fixes for rapid scrolling in 5.0.2

v1.0.3

16 Jan 13:59
Compare
Choose a tag to compare

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

04 Jan 16:16
Compare
Choose a tag to compare

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

31 Dec 10:41
Compare
Choose a tag to compare

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

26 Dec 21:04
Compare
Choose a tag to compare

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.