diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-19 04:51:18 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-19 04:51:18 +0000 |
commit | 0e41b5d52fdc6af6442816b5f465c9db9f84e126 (patch) | |
tree | e139a90049b158d4eed892d1662ee7f5c358fa31 /wp-includes/blocks/search.php | |
parent | Adding upstream version 6.5.5+dfsg1. (diff) | |
download | wordpress-upstream.tar.xz wordpress-upstream.zip |
Adding upstream version 6.6.1+dfsg1.upstream/6.6.1+dfsg1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'wp-includes/blocks/search.php')
-rw-r--r-- | wp-includes/blocks/search.php | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/wp-includes/blocks/search.php b/wp-includes/blocks/search.php index ca8c70e..39b8591 100644 --- a/wp-includes/blocks/search.php +++ b/wp-includes/blocks/search.php @@ -191,8 +191,8 @@ function render_block_core_search( $attributes ) { data-wp-interactive="core/search"' . $form_context . 'data-wp-class--wp-block-search__searchfield-hidden="!context.isSearchInputVisible" - data-wp-on--keydown="actions.handleSearchKeydown" - data-wp-on--focusout="actions.handleSearchFocusout" + data-wp-on-async--keydown="actions.handleSearchKeydown" + data-wp-on-async--focusout="actions.handleSearchFocusout" '; } @@ -207,6 +207,8 @@ function render_block_core_search( $attributes ) { /** * Registers the `core/search` block on the server. + * + * @since 5.2.0 */ function register_block_core_search() { register_block_type_from_metadata( @@ -221,6 +223,8 @@ add_action( 'init', 'register_block_core_search' ); /** * Builds the correct top level classnames for the 'core/search' block. * + * @since 5.6.0 + * * @param array $attributes The block attributes. * * @return string The classnames used in the block. @@ -265,6 +269,8 @@ function classnames_for_block_core_search( $attributes ) { * or not, the generated rule is injected into the appropriate collection of * styles for later application in the block's markup. * + * @since 6.1.0 + * * @param array $attributes The block attributes. * @param string $property Border property to generate rule for e.g. width or color. * @param string $side Optional side border. The dictates the value retrieved and final CSS property. @@ -310,6 +316,8 @@ function apply_block_core_search_border_style( $attributes, $property, $side, &$ * injects rules into the provided wrapper, button and input style arrays for * uniform "flat" borders or those with individual sides configured. * + * @since 6.1.0 + * * @param array $attributes The block attributes. * @param string $property Border property to generate rule for e.g. width or color. * @param array $wrapper_styles Current collection of wrapper styles. @@ -331,6 +339,8 @@ function apply_block_core_search_border_styles( $attributes, $property, &$wrappe * inner input or button and a second for the inner wrapper should the block * be positioning the button "inside". * + * @since 5.8.0 + * * @param array $attributes The block attributes. * * @return array Style HTML attribute. @@ -457,7 +467,9 @@ function styles_for_block_core_search( $attributes ) { } /** - * Returns typography classnames depending on whether there are named font sizes/families . + * Returns typography classnames depending on whether there are named font sizes/families. + * + * @since 6.1.0 * * @param array $attributes The block attributes. * @@ -483,6 +495,8 @@ function get_typography_classes_for_block_core_search( $attributes ) { * Returns typography styles to be included in an HTML style tag. * This excludes text-decoration, which is applied only to the label and button elements of the search block. * + * @since 6.1.0 + * * @param array $attributes The block attributes. * * @return string A string of typography CSS declarations. @@ -533,6 +547,8 @@ function get_typography_styles_for_block_core_search( $attributes ) { /** * Returns border color classnames depending on whether there are named or custom border colors. * + * @since 5.9.0 + * * @param array $attributes The block attributes. * * @return string The border color classnames to be applied to the block elements. @@ -556,6 +572,8 @@ function get_border_color_classes_for_block_core_search( $attributes ) { /** * Returns color classnames depending on whether there are named or custom text and background colors. * + * @since 5.9.0 + * * @param array $attributes The block attributes. * * @return string The color classnames to be applied to the block elements. |