@wordpress/commands 1.25.0 → 1.26.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 +2 -0
- package/README.md +8 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -56,6 +56,14 @@ npm install @wordpress/commands --save
|
|
|
56
56
|
|
|
57
57
|
_This package assumes that your code will run in an **ES2015+** environment. If you're using an environment that has limited or no support for such language features and APIs, you should include [the polyfill shipped in `@wordpress/babel-preset-default`](https://github.com/WordPress/gutenberg/tree/HEAD/packages/babel-preset-default#polyfill) in your code._
|
|
58
58
|
|
|
59
|
+
_This package requires the following stylesheets to be included for proper styling:_
|
|
60
|
+
|
|
61
|
+
```css
|
|
62
|
+
/* From node_modules: */
|
|
63
|
+
@import '@wordpress/components/build-style/style.css';
|
|
64
|
+
@import '@wordpress/commands/build-style/style.css';
|
|
65
|
+
```
|
|
66
|
+
|
|
59
67
|
## API
|
|
60
68
|
|
|
61
69
|
<!-- START TOKEN(Autogenerated API docs) -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/commands",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.26.0",
|
|
4
4
|
"description": "Handles the commands menu.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -29,13 +29,13 @@
|
|
|
29
29
|
"wpScript": true,
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@babel/runtime": "7.25.7",
|
|
32
|
-
"@wordpress/components": "^29.
|
|
33
|
-
"@wordpress/data": "^10.
|
|
34
|
-
"@wordpress/element": "^6.
|
|
35
|
-
"@wordpress/i18n": "^5.
|
|
36
|
-
"@wordpress/icons": "^10.
|
|
37
|
-
"@wordpress/keyboard-shortcuts": "^5.
|
|
38
|
-
"@wordpress/private-apis": "^1.
|
|
32
|
+
"@wordpress/components": "^29.12.0",
|
|
33
|
+
"@wordpress/data": "^10.26.0",
|
|
34
|
+
"@wordpress/element": "^6.26.0",
|
|
35
|
+
"@wordpress/i18n": "^5.26.0",
|
|
36
|
+
"@wordpress/icons": "^10.26.0",
|
|
37
|
+
"@wordpress/keyboard-shortcuts": "^5.26.0",
|
|
38
|
+
"@wordpress/private-apis": "^1.26.0",
|
|
39
39
|
"clsx": "^2.1.1",
|
|
40
40
|
"cmdk": "^1.0.0"
|
|
41
41
|
},
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"publishConfig": {
|
|
47
47
|
"access": "public"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "35e26942820d8237771af0c58e45b4303f0497f1"
|
|
50
50
|
}
|