slate-edit-table
slate-edit-table copied to clipboard
Slate plugin for table edition
The latest slate change removes the selection.startKey value and replaced with selection.start.key The util function isSelectionInTable (and several others) will always return False. This was deprecated in 0.37.0 and removed...
Hello I am trying to find a way to exit the table especially when the table is last at the bottom of the editor. Ctrl + Enter or Shift +...
`Warning: The 'types' schema validation rule was changed. Please use the new 'match' syntax with 'type'` Schema rules have [changed](https://github.com/ianstormtaylor/slate/blob/master/packages/slate/Changelog.md#0360--july-27-2018) so the Schema.js file in this repo will need updating.
Since `v0.11.0` See comment https://github.com/GitbookIO/slate-edit-table/pull/38
This is kind of hard to describe so here's a gif :) http://recordit.co/ua7AwFMWey Steps to reproduce 1. Add text in a cell in a row (first cell of the row...
I have plugin set up like this: ``` const tablePlugin = PluginEditTable({ typeTable: ['table'], typeRow: ['table_row'], // and elements typeCell: ['table_cell', 'table_heading'] }); ``` adding this parameter object for PluginEditTable...
To reproduce: 1. Insert one table in a content, followed by a paragraph 2. Select all using Command+A 3. Press backspace 
The PR https://github.com/GitbookIO/slate-edit-table/pull/17 added a schema rule that prevent orphan cells or rows to exist, and wrap them in tables. An enhancement would be to wrap adjacent cells or rows...