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.3",
"version": "1.1.4",
"slug": "blockparty-tabs"
}
2 changes: 1 addition & 1 deletion .wordpress-org/blueprints/blueprint.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"pluginData": {
"resource": "git:directory",
"url": "https://github.com/BeAPI/blockparty-tabs",
"ref": "1.1.3",
"ref": "1.1.4",
"refType": "tag"
},
"options": {
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ 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.4 - 2026-08-04

- Performance improvements removed script blocking time.

## 1.1.3 - 2026-04-27

- Performance improvements
Expand Down
57 changes: 34 additions & 23 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,27 +84,36 @@ The plugin generates semantic HTML with proper ARIA attributes:

```html
<div class="wp-block-blockparty-tabs" role="tablist">
<ul class="wp-block-blockparty-tabs-nav">
<li class="wp-block-blockparty-tabs-nav-item is-active">
<a id="block-tab-0-0" role="tab" aria-controls="block-panel-0-0"
class="wp-block-blockparty-tabs-nav-link" href="#block-tab-0-0"
aria-selected="true">
<span>Tab 1</span>
</a>
</li>
<!-- More tabs... -->
</ul>

<section class="wp-block-blockparty-tabs-panels">
<div role="tabpanel" tabindex="0"
class="wp-block-blockparty-tabs-panel-item is-active"
id="block-panel-0-0" aria-labelledby="block-tab-0-0">
<div class="wp-block-blockparty-tabs-panel-item__inner">
<!-- Your content here -->
</div>
</div>
<!-- More panels... -->
</section>
<ul class="wp-block-blockparty-tabs-nav">
<li class="wp-block-blockparty-tabs-nav-item is-active">
<a
id="block-tab-0-0"
role="tab"
aria-controls="block-panel-0-0"
class="wp-block-blockparty-tabs-nav-link"
href="#block-tab-0-0"
aria-selected="true"
>
<span>Tab 1</span>
</a>
</li>
<!-- More tabs... -->
</ul>

<section class="wp-block-blockparty-tabs-panels">
<div
role="tabpanel"
tabindex="0"
class="wp-block-blockparty-tabs-panel-item is-active"
id="block-panel-0-0"
aria-labelledby="block-tab-0-0"
>
<div class="wp-block-blockparty-tabs-panel-item__inner">
<!-- Your content here -->
</div>
</div>
<!-- More panels... -->
</section>
</div>
```

Expand Down Expand Up @@ -134,9 +143,11 @@ npm run lint:css

For bug reports and feature requests, please use the [GitHub issues](https://github.com/BeAPI/blockparty-tabs/issues) page.

## Credits
## Changelog

Developed by [Be API Technical Team](https://beapi.fr)
See [readme.txt](readme.txt) and [CHANGELOG.md](CHANGELOG.md) for the full version history.

Developed with ❤️ by [Be API](https://beapi.fr)

## License

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.3
* Version: 1.1.4
* 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.3' );
define( 'BLOCKPARTY_TABS_VERSION', '1.1.4' );
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
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.1",
"version": "1.1.4",
"description": "Accessible tabs block for WordPress",
"author": "Be API Technical team",
"license": "GPL-2.0-or-later",
Expand Down
6 changes: 5 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Contributors: Be API Technical team
Tags: block
Tested up to: 6.0
Stable tag: 1.1.2
Stable tag: 1.1.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -31,6 +31,10 @@ directory take precedence. For example, `/assets/screenshot-1.png` would win ove

== Changelog ==

= 1.1.4 =

* Performance improvements removed script blocking time.

= 1.1.3 =

* Performance improvements
Expand Down
2 changes: 1 addition & 1 deletion src/blockparty-tabs-nav-item/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 2,
"name": "blockparty/tabs-nav-item",
"version": "1.1.3",
"version": "1.1.4",
"title": "Tab",
"category": "widgets",
"description": "Accessible tabs block item",
Expand Down
2 changes: 1 addition & 1 deletion src/blockparty-tabs-nav/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 2,
"name": "blockparty/tabs-nav",
"version": "1.1.3",
"version": "1.1.4",
"title": "Tabs list",
"category": "widgets",
"description": "Accessible tabs block item",
Expand Down
2 changes: 1 addition & 1 deletion src/blockparty-tabs-panel-item/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 2,
"name": "blockparty/tabs-panel-item",
"version": "1.1.3",
"version": "1.1.4",
"title": "Panel",
"category": "widgets",
"icon": "layout",
Expand Down
2 changes: 1 addition & 1 deletion src/blockparty-tabs-panels/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 2,
"name": "blockparty/tabs-panels",
"version": "1.1.3",
"version": "1.1.4",
"title": "Panels",
"category": "widgets",
"description": "Accessible tabs block item",
Expand Down
2 changes: 1 addition & 1 deletion src/blockparty-tabs/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 2,
"name": "blockparty/tabs",
"version": "1.1.3",
"version": "1.1.4",
"title": "Tabs",
"category": "widgets",
"description": "Accessible tabs block",
Expand Down
Loading