From f8d0fd5a6b0a2e0d95cc62c81498a860fda12fca Mon Sep 17 00:00:00 2001
From: Javier Godoy <11554739+javier-godoy@users.noreply.github.com>
Date: Fri, 14 Aug 2026 14:54:00 -0300
Subject: [PATCH 1/4] ci: add dance profile for cleanup
---
pom.xml | 61 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 60 insertions(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index 7f20e7c..34d3a89 100644
--- a/pom.xml
+++ b/pom.xml
@@ -553,7 +553,66 @@
-
+
+
+ dance
+
+
+
+ org.apache.maven.plugins
+ maven-clean-plugin
+ 3.3.2
+
+
+
+ ${project.basedir}
+
+ package.json
+ package-lock.json
+ tsconfig.json
+ tsconfig.json.*
+ types.d.ts
+ types.d.ts.*
+ vite.config.ts
+ vite.generated.ts
+ webpack.config.js
+ webpack.generated.js
+
+
+
+ ${project.basedir}/frontend
+
+ index.html
+
+
+
+ ${project.basedir}/frontend/generated
+
+
+ ${project.basedir}/src/main/frontend
+
+ index.html
+
+
+
+ ${project.basedir}/src/main/frontend/generated
+
+
+ ${project.basedir}/node_modules
+
+
+ ${project.basedir}/src/main/bundles
+
+
+ ${project.basedir}/src/main/dev-bundle
+
+
+
+
+
+
+
+
From 7015d26472a4d8050f602bce090abd7798ae2ee2 Mon Sep 17 00:00:00 2001
From: Javier Godoy <11554739+javier-godoy@users.noreply.github.com>
Date: Fri, 14 Aug 2026 15:08:38 -0300
Subject: [PATCH 2/4] build(demo): upgrade commons-demo to 5.4.0
---
pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index 34d3a89..10404e1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -63,7 +63,7 @@
com.flowingcode.vaadin.addons.demo
commons-demo
- 5.0.0
+ 5.4.0
From 19331251168a0a7bcca147bbda44ef567b50eca8 Mon Sep 17 00:00:00 2001
From: Javier Godoy <11554739+javier-godoy@users.noreply.github.com>
Date: Fri, 14 Aug 2026 15:35:49 -0300
Subject: [PATCH 3/4] feat(demo): enable dynamic theme
---
pom.xml | 1 +
.../addons/AppShellConfiguratorImpl.java | 35 +++++++++++++++++++
2 files changed, 36 insertions(+)
create mode 100644 src/test/java/com/flowingcode/vaadin/addons/AppShellConfiguratorImpl.java
diff --git a/pom.xml b/pom.xml
index 10404e1..3d44729 100644
--- a/pom.xml
+++ b/pom.xml
@@ -513,6 +513,7 @@
**/it/*
**/DemoView.class
**/DemoLayout.class
+ **/AppShellConfiguratorImpl.class
META-INF/services/com.vaadin.flow.server.VaadinServiceInitListener
diff --git a/src/test/java/com/flowingcode/vaadin/addons/AppShellConfiguratorImpl.java b/src/test/java/com/flowingcode/vaadin/addons/AppShellConfiguratorImpl.java
new file mode 100644
index 0000000..29e8a38
--- /dev/null
+++ b/src/test/java/com/flowingcode/vaadin/addons/AppShellConfiguratorImpl.java
@@ -0,0 +1,35 @@
+/*-
+ * #%L
+ * Grid Helpers Add-on
+ * %%
+ * Copyright (C) 2022 - 2026 Flowing Code
+ * %%
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * #L%
+ */
+package com.flowingcode.vaadin.addons;
+
+import com.flowingcode.vaadin.addons.demo.DynamicTheme;
+import com.vaadin.flow.component.page.AppShellConfigurator;
+import com.vaadin.flow.server.AppShellSettings;
+
+public class AppShellConfiguratorImpl implements AppShellConfigurator {
+
+ @Override
+ public void configurePage(AppShellSettings settings) {
+ if (DynamicTheme.isFeatureSupported()) {
+ DynamicTheme.LUMO.initialize(settings);
+ }
+ }
+
+}
From 53dcff46af233421413ea11e5b0463d5287ab6d2 Mon Sep 17 00:00:00 2001
From: Javier Godoy <11554739+javier-godoy@users.noreply.github.com>
Date: Fri, 14 Aug 2026 16:21:47 -0300
Subject: [PATCH 4/4] fix: update column toggle CSS for Vaadin 25 overflow
rename
Close #176
---
.../resources/META-INF/frontend/fcGridHelper/vaadin-grid.css | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/main/resources/META-INF/frontend/fcGridHelper/vaadin-grid.css b/src/main/resources/META-INF/frontend/fcGridHelper/vaadin-grid.css
index 4821bc9..675f114 100644
--- a/src/main/resources/META-INF/frontend/fcGridHelper/vaadin-grid.css
+++ b/src/main/resources/META-INF/frontend/fcGridHelper/vaadin-grid.css
@@ -46,7 +46,8 @@
--fcgh-toggle-right: 0;
}
-:host([overflow~="right"]), :host([overflow~="left"]) {
+:host([overflow~="right"]), :host([overflow~="left"]),
+:host([overflow~="start"]), :host([overflow~="end"]) {
--fcgh-toggle-right: 24px;
}