@wordpress/create-block-interactive-template 2.0.0 → 2.1.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 CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 2.1.0 (2024-06-15)
6
+
5
7
  ## 2.0.0 (2024-05-31)
6
8
 
7
9
  ### Breaking Changes
@@ -1,16 +1,8 @@
1
1
  # Interactive Block
2
2
 
3
- > **Warning**
4
- > **This block requires Gutenberg 16.2 or superior to work**. The Interactivity API is, at the moment, not part of WordPress Core as it is still very experimental, and very likely to change.
5
-
6
3
  > **Note**
7
- > This block uses the API shared at [Proposal: The Interactivity API A better developer experience in building interactive blocks](https://make.wordpress.org/core/2023/03/30/proposal-the-interactivity-api-a-better-developer-experience-in-building-interactive-blocks/).
4
+ > Check the [Interactivity API Reference docs in the Block Editor handbook](https://developer.wordpress.org/block-editor/reference-guides/interactivity-api/) to learn more about the Interactivity API.
8
5
 
9
6
  {{#isBasicVariant}}
10
7
  This block has been created with the `create-block-interactive-template` and shows a basic structure of an interactive block that uses the Interactivity API.
11
- {{/isBasicVariant}}
12
-
13
- Check the following resources for more info about the Interactivity API:
14
- - [`@wordpress/interactivity` package](https://github.com/WordPress/gutenberg/blob/trunk/packages/interactivity/README.md)
15
- - [Proposal: The Interactivity API – A better developer experience in building interactive blocks](https://make.wordpress.org/core/2023/03/30/proposal-the-interactivity-api-a-better-developer-experience-in-building-interactive-blocks/)
16
- - [“Interactivity API” category](https://github.com/WordPress/gutenberg/discussions/categories/interactivity-api) in Gutenberg repo discussions
8
+ {{/isBasicVariant}}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/create-block-interactive-template",
3
- "version": "2.0.0",
3
+ "version": "2.1.0",
4
4
  "description": "Template for @wordpress/create-block to create interactive blocks with the Interactivity API.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -26,5 +26,5 @@
26
26
  "publishConfig": {
27
27
  "access": "public"
28
28
  },
29
- "gitHead": "2f30cddff15723ac7017fd009fc5913b7b419400"
29
+ "gitHead": "66d3bf12e67d16deddc4b4a9ec42e1d0bed3479a"
30
30
  }