Editor: Update @wordpress npm packages

Update @wordpress npm packages to the latest published versions. This means that
the block editor includes functionality that exists in Gutenberg 9.9.

Fixes #52334.

Built from https://develop.svn.wordpress.org/trunk@50137


git-svn-id: http://core.svn.wordpress.org/trunk@49816 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
noisysocks
2021-02-02 05:17:13 +00:00
parent 2642a446b3
commit 351400af80
137 changed files with 17865 additions and 14985 deletions

View File

@@ -300,7 +300,7 @@ class WP_Block_Parser {
*/
if ( 0 === $stack_depth ) {
if ( isset( $leading_html_start ) ) {
$this->output[] = (array) self::freeform(
$this->output[] = (array) $this->freeform(
substr(
$this->document,
$leading_html_start,
@@ -492,7 +492,7 @@ class WP_Block_Parser {
return;
}
$this->output[] = (array) self::freeform( substr( $this->document, $this->offset, $length ) );
$this->output[] = (array) $this->freeform( substr( $this->document, $this->offset, $length ) );
}
/**
@@ -541,7 +541,7 @@ class WP_Block_Parser {
}
if ( isset( $stack_top->leading_html_start ) ) {
$this->output[] = (array) self::freeform(
$this->output[] = (array) $this->freeform(
substr(
$this->document,
$stack_top->leading_html_start,