Skip to content

Latest commit

 

History

History
88 lines (55 loc) · 3.61 KB

CHANGELOG.md

File metadata and controls

88 lines (55 loc) · 3.61 KB

Changelog

All notable changes to this project will be documented in this file.

1.7.2 - 2023-09-29

  • Add support to bubble theme #14

1.7.1 - 2023-09-15

  • Allow show/hide table border when cursored within a table and selection adjustments #13 by @cfonseca88

1.7.0 - 2023-09-12

  • Show/hide table border #12 by @cfonseca88
  • Fix cmd key not working on Mac

1.6.5 - 2023-07-11

  • Fix remove row function not working if cursor is in cell #10 by @cfonseca88
  • Fix quill delta in text-change event during split cell #9 by @vtejuf
  • Update quill-delta, webpack-cli dev dependency

1.6.4 - 2023-01-23

  • Manage th, empty td and td without p #7

1.6.3 - 2022-12-14

  • Specify which export should be exposed as a library in webpack config #6

1.6.2 - 2022-11-07

  • Add typescript definition #5

1.6.1 - 2022-09-22

  • Fix "Edge case for delete then undo of cell" #3

1.6.0 - 2022-09-01

  • Update dependencies

Added

1.5.2 - 2022-08-04

Changed

  • Improve TableToolbar enabled/disabled options (updated selectors)

1.5.1 - 2022-07-04

Added

  • Copy table selection to clipboard (ctrl+c)

1.5.0 - 2022-07-01

Changed

  • Manage multiple instances of quill1-table

Breaking Changes

  • Keyboard bindings handler functions must be used as regular functions in order to pass this.quill to TableModule.keyboardHandler method (as first argument, before key name)
  • Table data (containing pasted, row_counter and cell_counter) is no longer stored in quill.history.tables, stored in quill.table.tables instead
  • TableSelection.isInTable moved to quill.table.isInTable (for managing multiple instances)
  • TableHistory.undo and TableHistory.redo need quill instance as first argument (and change id as second argument)
  • TableSelection.mouseDown, TableSelection.mouseMove, TableSelection.mouseUp and TableSelection.selectionChange need quill instance as first argument