Skip to content

Commit

Permalink
[Experimental] Add (Beta) suffix to block name of new filter blocks (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
samueljseay committed Feb 12, 2024
1 parent 4ae6019 commit 143388d
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@ if ( isExperimentalBuild() ) {
variations: [
{
name: 'product-filter-active',
title: __( 'Product Filter: Active Filters', 'woocommerce' ),
title: __(
'Product Filter: Active Filters (Beta)',
'woocommerce'
),
description: __(
'Display the currently active filters.',
'woocommerce'
Expand All @@ -63,7 +66,7 @@ if ( isExperimentalBuild() ) {
},
{
name: 'product-filter-price',
title: __( 'Product Filter: Price', 'woocommerce' ),
title: __( 'Product Filter: Price (Beta)', 'woocommerce' ),
description: __(
'Enable customers to filter the product collection by choosing a price range.',
'woocommerce'
Expand All @@ -83,7 +86,10 @@ if ( isExperimentalBuild() ) {
},
{
name: 'product-filter-stock-status',
title: __( 'Product Filter: Stock Status', 'woocommerce' ),
title: __(
'Product Filter: Stock Status (Beta)',
'woocommerce'
),
description: __(
'Enable customers to filter the product collection by stock status.',
'woocommerce'
Expand All @@ -103,7 +109,7 @@ if ( isExperimentalBuild() ) {
},
{
name: 'product-filter-attribute',
title: __( 'Product Filter: Attribute', 'woocommerce' ),
title: __( 'Product Filter: Attribute (Beta)', 'woocommerce' ),
description: __(
'Enable customers to filter the product collection by selecting one or more attributes, such as color.',
'woocommerce'
Expand All @@ -123,7 +129,7 @@ if ( isExperimentalBuild() ) {
},
{
name: 'product-filter-rating',
title: __( 'Product Filter: Rating', 'woocommerce' ),
title: __( 'Product Filter: Rating (Beta)', 'woocommerce' ),
description: __(
'Enable customers to filter the product collection by rating.',
'woocommerce'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://schemas.wp.org/trunk/block.json",
"name": "woocommerce/product-filter-active",
"version": "1.0.0",
"title": "Product Filter: Active Filters",
"title": "Product Filter: Active Filters (Beta)",
"description": "Display the currently active filters.",
"category": "woocommerce",
"keywords": [ "WooCommerce" ],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://schemas.wp.org/trunk/block.json",
"name": "woocommerce/product-filter-attribute",
"version": "1.0.0",
"title": "Product Filter: Attribute",
"title": "Product Filter: Attribute (Beta)",
"description": "Enable customers to filter the product grid by selecting one or more attributes, such as color.",
"category": "woocommerce",
"keywords": [ "WooCommerce" ],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://schemas.wp.org/trunk/block.json",
"name": "woocommerce/product-filter-price",
"version": "1.0.0",
"title": "Product Filter: Price",
"title": "Product Filter: Price (Beta)",
"description": "Enable customers to filter the product collection by choosing a price range.",
"category": "woocommerce",
"keywords": [ "WooCommerce" ],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "woocommerce/product-filter-rating",
"version": "1.0.0",
"title": "Product Filter: Rating",
"title": "Product Filter: Rating (Beta)",
"description": "Enable customers to filter the product collection by rating.",
"category": "woocommerce",
"keywords": [ "WooCommerce" ],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "woocommerce/product-filter-stock-status",
"version": "1.0.0",
"title": "Product Filter: Stock Status",
"title": "Product Filter: Stock Status (Beta)",
"description": "Enable customers to filter the product collection by stock status.",
"category": "woocommerce",
"keywords": [ "WooCommerce", "filter", "stock" ],
Expand Down
4 changes: 4 additions & 0 deletions plugins/woocommerce/changelog/dev-suffix-filter-blocks-beta
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Significance: patch
Type: dev

[Experimental] Add beta suffix to new filter blocks in prep for release.

0 comments on commit 143388d

Please sign in to comment.