Skip to content

Commit

Permalink
Release new version.
Browse files Browse the repository at this point in the history
  • Loading branch information
thet committed Oct 16, 2023
1 parent 5092d4c commit 76ce7dd
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,48 @@ More information here:



### Maintenance


* Disable horizontal table cell resizing. ([81214c6](https://github.com/patternslib/pat-tiptap/commit/81214c6a7f12dea6dc3a4ec91b3cbbf915fb7a4d))

We would need quite some extra CSS for the `.column-resize-handle` for a
questionable benefit. Disable it for now until we need it back and find
a solution for the missing CSS.
Example for the CSS to be added (touches also table and cell styles):
https://tiptap.dev/api/nodes/table#resizable


* Upgrade dependencies. ([a5ea09b](https://github.com/patternslib/pat-tiptap/commit/a5ea09b7669a768a96d9870d2785a89df550c1de))


* Use a different webpack dev server port than the default Patternslib one. ([a099635](https://github.com/patternslib/pat-tiptap/commit/a09963582cff49a22696675a863a971d58dc332c))

## [4.8.6](https://github.com/patternslib/pat-tiptap/compare/4.8.5...4.8.6) (2023-10-16)


### Bug Fixes


* Fix problem with table not selectable with <ctrl>-<a> ([4284664](https://github.com/patternslib/pat-tiptap/commit/42846644dc06ffe820efa796ad395e093a73a5bc))

There is a strange problem with tables and selecting all content with
<ctrl>-<a>. When the last node in the document is a table and the last
table cell is empty, then pressing <CTRL>-<a> to select everyting only
selects the very first node in the document. As soon as one of the
conditions - table not the last node or last table cell not empty - is
not met, <CTRL>-<a> selects all, as expected.

We fix the problem by making sure some content is following the table
and add an empty paragraph. When another solution is found we can remove
this hack again.

More information here:
- https://github.com/ueberdosis/tiptap/issues/2401
- https://github.com/ueberdosis/tiptap/issues/3651



### Maintenance


Expand Down

0 comments on commit 76ce7dd

Please sign in to comment.