Themes: Alphabetize the properties list in WP_Theme_JSON::VALID_STYLES for consistency.

Follow-up to [53129], [54253], [55008].

See #57354.
Built from https://develop.svn.wordpress.org/trunk@55009


git-svn-id: http://core.svn.wordpress.org/trunk@54542 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2022-12-20 13:57:15 +00:00
parent 3ddfa88245
commit 9dfc9375da
2 changed files with 3 additions and 3 deletions

View File

@ -280,8 +280,8 @@ class WP_Theme_JSON {
'settings', 'settings',
'styles', 'styles',
'templateParts', 'templateParts',
'version',
'title', 'title',
'version',
); );
/** /**
@ -381,13 +381,13 @@ class WP_Theme_JSON {
'filter' => array( 'filter' => array(
'duotone' => null, 'duotone' => null,
), ),
'shadow' => null,
'outline' => array( 'outline' => array(
'color' => null, 'color' => null,
'offset' => null, 'offset' => null,
'style' => null, 'style' => null,
'width' => null, 'width' => null,
), ),
'shadow' => null,
'spacing' => array( 'spacing' => array(
'margin' => null, 'margin' => null,
'padding' => null, 'padding' => null,

View File

@ -16,7 +16,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '6.2-alpha-55008'; $wp_version = '6.2-alpha-55009';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.