Skip to content

Commit

Permalink
Merge pull request #3066 from Parsely/update/remove-beta-messaging-fr…
Browse files Browse the repository at this point in the history
…om-pch
  • Loading branch information
acicovic authored Jan 15, 2025
2 parents 18ec347 + f10c5ea commit 380e959
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 27 deletions.
2 changes: 1 addition & 1 deletion build/content-helper/editor-sidebar-rtl.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/content-helper/editor-sidebar.asset.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array('react', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-core-data', 'wp-data', 'wp-dom-ready', 'wp-editor', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-plugins', 'wp-primitives', 'wp-url', 'wp-wordcount'), 'version' => 'd7059d961c9fe0a71c34');
<?php return array('dependencies' => array('react', 'wp-api-fetch', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-compose', 'wp-core-data', 'wp-data', 'wp-dom-ready', 'wp-editor', 'wp-element', 'wp-hooks', 'wp-i18n', 'wp-plugins', 'wp-primitives', 'wp-url', 'wp-wordcount'), 'version' => 'fe15e7e38c33aff43523');
2 changes: 1 addition & 1 deletion build/content-helper/editor-sidebar.css

Large diffs are not rendered by default.

28 changes: 14 additions & 14 deletions build/content-helper/editor-sidebar.js

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,6 @@ export const PostExcerptSuggestions = ( {
<LeafIcon size={ 16 } />
<div className="wp-parsely-excerpt-generator-header-label">
{ __( 'Generate With Parse.ly', 'wp-parsely' ) }
<span className="beta-label">{ __( 'Beta', 'wp-parsely' ) }</span>
</div>
</div>;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,6 @@
display: inline-block;
padding: 0;
margin-left: to_rem(5px);

span.beta-label {
padding-left: to_rem(6px);
color: var(--Gutenberg-Gray-700, #757575);
}
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const SmartLinkingInspectorControlPanel = createHigherOrderComponent( ( BlockEdi
{ /* @ts-ignore */ }
<InspectorControls group="list">
<PanelBody
title={ __( 'Smart Linking (Beta)', 'wp-parsely' ) }
title={ __( 'Smart Linking', 'wp-parsely' ) }
initialOpen={ settings.SmartLinking.Open }
className="wp-parsely-panel wp-parsely-smart-linking-panel"
icon={ <LeafIcon /> }
Expand Down
6 changes: 3 additions & 3 deletions src/content-helper/editor-sidebar/tabs/sidebar-tools-tab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const SidebarToolsTab = (
<Panel>
{ permissions.TitleSuggestions &&
<PanelBody
title={ __( 'Title Suggestions (Beta)', 'wp-parsely' ) }
title={ __( 'Title Suggestions', 'wp-parsely' ) }
initialOpen={ settings.TitleSuggestions.Open }
onToggle={ ( next ) => {
setSettings( {
Expand All @@ -65,7 +65,7 @@ export const SidebarToolsTab = (
permissions.ExcerptSuggestions &&
<PostTypeSupportCheck supportKeys="excerpt">
<PanelBody
title={ __( 'Excerpt Suggestions (Beta)', 'wp-parsely' ) }
title={ __( 'Excerpt Suggestions', 'wp-parsely' ) }
initialOpen={ settings.ExcerptSuggestions.Open }
onToggle={ ( next ) => {
setSettings( {
Expand All @@ -86,7 +86,7 @@ export const SidebarToolsTab = (

{ permissions.SmartLinking &&
<PanelBody
title={ __( 'Smart Linking (Beta)', 'wp-parsely' ) }
title={ __( 'Smart Linking', 'wp-parsely' ) }
initialOpen={ settings.SmartLinking.Open }
onToggle={ ( next ) => {
setSettings( {
Expand Down

0 comments on commit 380e959

Please sign in to comment.