@wordpress/commands 1.44.0 → 1.45.1-next.v.202604201441.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,12 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 1.45.0-next.0 (2026-04-20)
6
+
7
+ ### Enhancements
8
+
9
+ - Use `--wpds-cursor-control` for interactive cursor styling and replace all instances ([#77358](https://github.com/WordPress/gutenberg/pull/77358)).
10
+
5
11
  ## 1.44.0 (2026-04-15)
6
12
 
7
13
  ## 1.43.0 (2026-04-01)
@@ -172,7 +172,7 @@
172
172
  outline: none;
173
173
  }
174
174
  .commands-command-menu__container [cmdk-item] {
175
- cursor: pointer;
175
+ cursor: var(--wpds-cursor-control, pointer);
176
176
  display: flex;
177
177
  align-items: center;
178
178
  padding: 4px 0;
@@ -172,7 +172,7 @@
172
172
  outline: none;
173
173
  }
174
174
  .commands-command-menu__container [cmdk-item] {
175
- cursor: pointer;
175
+ cursor: var(--wpds-cursor-control, pointer);
176
176
  display: flex;
177
177
  align-items: center;
178
178
  padding: 4px 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/commands",
3
- "version": "1.44.0",
3
+ "version": "1.45.1-next.v.202604201441.0+dab6d8c07",
4
4
  "description": "Handles the commands menu.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -44,16 +44,16 @@
44
44
  "react-native": "src/index",
45
45
  "wpScript": true,
46
46
  "dependencies": {
47
- "@wordpress/base-styles": "^6.20.0",
48
- "@wordpress/components": "^32.6.0",
49
- "@wordpress/data": "^10.44.0",
50
- "@wordpress/element": "^6.44.0",
51
- "@wordpress/i18n": "^6.17.0",
52
- "@wordpress/icons": "^12.2.0",
53
- "@wordpress/keyboard-shortcuts": "^5.44.0",
54
- "@wordpress/preferences": "^4.44.0",
55
- "@wordpress/private-apis": "^1.44.0",
56
- "@wordpress/warning": "^3.44.0",
47
+ "@wordpress/base-styles": "^6.20.1-next.v.202604201441.0+dab6d8c07",
48
+ "@wordpress/components": "^33.0.1-next.v.202604201441.0+dab6d8c07",
49
+ "@wordpress/data": "^10.45.1-next.v.202604201441.0+dab6d8c07",
50
+ "@wordpress/element": "^6.44.1-next.v.202604201441.0+dab6d8c07",
51
+ "@wordpress/i18n": "^6.17.1-next.v.202604201441.0+dab6d8c07",
52
+ "@wordpress/icons": "^12.2.1-next.v.202604201441.0+dab6d8c07",
53
+ "@wordpress/keyboard-shortcuts": "^5.44.1-next.v.202604201441.0+dab6d8c07",
54
+ "@wordpress/preferences": "^4.44.1-next.v.202604201441.0+dab6d8c07",
55
+ "@wordpress/private-apis": "^1.44.1-next.v.202604201441.0+dab6d8c07",
56
+ "@wordpress/warning": "^3.44.1-next.v.202604201441.0+dab6d8c07",
57
57
  "clsx": "^2.1.1",
58
58
  "cmdk": "^1.0.0"
59
59
  },
@@ -64,5 +64,5 @@
64
64
  "publishConfig": {
65
65
  "access": "public"
66
66
  },
67
- "gitHead": "b862d8c84121a47bbeff882f6c87e61681ce2e0d"
67
+ "gitHead": "c788005ba4ee2a34851c1217c51602656aa7c3a6"
68
68
  }
@@ -80,7 +80,7 @@ $palette-header-height: 48px;
80
80
  }
81
81
 
82
82
  [cmdk-item] {
83
- cursor: pointer;
83
+ cursor: var(--wpds-cursor-control);
84
84
  display: flex;
85
85
  align-items: center;
86
86
  padding: $grid-unit-05 0;