@wordpress/interface 4.1.15 → 4.2.1

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,11 +2,19 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 4.2.1 (2022-02-10)
6
+
7
+ ### Bug Fix
8
+
9
+ - Removed unused `@wordpress/deprecated` dependency ([#38388](https://github.com/WordPress/gutenberg/pull/38388)).
10
+
11
+ ## 4.2.0 (2022-01-27)
12
+
5
13
  ## 4.1.0 (2021-09-09)
6
14
 
7
15
  ### New Feature
8
16
 
9
- - Add support for editor 'feature' preferences. Adds an `isFeatureActive` selector, a `toggleFeature` action, a `MoreMenuDropdown` component, and a `MoreMenuFeatureToggle` component. ([#33774](https://github.com/WordPress/gutenberg/pull/33774)).
17
+ - Add support for editor 'feature' preferences. Adds an `isFeatureActive` selector, a `toggleFeature` action, a `MoreMenuDropdown` component, and a `MoreMenuFeatureToggle` component. ([#33774](https://github.com/WordPress/gutenberg/pull/33774)).
10
18
 
11
19
  ## 4.0.0 (2021-07-29)
12
20
 
package/LICENSE.md CHANGED
@@ -1,6 +1,6 @@
1
1
  ## Gutenberg
2
2
 
3
- Copyright 2016-2021 by the contributors
3
+ Copyright 2016-2022 by the contributors
4
4
 
5
5
  **License for Contributions (on and after April 15, 2021)**
6
6
 
package/README.md CHANGED
@@ -69,8 +69,6 @@ wp.data.dispatch( 'core/interface' ).unpinItem( 'core/edit-post', 'edit-post-blo
69
69
  wp.data.select( 'core/interface' ).isItemPinned( 'core/edit-post', 'edit-post-block-patterns/block-patterns-sidebar' ); -> false
70
70
  ```
71
71
 
72
- <br/><br/><p align="center"><img src="https://s.w.org/style/images/codeispoetry.png?1" alt="Code is Poetry." /></p>
73
-
74
72
  ### Preferences
75
73
 
76
74
  The interface package provides some helpers for implementing editor preferences.
@@ -135,3 +133,11 @@ function MyEditorMenu() {
135
133
  );
136
134
  }
137
135
  ```
136
+
137
+ ## Contributing to this package
138
+
139
+ This is an individual package that's part of the Gutenberg project. The project is organized as a monorepo. It's made up of multiple self-contained software packages, each with a specific purpose. The packages in this monorepo are published to [npm](https://www.npmjs.com/) and used by [WordPress](https://make.wordpress.org/core/) as well as other software projects.
140
+
141
+ To find out more about contributing to this package or Gutenberg as a whole, please read the project's main [contributor guide](https://github.com/WordPress/gutenberg/tree/HEAD/CONTRIBUTING.md).
142
+
143
+ <br /><br /><p align="center"><img src="https://s.w.org/style/images/codeispoetry.png?1" alt="Code is Poetry." /></p>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/interface",
3
- "version": "4.1.15",
3
+ "version": "4.2.1",
4
4
  "description": "Interface module for WordPress. The package contains shared functionality across the modern JavaScript-based WordPress screens.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -32,21 +32,20 @@
32
32
  ],
33
33
  "dependencies": {
34
34
  "@babel/runtime": "^7.16.0",
35
- "@wordpress/a11y": "^3.2.4",
36
- "@wordpress/components": "^19.2.0",
37
- "@wordpress/compose": "^5.0.7",
38
- "@wordpress/data": "^6.1.5",
39
- "@wordpress/deprecated": "^3.2.3",
40
- "@wordpress/element": "^4.0.4",
41
- "@wordpress/i18n": "^4.2.4",
42
- "@wordpress/icons": "^6.1.1",
43
- "@wordpress/plugins": "^4.0.7",
44
- "@wordpress/viewport": "^4.0.7",
35
+ "@wordpress/a11y": "^3.3.1",
36
+ "@wordpress/components": "^19.4.0",
37
+ "@wordpress/compose": "^5.1.1",
38
+ "@wordpress/data": "^6.2.1",
39
+ "@wordpress/element": "^4.1.1",
40
+ "@wordpress/i18n": "^4.3.1",
41
+ "@wordpress/icons": "^6.3.0",
42
+ "@wordpress/plugins": "^4.1.1",
43
+ "@wordpress/viewport": "^4.1.1",
45
44
  "classnames": "^2.3.1",
46
45
  "lodash": "^4.17.21"
47
46
  },
48
47
  "publishConfig": {
49
48
  "access": "public"
50
49
  },
51
- "gitHead": "f70f4664ac641bd107481c5c67ee6f5556a0a381"
50
+ "gitHead": "2e4922861e49f5a090f9dc52056165092cfba163"
52
51
  }