Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .plugin-data
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"version": "1.1.0",
"version": "1.1.1",
"slug": "blockparty-tabs"
}
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 1.1.1 - 2026-04-20

- Update block icons
- Add WordPress Playground blueprint file

## 1.1.0 - 2026-02-18

- Support for `blockparty/icons` block
Expand Down
4 changes: 2 additions & 2 deletions blockparty-tabs.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Description: Accessible Tabs block for WordPress gutenberg.
* Requires at least: 6.2
* Requires PHP: 8.1
* Version: 1.1.0
* Version: 1.1.1
* Author: Be API Technical team
* Author URI: https://beapi.fr
* License: GPL-2.0-or-later
Expand All @@ -14,7 +14,7 @@

namespace Blockparty\Tabs;

define( 'BLOCKPARTY_TABS_VERSION', '1.1.0' );
define( 'BLOCKPARTY_TABS_VERSION', '1.1.1' );
define( 'BLOCKPARTY_TABS_URL', plugin_dir_url( __FILE__ ) );
define( 'BLOCKPARTY_TABS_DIR', plugin_dir_path( __FILE__ ) );
define( 'BLOCKPARTY_TABS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "blockparty-tabs",
"version": "1.1.0",
"version": "1.1.1",
"description": "Accessible tabs block for WordPress",
"author": "Be API Technical team",
"license": "GPL-2.0-or-later",
Expand Down
5 changes: 5 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ directory take precedence. For example, `/assets/screenshot-1.png` would win ove

== Changelog ==

= 1.1.1 =

* Update block icons
* Add WordPress Playground blueprint file

= 1.1.0 =

* Support for `blockparty/icons` block
Expand Down
11 changes: 8 additions & 3 deletions src/blockparty-tabs-nav-item/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 2,
"name": "blockparty/tabs-nav-item",
"version": "1.1.0",
"version": "1.1.1",
"title": "Tab",
"category": "widgets",
"description": "Accessible tabs block item",
"parent": [ "blockparty/tabs-nav" ],
"parent": [
"blockparty/tabs-nav"
],
"supports": {
"html": false,
"anchor": false,
Expand Down Expand Up @@ -40,7 +42,10 @@
"type": "integer"
}
},
"usesContext": [ "blockparty/Tabs", "blockparty/TabsActive" ],
"usesContext": [
"blockparty/Tabs",
"blockparty/TabsActive"
],
"textdomain": "blockparty-tabs",
"editorScript": "file:./index.js"
}
10 changes: 7 additions & 3 deletions src/blockparty-tabs-nav/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,23 @@
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 2,
"name": "blockparty/tabs-nav",
"version": "1.1.0",
"version": "1.1.1",
"title": "Tabs list",
"category": "widgets",
"description": "Accessible tabs block item",
"parent": [ "blockparty/tabs" ],
"parent": [
"blockparty/tabs"
],
"supports": {
"html": false,
"anchor": false,
"align": false,
"lock": false,
"reusable": false
},
"usesContext": [ "blockparty/Tabs" ],
"usesContext": [
"blockparty/Tabs"
],
"textdomain": "blockparty-tabs",
"editorScript": "file:./index.js"
}
11 changes: 8 additions & 3 deletions src/blockparty-tabs-panel-item/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 2,
"name": "blockparty/tabs-panel-item",
"version": "1.1.0",
"version": "1.1.1",
"title": "Panel",
"category": "widgets",
"icon": "layout",
"description": "Accessible tabs block item",
"parent": [ "blockparty/tabs-panels" ],
"parent": [
"blockparty/tabs-panels"
],
"supports": {
"html": false,
"anchor": false,
Expand All @@ -30,7 +32,10 @@
"type": "integer"
}
},
"usesContext": [ "blockparty/Tabs", "blockparty/TabsActive" ],
"usesContext": [
"blockparty/Tabs",
"blockparty/TabsActive"
],
"textdomain": "blockparty-tabs",
"editorScript": "file:./index.js"
}
11 changes: 8 additions & 3 deletions src/blockparty-tabs-panels/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 2,
"name": "blockparty/tabs-panels",
"version": "1.1.0",
"version": "1.1.1",
"title": "Panels",
"category": "widgets",
"description": "Accessible tabs block item",
"parent": [ "blockparty/tabs" ],
"parent": [
"blockparty/tabs"
],
"supports": {
"html": false,
"anchor": false,
Expand All @@ -19,7 +21,10 @@
"type": "string"
}
},
"usesContext": [ "blockparty/Tabs", "blockparty/TabsActive" ],
"usesContext": [
"blockparty/Tabs",
"blockparty/TabsActive"
],
"textdomain": "blockparty-tabs",
"editorScript": "file:./index.js"
}
7 changes: 5 additions & 2 deletions src/blockparty-tabs/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,17 @@
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 2,
"name": "blockparty/tabs",
"version": "1.1.0",
"version": "1.1.1",
"title": "Tabs",
"category": "widgets",
"description": "Accessible tabs block",
"supports": {
"html": false,
"anchor": true,
"align": [ "wide", "full" ]
"align": [
"wide",
"full"
]
},
"attributes": {
"tabsIndex": {
Expand Down
Loading