Skip to content
Merged

Release #1322

20 changes: 19 additions & 1 deletion css/library.css
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,10 @@ body {
padding: 0 10px;
gap: 6px;
}
.visualizer-chart-action.visualizer-chart-edit .dashicons {
.visualizer-chart-action.visualizer-chart-edit .dashicons,
.visualizer-chart-action.visualizer-nochart-edit .dashicons {
margin-right: 0;
line-height: 1;
}
.visualizer-chart-action.visualizer-chart-edit .tooltip-text {
display: none;
Expand Down Expand Up @@ -433,6 +435,8 @@ input:checked + .visualizer-slider:before {

div.visualizer-library-form .viz-filter {
vertical-align: middle;
min-height: 30px;
line-height: 1;
}

button.media-modal-close {
Expand Down Expand Up @@ -939,6 +943,8 @@ span.viz-view-toggle-group {
margin-right: 0;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
min-height: 30px;
line-height: 2.15384615;
}

.viz-add-new-toggle {
Expand Down Expand Up @@ -1014,3 +1020,15 @@ span.viz-view-toggle-group {
background: #f6f7f7;
outline: none;
}

@media screen and (max-width: 782px) {
.viz-add-new-toggle {
min-height: 33px;
}
}

.toplevel_page_visualizer .button,
.toplevel_page_visualizer button {
min-height: 30px;
line-height: 2.15384615;
}
6 changes: 3 additions & 3 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
=== Visualizer: Tables and Charts Manager for WordPress ===
=== VisualizerTables & Charts Manager with Built-in AI Generator ===
Contributors: codeinwp,themeisle,marius2012,marius_codeinwp,hardeepasrani,rozroz,Madalin_ThemeIsle
Tags: tables, charts, pie, visualization, graphs
Tags: charts, tables, datatable, data-visualization, ai-charts
Requires at least: 5.2
Tested up to: 7.0
Requires PHP: 7.4
Stable tag: trunk
License: GPL v2.0 or later
License URI: http://www.opensource.org/licenses/gpl-license.php

Create responsive charts and tables manually or let the built-in AI build them from a simple text prompt. Supports multiple chart types and flexible data sources.
Create responsive charts and tables manually or let the built-in AI build them from a text prompt. Supports multiple chart types and flexible data.

## Description ##

Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/specs/library-view.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ test.describe( 'Library View Toggle', () => {
await waitForLibraryToLoad( page );

// Submit the filter form — the hidden view input should carry list view through.
await page.getByRole( 'button', { name: 'Apply Filters' } ).click();
await page.getByRole( 'button', { name: 'Apply Filters' } ).click( { force: true } );
await waitForLibraryToLoad( page );

await expect( page.locator( '#visualizer-library.view-list' ) ).toBeVisible();
Expand Down
Loading