@wordpress/block-library 8.3.11 → 8.3.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/block-library",
|
|
3
|
-
"version": "8.3.
|
|
3
|
+
"version": "8.3.13",
|
|
4
4
|
"description": "Block library for the WordPress editor.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -35,9 +35,9 @@
|
|
|
35
35
|
"@wordpress/api-fetch": "^6.23.1",
|
|
36
36
|
"@wordpress/autop": "^3.26.1",
|
|
37
37
|
"@wordpress/blob": "^3.26.1",
|
|
38
|
-
"@wordpress/block-editor": "^11.3.
|
|
38
|
+
"@wordpress/block-editor": "^11.3.10",
|
|
39
39
|
"@wordpress/blocks": "^12.3.3",
|
|
40
|
-
"@wordpress/components": "^23.3.
|
|
40
|
+
"@wordpress/components": "^23.3.7",
|
|
41
41
|
"@wordpress/compose": "^6.3.3",
|
|
42
42
|
"@wordpress/core-data": "^6.3.3",
|
|
43
43
|
"@wordpress/data": "^8.3.3",
|
|
@@ -54,9 +54,9 @@
|
|
|
54
54
|
"@wordpress/notices": "^3.26.3",
|
|
55
55
|
"@wordpress/primitives": "^3.24.2",
|
|
56
56
|
"@wordpress/private-apis": "^0.8.1",
|
|
57
|
-
"@wordpress/reusable-blocks": "^4.3.
|
|
58
|
-
"@wordpress/rich-text": "^6.3.
|
|
59
|
-
"@wordpress/server-side-render": "^4.3.
|
|
57
|
+
"@wordpress/reusable-blocks": "^4.3.10",
|
|
58
|
+
"@wordpress/rich-text": "^6.3.4",
|
|
59
|
+
"@wordpress/server-side-render": "^4.3.7",
|
|
60
60
|
"@wordpress/url": "^3.27.1",
|
|
61
61
|
"@wordpress/viewport": "^5.3.3",
|
|
62
62
|
"change-case": "^4.1.2",
|
|
@@ -77,5 +77,5 @@
|
|
|
77
77
|
"publishConfig": {
|
|
78
78
|
"access": "public"
|
|
79
79
|
},
|
|
80
|
-
"gitHead": "
|
|
80
|
+
"gitHead": "843a3053aca918bb10b939be28e676f8e71b751b"
|
|
81
81
|
}
|
|
@@ -58,11 +58,10 @@ function block_core_comment_template_render_comments( $comments, $block ) {
|
|
|
58
58
|
$block_content .= sprintf( '<ol>%1$s</ol>', $inner_content );
|
|
59
59
|
--$comment_depth;
|
|
60
60
|
} else {
|
|
61
|
-
$
|
|
61
|
+
$block_content .= block_core_comment_template_render_comments(
|
|
62
62
|
$children,
|
|
63
63
|
$block
|
|
64
64
|
);
|
|
65
|
-
$block_content .= sprintf( $inner_content );
|
|
66
65
|
}
|
|
67
66
|
}
|
|
68
67
|
|
|
@@ -142,14 +142,14 @@ function render_block_core_template_part( $attributes ) {
|
|
|
142
142
|
}
|
|
143
143
|
|
|
144
144
|
// Run through the actions that are typically taken on the_content.
|
|
145
|
+
$content = shortcode_unautop( $content );
|
|
146
|
+
$content = do_shortcode( $content );
|
|
145
147
|
$seen_ids[ $template_part_id ] = true;
|
|
146
148
|
$content = do_blocks( $content );
|
|
147
149
|
unset( $seen_ids[ $template_part_id ] );
|
|
148
150
|
$content = wptexturize( $content );
|
|
149
151
|
$content = convert_smilies( $content );
|
|
150
|
-
$content = shortcode_unautop( $content );
|
|
151
152
|
$content = wp_filter_content_tags( $content, "template_part_{$area}" );
|
|
152
|
-
$content = do_shortcode( $content );
|
|
153
153
|
|
|
154
154
|
// Handle embeds for block template parts.
|
|
155
155
|
global $wp_embed;
|