@wordpress/style-engine 2.31.1-next.f56bd8138.0 → 2.32.0

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/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 2.32.0 (2025-10-01)
6
+
5
7
  ## 2.31.0 (2025-09-17)
6
8
 
7
9
  ## 2.30.0 (2025-09-03)
@@ -4,7 +4,7 @@
4
4
  *
5
5
  * Holds, sanitizes and prints CSS rules declarations
6
6
  *
7
- * @package Gutenberg
7
+ * @package gutenberg
8
8
  */
9
9
 
10
10
  if ( ! class_exists( 'WP_Style_Engine_CSS_Declarations' ) ) {
@@ -4,7 +4,7 @@
4
4
  *
5
5
  * An object for CSS rules.
6
6
  *
7
- * @package Gutenberg
7
+ * @package gutenberg
8
8
  */
9
9
 
10
10
  if ( ! class_exists( 'WP_Style_Engine_CSS_Rule' ) ) {
@@ -4,7 +4,7 @@
4
4
  *
5
5
  * A store for WP_Style_Engine_CSS_Rule objects.
6
6
  *
7
- * @package Gutenberg
7
+ * @package gutenberg
8
8
  */
9
9
 
10
10
  if ( ! class_exists( 'WP_Style_Engine_CSS_Rules_Store' ) ) {
@@ -4,7 +4,7 @@
4
4
  *
5
5
  * Compiles styles from stores or collection of CSS rules.
6
6
  *
7
- * @package Gutenberg
7
+ * @package gutenberg
8
8
  */
9
9
 
10
10
  if ( ! class_exists( 'WP_Style_Engine_Processor' ) ) {
@@ -4,7 +4,7 @@
4
4
  *
5
5
  * Generates classnames and block styles.
6
6
  *
7
- * @package Gutenberg
7
+ * @package gutenberg
8
8
  */
9
9
 
10
10
  if ( ! class_exists( 'WP_Style_Engine' ) ) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/style-engine",
3
- "version": "2.31.1-next.f56bd8138.0",
3
+ "version": "2.32.0",
4
4
  "description": "A suite of parsers and compilers for WordPress styles.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -37,5 +37,5 @@
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "gitHead": "ea4a281fd857f48338877590de8c8eb9b9a8cef4"
40
+ "gitHead": "a030b4c0e0695239b942c7dc18511782b64f10ed"
41
41
  }
package/style-engine.php CHANGED
@@ -5,7 +5,7 @@
5
5
  * This file contains a variety of public functions developers can use to interact with
6
6
  * the Style Engine API.
7
7
  *
8
- * @package Gutenberg
8
+ * @package gutenberg
9
9
  */
10
10
 
11
11
  /**