@wordpress/create-block-interactive-template 1.14.1 → 1.15.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
+ ## 1.15.0 (2024-02-21)
6
+
5
7
  ## 1.14.0 (2024-02-09)
6
8
 
7
9
  ## 1.13.0 (2024-01-24)
package/README.md CHANGED
@@ -7,7 +7,7 @@ This is a template for [`@wordpress/create-block`](https://github.com/WordPress/
7
7
  This block template can be used by running the following command:
8
8
 
9
9
  ```bash
10
- npx @wordpress/create-block --template @wordpress/create-block-interactive-template
10
+ npx @wordpress/create-block --template @wordpress/create-block-interactive-template
11
11
  ```
12
12
 
13
13
  It requires Gutenberg 17.5 or higher.
@@ -17,7 +17,7 @@ $unique_id = wp_unique_id( 'p-' );
17
17
 
18
18
  <div
19
19
  <?php echo get_block_wrapper_attributes(); ?>
20
- data-wp-interactive='{ "namespace": "{{namespace}}" }'
20
+ data-wp-interactive="{{namespace}}"
21
21
  data-wp-context='{ "isOpen": false }'
22
22
  data-wp-watch="callbacks.logIsOpen"
23
23
  >
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/create-block-interactive-template",
3
- "version": "1.14.1",
3
+ "version": "1.15.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",
@@ -22,5 +22,5 @@
22
22
  "publishConfig": {
23
23
  "access": "public"
24
24
  },
25
- "gitHead": "730beb7fd33d3382d6032c3f33e451625a0fcf36"
25
+ "gitHead": "c139588f4c668b38bafbc5431f2f4e3903dbe683"
26
26
  }