Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor reusable blocks and editor effects to action-generators using controls (core/editor data store) #14491

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions docs/designers-developers/developers/data/data-core-editor.md
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@ The editor settings object.

### setupEditor

Returns an action object used in signalling that editor has initialized with
Returns an action generator used in signalling that editor has initialized with
the specified post object and editor settings.

*Parameters*
Expand Down Expand Up @@ -882,7 +882,7 @@ Returns an action object used to lock the editor.

### __experimentalFetchReusableBlocks

Returns an action object used to fetch a single reusable block or all
Returns an action generator used to fetch a single reusable block or all
reusable blocks from the REST API into the store.

*Parameters*
Expand All @@ -892,7 +892,7 @@ reusable blocks from the REST API into the store.

### __experimentalReceiveReusableBlocks

Returns an action object used in signalling that reusable blocks have been
Returns an action generator used in signalling that reusable blocks have been
received. `results` is an array of objects containing:
- `reusableBlock` - Details about how the reusable block is persisted.
- `parsedBlock` - The original block.
Expand All @@ -903,7 +903,7 @@ received. `results` is an array of objects containing:

### __experimentalSaveReusableBlock

Returns an action object used to save a reusable block that's in the store to
Returns an action generator used to save a reusable block that's in the store to
the REST API.

*Parameters*
Expand All @@ -912,7 +912,7 @@ the REST API.

### __experimentalDeleteReusableBlock

Returns an action object used to delete a reusable block via the REST API.
Returns an action generator used to delete a reusable block via the REST API.

*Parameters*

Expand All @@ -930,7 +930,7 @@ to be updated.

### __experimentalConvertBlockToStatic

Returns an action object used to convert a reusable block into a static
Returns an action generator used to convert a reusable block into a static
block.

*Parameters*
Expand All @@ -939,7 +939,7 @@ block.

### __experimentalConvertBlockToReusable

Returns an action object used to convert a static block into a reusable
Returns an action generator used to convert a static block into a reusable
block.

*Parameters*
Expand Down
6 changes: 6 additions & 0 deletions packages/editor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 9.1.1 (Unreleased)

### Internal

- Refactor all reusable blocks and editor effects to action-generators using controls ([#14491](https://github.com/WordPress/gutenberg/pull/14491))

## 9.1.0 (2019-03-06)

### New Features
Expand Down
Loading