Skip to content

Releases: bennyboer/table-engine

v0.2.2

07 Aug 18:47
5f5510a
Compare
Choose a tag to compare

New features

  • new option options.renderer.canvas.scrollBar.drawOverFixedAreas to decide whether the scrollbars should be drawn over fixed areas which is the new default

v0.2.1

03 Aug 12:27
c60a79b
Compare
Choose a tag to compare

Breaking change

Introduced advanced fixed areas.
Now you can fix rows to the bottom and columns to the right.
The options fixedRows and fixedColumns have been changed to fixedAreas.top and fixedAreas.left.

v0.2.0

02 Aug 12:51
Compare
Choose a tag to compare
  • New cell renderers button and progress

v0.1.7

28 Jul 13:42
Compare
Choose a tag to compare

Bugfixes

  • Fixed error where row and column headers could be selected via ROW_COLUMN_SELECTION_TRANSFORM
  • Fixed error where double-clicking a resizer even worked when resizing was disabled
  • Fixed error where auto scrolling when dragging the mouse outside the table would not work instantly

v0.1.6

25 Jul 19:01
Compare
Choose a tag to compare

Hotfix release fixing problems that arise when having a page that is able to scroll.

v0.1.5

24 Jul 14:44
Compare
Choose a tag to compare

New features

  • Double-clicking a row or column resizer will now invoke a special action that by default resizes the row or column to fit its content
  • New option to force the selection to only encompass a single cell

Bugfixes

  • extending a selection using Shift did not work properly in some cases

Other

  • Testing the selection model

v0.1.4

22 Jul 18:29
8abc1b5
Compare
Choose a tag to compare
  • Fixed a bug where setting fixed rows or fixed columns to 0 would crash the table
  • Fixed a bug where merged cells that overlap from the fixed area to the scrollable area were displayed strangely
  • Introduced ES module bundle in release

v0.1.3

20 Jul 15:49
Compare
Choose a tag to compare

New features

  • #9 new combobox cell renderer
    grafik

Bugfixes

  • Copying cells using Ctrl+C did not work in the demo application because user-select: none prevented copying

v0.1.2

28 Sep 11:52
Compare
Choose a tag to compare
v0.1.2 Pre-release
Pre-release

Fixed bug where onDisappearing on the cell renderers would not be called once the cell disappeared from viewport due to cell deleting or hiding.

v0.1.1

22 Sep 18:21
2df56d5
Compare
Choose a tag to compare
v0.1.1 Pre-release
Pre-release
  • Adding DOMCellRenderer to render HTML/DOM elements in a cell (Use sparingly as this might affect performance when used too much and with huge DOM trees)
  • Implemented onDisappearing hook in cell renderers that allows taking action once a cell is scrolled out of the visible area (viewport)
  • Small bugfixes