-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rewrite table block to use a simpler RichText value (#8767)
* Rewrite table block to use a simpler RichText value * Remove TinyMCE table plugin * Add basic tests * Restore drop down table controls * move files to package * Fixes * More polish * Polish initial prompt again. * Add docs * Table: Address my own feedback from review * Componnet: Add isDisabled support for DropdownMenu controls * Table block: Fix an issue when removing all columns does not prompt table creation * Revert part of 19b7cb3
- Loading branch information
Showing
16 changed files
with
1,230 additions
and
467 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -554,7 +554,6 @@ function gutenberg_register_scripts_and_styles() { | |
array( | ||
'lodash', | ||
'tinymce-latest-lists', | ||
'tinymce-latest-table', | ||
'wp-a11y', | ||
'wp-api-fetch', | ||
'wp-blob', | ||
|
@@ -796,11 +795,6 @@ function gutenberg_register_vendor_scripts() { | |
'https://unpkg.com/tinymce@' . $tinymce_version . '/plugins/lists/plugin' . $suffix . '.js', | ||
array( 'wp-tinymce' ) | ||
); | ||
gutenberg_register_vendor_script( | ||
'tinymce-latest-table', | ||
'https://unpkg.com/tinymce@' . $tinymce_version . '/plugins/table/plugin' . $suffix . '.js', | ||
array( 'wp-tinymce' ) | ||
); | ||
gutenberg_register_vendor_script( | ||
'lodash', | ||
'https://unpkg.com/[email protected]/lodash' . $suffix . '.js' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.