@wordpress/nux 9.0.3 → 9.2.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 +7 -3
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 9.2.0 (2024-06-26)
|
|
6
|
+
|
|
7
|
+
## 9.1.0 (2024-06-15)
|
|
8
|
+
|
|
5
9
|
## 9.0.0 (2024-05-31)
|
|
6
10
|
|
|
7
11
|
### Breaking Changes
|
|
@@ -96,7 +100,7 @@
|
|
|
96
100
|
|
|
97
101
|
## 5.0.0 (2021-07-29)
|
|
98
102
|
|
|
99
|
-
### Breaking
|
|
103
|
+
### Breaking Changes
|
|
100
104
|
|
|
101
105
|
- Upgraded React components to work with v17.0 ([#29118](https://github.com/WordPress/gutenberg/pull/29118)). There are no new features in React v17.0 as explained in the [blog post](https://reactjs.org/blog/2020/10/20/react-v17.html).
|
|
102
106
|
|
|
@@ -115,7 +119,7 @@
|
|
|
115
119
|
|
|
116
120
|
## 3.24.0 (2020-12-17)
|
|
117
121
|
|
|
118
|
-
### New
|
|
122
|
+
### New Features
|
|
119
123
|
|
|
120
124
|
- Added a store definition `store` for the core data namespace to use with `@wordpress/data` API ([#26655](https://github.com/WordPress/gutenberg/pull/26655)).
|
|
121
125
|
|
|
@@ -167,6 +171,6 @@
|
|
|
167
171
|
|
|
168
172
|
## 2.0.0 (2018-09-05)
|
|
169
173
|
|
|
170
|
-
### Breaking
|
|
174
|
+
### Breaking Changes
|
|
171
175
|
|
|
172
176
|
- Change how required built-ins are polyfilled with Babel 7 ([#9171](https://github.com/WordPress/gutenberg/pull/9171)). If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wordpress/nux",
|
|
3
|
-
"version": "9.0
|
|
3
|
+
"version": "9.2.0",
|
|
4
4
|
"description": "NUX (New User eXperience) module for WordPress.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -32,13 +32,13 @@
|
|
|
32
32
|
],
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@babel/runtime": "^7.16.0",
|
|
35
|
-
"@wordpress/components": "^28.0
|
|
36
|
-
"@wordpress/compose": "^7.0
|
|
37
|
-
"@wordpress/data": "^10.0
|
|
38
|
-
"@wordpress/deprecated": "^4.0
|
|
39
|
-
"@wordpress/element": "^6.0
|
|
40
|
-
"@wordpress/i18n": "^5.0
|
|
41
|
-
"@wordpress/icons": "^10.0
|
|
35
|
+
"@wordpress/components": "^28.2.0",
|
|
36
|
+
"@wordpress/compose": "^7.2.0",
|
|
37
|
+
"@wordpress/data": "^10.2.0",
|
|
38
|
+
"@wordpress/deprecated": "^4.2.0",
|
|
39
|
+
"@wordpress/element": "^6.2.0",
|
|
40
|
+
"@wordpress/i18n": "^5.2.0",
|
|
41
|
+
"@wordpress/icons": "^10.2.0"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"react": "^18.0.0",
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"publishConfig": {
|
|
48
48
|
"access": "public"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "aa5b14bb5bdbb8d8a02914e154c3bc1c2f18ace6"
|
|
51
51
|
}
|