@wordpress/core-data 4.1.0 → 4.1.1-next.f435e9e01b.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/README.md +9 -3
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Core Data
|
|
2
2
|
|
|
3
|
-
Core Data is a [data module](/packages/data/README.md) intended to simplify access to and manipulation of core WordPress entities. It registers its own store and provides a number of selectors which resolve data from the WordPress REST API automatically, along with dispatching action creators to manipulate data.
|
|
3
|
+
Core Data is a [data module](https://github.com/WordPress/gutenberg/tree/HEAD/packages/data/README.md) intended to simplify access to and manipulation of core WordPress entities. It registers its own store and provides a number of selectors which resolve data from the WordPress REST API automatically, along with dispatching action creators to manipulate data.
|
|
4
4
|
|
|
5
|
-
Used in combination with features of the data module such as [`subscribe`](/packages/data/README.md#subscribe-function) or [higher-order components](/packages/data/README.md#higher-order-components), it enables a developer to easily add data into the logic and display of their plugin.
|
|
5
|
+
Used in combination with features of the data module such as [`subscribe`](https://github.com/WordPress/gutenberg/tree/HEAD/packages/data/README.md#subscribe-function) or [higher-order components](https://github.com/WordPress/gutenberg/tree/HEAD/packages/data/README.md#higher-order-components), it enables a developer to easily add data into the logic and display of their plugin.
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
@@ -761,4 +761,10 @@ _Returns_
|
|
|
761
761
|
|
|
762
762
|
<!-- END TOKEN(Autogenerated selectors|src/selectors.js) -->
|
|
763
763
|
|
|
764
|
-
|
|
764
|
+
## Contributing to this package
|
|
765
|
+
|
|
766
|
+
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.
|
|
767
|
+
|
|
768
|
+
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).
|
|
769
|
+
|
|
770
|
+
<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/core-data",
|
|
3
|
-
"version": "4.1.0",
|
|
3
|
+
"version": "4.1.1-next.f435e9e01b.0",
|
|
4
4
|
"description": "Access to and manipulation of core WordPress entities.",
|
|
5
5
|
"author": "The WordPress Contributors",
|
|
6
6
|
"license": "GPL-2.0-or-later",
|
|
@@ -30,15 +30,15 @@
|
|
|
30
30
|
],
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@babel/runtime": "^7.16.0",
|
|
33
|
-
"@wordpress/api-fetch": "^6.0.0",
|
|
34
|
-
"@wordpress/blocks": "^11.2.0",
|
|
35
|
-
"@wordpress/data": "^6.2.0",
|
|
36
|
-
"@wordpress/deprecated": "^3.3.0",
|
|
37
|
-
"@wordpress/element": "^4.1.0",
|
|
38
|
-
"@wordpress/html-entities": "^3.3.0",
|
|
39
|
-
"@wordpress/i18n": "^4.3.0",
|
|
40
|
-
"@wordpress/is-shallow-equal": "^4.3.0",
|
|
41
|
-
"@wordpress/url": "^3.4.0",
|
|
33
|
+
"@wordpress/api-fetch": "^6.0.1-next.f435e9e01b.0",
|
|
34
|
+
"@wordpress/blocks": "^11.2.1-next.f435e9e01b.0",
|
|
35
|
+
"@wordpress/data": "^6.2.2-next.f435e9e01b.0",
|
|
36
|
+
"@wordpress/deprecated": "^3.3.1-next.f435e9e01b.0",
|
|
37
|
+
"@wordpress/element": "^4.1.1-next.f435e9e01b.0",
|
|
38
|
+
"@wordpress/html-entities": "^3.3.1-next.f435e9e01b.0",
|
|
39
|
+
"@wordpress/i18n": "^4.3.1-next.f435e9e01b.0",
|
|
40
|
+
"@wordpress/is-shallow-equal": "^4.3.1-next.f435e9e01b.0",
|
|
41
|
+
"@wordpress/url": "^3.4.1-next.f435e9e01b.0",
|
|
42
42
|
"equivalent-key-map": "^0.2.2",
|
|
43
43
|
"lodash": "^4.17.21",
|
|
44
44
|
"rememo": "^3.0.0",
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"publishConfig": {
|
|
48
48
|
"access": "public"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "14b2846015dfb1b440ce93accdd03842ebe5f1cd"
|
|
51
51
|
}
|