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 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
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
Loading