[Experimental] Add (Beta) suffix to block name of new filter blocks (#44487)

This commit is contained in:
Sam Seay 2024-02-12 19:15:49 +08:00 committed by GitHub
parent 4ae60196ea
commit 143388dae8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 20 additions and 10 deletions

View File

@ -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'
@ -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'
@ -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'
@ -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'
@ -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'

View File

@ -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" ],

View File

@ -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" ],

View File

@ -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" ],

View File

@ -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" ],

View File

@ -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" ],

View File

@ -0,0 +1,4 @@
Significance: patch
Type: dev
[Experimental] Add beta suffix to new filter blocks in prep for release.