Commit dacba392 authored by jan.koester's avatar jan.koester
Browse files

test

parent 05acb9a8
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
blogi (20260415+4) unstable; urgency=medium

  * Fix hidden default:false in all widget schemas (accordion, article,
    button, customhtml, grid, image, list, popup, section, slider,
    survey, table, textbox, video, container)

 -- Jan Koester <jan.koester@tuxist.de>  Tue, 15 Apr 2026 00:00:00 +0200

blogi (20260415+3) unstable; urgency=medium

  * Fix stale currentProps after property save in PropertyPanel
+4 −0
Original line number Diff line number Diff line
@@ -210,6 +210,10 @@ extern "C" {

                // Visibility
                addField("hidden", "Hidden", "checkbox", nullptr, "desktop");
                {
                    json_object *hf = json_object_array_get_idx(arr, json_object_array_length(arr) - 1);
                    json_object_object_add(hf, "default", json_object_new_boolean(false));
                }
                addField("custom_css", "Custom CSS", "textarea", ".we-xxx { ... }");

                return arr;
+4 −0
Original line number Diff line number Diff line
@@ -182,6 +182,10 @@ extern "C" {
                addField("opacity", "Opacity", "text", "0.0 - 1.0", "desktop");
                addField("vertical_align", "Vertical Align", "select", nullptr, "desktop", mkOpts({"top","center","bottom"}));
                addField("hidden", "Hidden", "checkbox", nullptr, "desktop");
                {
                    json_object *hf = json_object_array_get_idx(arr, json_object_array_length(arr) - 1);
                    json_object_object_add(hf, "default", json_object_new_boolean(false));
                }
                addField("custom_css", "Custom CSS", "textarea", ".we-xxx { color: red; }");
                return arr;
            }
+4 −0
Original line number Diff line number Diff line
@@ -355,6 +355,10 @@ extern "C" {
                addField("width", "Width", "text", "e.g. 200px", "desktop");
                addField("height", "Height", "text", "e.g. auto", "desktop");
                addField("hidden", "Hidden", "checkbox", nullptr, "desktop");
                {
                    json_object *hf = json_object_array_get_idx(arr, json_object_array_length(arr) - 1);
                    json_object_object_add(hf, "default", json_object_new_boolean(false));
                }
                addField("custom_css", "Custom CSS", "textarea", ".we-xxx { color: red; }");
                addField("g_event_enabled", "Enable Google Event", "checkbox");
                addField("g_event_name", "Event Name", "text", "button_click", "all", nullptr, mkVisible("g_event_enabled", "true"));
+4 −0
Original line number Diff line number Diff line
@@ -231,6 +231,10 @@ extern "C" {
                addField("opacity", "Opacity", "text", "0.0 - 1.0", "desktop");
                addField("vertical_align", "Vertical Align", "select", nullptr, "desktop", mkOpts({"top","center","bottom"}));
                addField("hidden", "Hidden", "checkbox", nullptr, "desktop");
                {
                    json_object *hf = json_object_array_get_idx(arr, json_object_array_length(arr) - 1);
                    json_object_object_add(hf, "default", json_object_new_boolean(false));
                }
                return arr;
            }

Loading