From 10ab97f6ab54b689778586555c344cd3251ec6cb Mon Sep 17 00:00:00 2001 From: Paola De Bartolo Date: Tue, 10 Feb 2026 10:19:17 -0300 Subject: [PATCH 1/5] feat: add support for Vaadin 25 --- pom.xml | 5 +++++ .../java/com/flowingcode/vaadin/addons/zoomist/Zoomist.java | 3 +++ 2 files changed, 8 insertions(+) diff --git a/pom.xml b/pom.xml index 760f342..97381c6 100644 --- a/pom.xml +++ b/pom.xml @@ -119,6 +119,11 @@ 1.18.34 provided + + com.flowingcode.vaadin + json-migration-helper + 0.9.2 + org.slf4j slf4j-simple diff --git a/src/main/java/com/flowingcode/vaadin/addons/zoomist/Zoomist.java b/src/main/java/com/flowingcode/vaadin/addons/zoomist/Zoomist.java index 0cfe3b1..a0eff47 100644 --- a/src/main/java/com/flowingcode/vaadin/addons/zoomist/Zoomist.java +++ b/src/main/java/com/flowingcode/vaadin/addons/zoomist/Zoomist.java @@ -19,6 +19,7 @@ */ package com.flowingcode.vaadin.addons.zoomist; +import com.flowingcode.vaadin.jsonmigration.JsonMigration; import com.vaadin.flow.component.Component; import com.vaadin.flow.component.ComponentEventListener; import com.vaadin.flow.component.Tag; @@ -32,6 +33,7 @@ import java.util.Objects; import lombok.Getter; +import lombok.experimental.ExtensionMethod; /** * This component is a wrapper for Zoomist Component (https://npm.io/package/zoomist) @@ -43,6 +45,7 @@ @NpmPackage(value = "sass", version = "1.66.1") @JsModule("./zoomist/fc-zoomist.ts") @Tag("fc-zoomist") +@ExtensionMethod(value = JsonMigration.class, suppressBaseMethods = true) public class Zoomist extends Component { /** From b02379a2fc66f73e544e7b28cab9eb356a888055 Mon Sep 17 00:00:00 2001 From: Paola De Bartolo Date: Tue, 10 Feb 2026 11:37:15 -0300 Subject: [PATCH 2/5] feat(demo): add AppShellConfiguratorImpl for Vaadin 25 compatibility --- pom.xml | 1 + .../addons/AppShellConfiguratorImpl.java | 28 +++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 src/test/java/com/flowingcode/vaadin/addons/AppShellConfiguratorImpl.java diff --git a/pom.xml b/pom.xml index 97381c6..d83bf4d 100644 --- a/pom.xml +++ b/pom.xml @@ -470,6 +470,7 @@ **/it/* **/DemoView.class **/DemoLayout.class + **/AppShellConfiguratorImpl.class 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..17ec671 --- /dev/null +++ b/src/test/java/com/flowingcode/vaadin/addons/AppShellConfiguratorImpl.java @@ -0,0 +1,28 @@ +/*- + * #%L + * Zoomist Add-on + * %% + * Copyright (C) 2023 - 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.vaadin.flow.component.page.AppShellConfigurator; +import com.vaadin.flow.theme.Theme; + +@Theme +public class AppShellConfiguratorImpl implements AppShellConfigurator { + +} From f20b0cb01cc94189b9190c3ad8e88917bc1064c5 Mon Sep 17 00:00:00 2001 From: Paola De Bartolo Date: Tue, 10 Feb 2026 11:38:35 -0300 Subject: [PATCH 3/5] fix: update sass dependency version to newer 1.72.0 Close #27 --- .../java/com/flowingcode/vaadin/addons/zoomist/Zoomist.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/flowingcode/vaadin/addons/zoomist/Zoomist.java b/src/main/java/com/flowingcode/vaadin/addons/zoomist/Zoomist.java index a0eff47..cbe923a 100644 --- a/src/main/java/com/flowingcode/vaadin/addons/zoomist/Zoomist.java +++ b/src/main/java/com/flowingcode/vaadin/addons/zoomist/Zoomist.java @@ -2,7 +2,7 @@ * #%L * Zoomist Add-on * %% - * Copyright (C) 2023 Flowing Code + * Copyright (C) 2023 - 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. @@ -42,7 +42,7 @@ */ @SuppressWarnings("serial") @NpmPackage(value = "zoomist", version = "1.1.1") -@NpmPackage(value = "sass", version = "1.66.1") +@NpmPackage(value = "sass", version = "1.72.0") @JsModule("./zoomist/fc-zoomist.ts") @Tag("fc-zoomist") @ExtensionMethod(value = JsonMigration.class, suppressBaseMethods = true) From b66367b495fc9ca9da08b527aee2b33ceaf0c07b Mon Sep 17 00:00:00 2001 From: Paola De Bartolo Date: Tue, 10 Feb 2026 11:41:44 -0300 Subject: [PATCH 4/5] chore: update license headers --- .../com/flowingcode/vaadin/addons/zoomist/ContainerData.java | 2 +- .../com/flowingcode/vaadin/addons/zoomist/DragEndEvent.java | 2 +- .../java/com/flowingcode/vaadin/addons/zoomist/DragEvent.java | 2 +- .../com/flowingcode/vaadin/addons/zoomist/DragStartEvent.java | 2 +- .../com/flowingcode/vaadin/addons/zoomist/PinchEndEvent.java | 2 +- .../java/com/flowingcode/vaadin/addons/zoomist/PinchEvent.java | 2 +- .../com/flowingcode/vaadin/addons/zoomist/PinchStartEvent.java | 2 +- .../java/com/flowingcode/vaadin/addons/zoomist/ReadyEvent.java | 2 +- .../java/com/flowingcode/vaadin/addons/zoomist/ResizeEvent.java | 2 +- .../com/flowingcode/vaadin/addons/zoomist/SlideEndEvent.java | 2 +- .../java/com/flowingcode/vaadin/addons/zoomist/SlideEvent.java | 2 +- .../com/flowingcode/vaadin/addons/zoomist/SlideStartEvent.java | 2 +- .../java/com/flowingcode/vaadin/addons/zoomist/WheelEvent.java | 2 +- .../java/com/flowingcode/vaadin/addons/zoomist/ZoomEvent.java | 2 +- .../resources/META-INF/resources/frontend/zoomist/fc-zoomist.ts | 2 +- src/test/java/com/flowingcode/vaadin/addons/DemoLayout.java | 2 +- .../java/com/flowingcode/vaadin/addons/zoomist/DemoView.java | 2 +- .../java/com/flowingcode/vaadin/addons/zoomist/ZoomistDemo.java | 2 +- .../com/flowingcode/vaadin/addons/zoomist/ZoomistDemoView.java | 2 +- .../flowingcode/vaadin/addons/zoomist/it/AbstractViewTest.java | 2 +- .../java/com/flowingcode/vaadin/addons/zoomist/it/ViewIT.java | 2 +- .../vaadin/addons/zoomist/test/SerializationTest.java | 2 +- .../resources/META-INF/frontend/styles/zoomist-demo-styles.css | 2 +- 23 files changed, 23 insertions(+), 23 deletions(-) diff --git a/src/main/java/com/flowingcode/vaadin/addons/zoomist/ContainerData.java b/src/main/java/com/flowingcode/vaadin/addons/zoomist/ContainerData.java index c1cd40f..d6554ec 100644 --- a/src/main/java/com/flowingcode/vaadin/addons/zoomist/ContainerData.java +++ b/src/main/java/com/flowingcode/vaadin/addons/zoomist/ContainerData.java @@ -2,7 +2,7 @@ * #%L * Zoomist Add-on * %% - * Copyright (C) 2023 Flowing Code + * Copyright (C) 2023 - 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. diff --git a/src/main/java/com/flowingcode/vaadin/addons/zoomist/DragEndEvent.java b/src/main/java/com/flowingcode/vaadin/addons/zoomist/DragEndEvent.java index a9efdfd..4e06469 100644 --- a/src/main/java/com/flowingcode/vaadin/addons/zoomist/DragEndEvent.java +++ b/src/main/java/com/flowingcode/vaadin/addons/zoomist/DragEndEvent.java @@ -2,7 +2,7 @@ * #%L * Zoomist Add-on * %% - * Copyright (C) 2023 Flowing Code + * Copyright (C) 2023 - 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. diff --git a/src/main/java/com/flowingcode/vaadin/addons/zoomist/DragEvent.java b/src/main/java/com/flowingcode/vaadin/addons/zoomist/DragEvent.java index 6e9d005..b80cee5 100644 --- a/src/main/java/com/flowingcode/vaadin/addons/zoomist/DragEvent.java +++ b/src/main/java/com/flowingcode/vaadin/addons/zoomist/DragEvent.java @@ -2,7 +2,7 @@ * #%L * Zoomist Add-on * %% - * Copyright (C) 2023 Flowing Code + * Copyright (C) 2023 - 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. diff --git a/src/main/java/com/flowingcode/vaadin/addons/zoomist/DragStartEvent.java b/src/main/java/com/flowingcode/vaadin/addons/zoomist/DragStartEvent.java index 1dffdf2..23c68ae 100644 --- a/src/main/java/com/flowingcode/vaadin/addons/zoomist/DragStartEvent.java +++ b/src/main/java/com/flowingcode/vaadin/addons/zoomist/DragStartEvent.java @@ -2,7 +2,7 @@ * #%L * Zoomist Add-on * %% - * Copyright (C) 2023 Flowing Code + * Copyright (C) 2023 - 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. diff --git a/src/main/java/com/flowingcode/vaadin/addons/zoomist/PinchEndEvent.java b/src/main/java/com/flowingcode/vaadin/addons/zoomist/PinchEndEvent.java index a549b01..2258bb5 100644 --- a/src/main/java/com/flowingcode/vaadin/addons/zoomist/PinchEndEvent.java +++ b/src/main/java/com/flowingcode/vaadin/addons/zoomist/PinchEndEvent.java @@ -2,7 +2,7 @@ * #%L * Zoomist Add-on * %% - * Copyright (C) 2023 Flowing Code + * Copyright (C) 2023 - 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. diff --git a/src/main/java/com/flowingcode/vaadin/addons/zoomist/PinchEvent.java b/src/main/java/com/flowingcode/vaadin/addons/zoomist/PinchEvent.java index 2fd60eb..02688cc 100644 --- a/src/main/java/com/flowingcode/vaadin/addons/zoomist/PinchEvent.java +++ b/src/main/java/com/flowingcode/vaadin/addons/zoomist/PinchEvent.java @@ -2,7 +2,7 @@ * #%L * Zoomist Add-on * %% - * Copyright (C) 2023 Flowing Code + * Copyright (C) 2023 - 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. diff --git a/src/main/java/com/flowingcode/vaadin/addons/zoomist/PinchStartEvent.java b/src/main/java/com/flowingcode/vaadin/addons/zoomist/PinchStartEvent.java index 9896982..a605f49 100644 --- a/src/main/java/com/flowingcode/vaadin/addons/zoomist/PinchStartEvent.java +++ b/src/main/java/com/flowingcode/vaadin/addons/zoomist/PinchStartEvent.java @@ -2,7 +2,7 @@ * #%L * Zoomist Add-on * %% - * Copyright (C) 2023 Flowing Code + * Copyright (C) 2023 - 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. diff --git a/src/main/java/com/flowingcode/vaadin/addons/zoomist/ReadyEvent.java b/src/main/java/com/flowingcode/vaadin/addons/zoomist/ReadyEvent.java index 890ad77..e49f2dc 100644 --- a/src/main/java/com/flowingcode/vaadin/addons/zoomist/ReadyEvent.java +++ b/src/main/java/com/flowingcode/vaadin/addons/zoomist/ReadyEvent.java @@ -2,7 +2,7 @@ * #%L * Zoomist Add-on * %% - * Copyright (C) 2023 Flowing Code + * Copyright (C) 2023 - 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. diff --git a/src/main/java/com/flowingcode/vaadin/addons/zoomist/ResizeEvent.java b/src/main/java/com/flowingcode/vaadin/addons/zoomist/ResizeEvent.java index f78b7e3..c6cde03 100644 --- a/src/main/java/com/flowingcode/vaadin/addons/zoomist/ResizeEvent.java +++ b/src/main/java/com/flowingcode/vaadin/addons/zoomist/ResizeEvent.java @@ -2,7 +2,7 @@ * #%L * Zoomist Add-on * %% - * Copyright (C) 2023 Flowing Code + * Copyright (C) 2023 - 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. diff --git a/src/main/java/com/flowingcode/vaadin/addons/zoomist/SlideEndEvent.java b/src/main/java/com/flowingcode/vaadin/addons/zoomist/SlideEndEvent.java index f23994c..dbd002f 100644 --- a/src/main/java/com/flowingcode/vaadin/addons/zoomist/SlideEndEvent.java +++ b/src/main/java/com/flowingcode/vaadin/addons/zoomist/SlideEndEvent.java @@ -2,7 +2,7 @@ * #%L * Zoomist Add-on * %% - * Copyright (C) 2023 Flowing Code + * Copyright (C) 2023 - 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. diff --git a/src/main/java/com/flowingcode/vaadin/addons/zoomist/SlideEvent.java b/src/main/java/com/flowingcode/vaadin/addons/zoomist/SlideEvent.java index 22f3f12..954a21f 100644 --- a/src/main/java/com/flowingcode/vaadin/addons/zoomist/SlideEvent.java +++ b/src/main/java/com/flowingcode/vaadin/addons/zoomist/SlideEvent.java @@ -2,7 +2,7 @@ * #%L * Zoomist Add-on * %% - * Copyright (C) 2023 Flowing Code + * Copyright (C) 2023 - 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. diff --git a/src/main/java/com/flowingcode/vaadin/addons/zoomist/SlideStartEvent.java b/src/main/java/com/flowingcode/vaadin/addons/zoomist/SlideStartEvent.java index 410a219..6b38f9d 100644 --- a/src/main/java/com/flowingcode/vaadin/addons/zoomist/SlideStartEvent.java +++ b/src/main/java/com/flowingcode/vaadin/addons/zoomist/SlideStartEvent.java @@ -2,7 +2,7 @@ * #%L * Zoomist Add-on * %% - * Copyright (C) 2023 Flowing Code + * Copyright (C) 2023 - 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. diff --git a/src/main/java/com/flowingcode/vaadin/addons/zoomist/WheelEvent.java b/src/main/java/com/flowingcode/vaadin/addons/zoomist/WheelEvent.java index 040cddf..5f13ae0 100644 --- a/src/main/java/com/flowingcode/vaadin/addons/zoomist/WheelEvent.java +++ b/src/main/java/com/flowingcode/vaadin/addons/zoomist/WheelEvent.java @@ -2,7 +2,7 @@ * #%L * Zoomist Add-on * %% - * Copyright (C) 2023 Flowing Code + * Copyright (C) 2023 - 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. diff --git a/src/main/java/com/flowingcode/vaadin/addons/zoomist/ZoomEvent.java b/src/main/java/com/flowingcode/vaadin/addons/zoomist/ZoomEvent.java index f767442..f0f2b0d 100644 --- a/src/main/java/com/flowingcode/vaadin/addons/zoomist/ZoomEvent.java +++ b/src/main/java/com/flowingcode/vaadin/addons/zoomist/ZoomEvent.java @@ -2,7 +2,7 @@ * #%L * Zoomist Add-on * %% - * Copyright (C) 2023 Flowing Code + * Copyright (C) 2023 - 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. diff --git a/src/main/resources/META-INF/resources/frontend/zoomist/fc-zoomist.ts b/src/main/resources/META-INF/resources/frontend/zoomist/fc-zoomist.ts index cb9a37c..cd93f75 100644 --- a/src/main/resources/META-INF/resources/frontend/zoomist/fc-zoomist.ts +++ b/src/main/resources/META-INF/resources/frontend/zoomist/fc-zoomist.ts @@ -2,7 +2,7 @@ * #%L * Zoomist Add-on * %% - * Copyright (C) 2023 Flowing Code + * Copyright (C) 2023 - 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. diff --git a/src/test/java/com/flowingcode/vaadin/addons/DemoLayout.java b/src/test/java/com/flowingcode/vaadin/addons/DemoLayout.java index 0c5b9f0..1e8da53 100644 --- a/src/test/java/com/flowingcode/vaadin/addons/DemoLayout.java +++ b/src/test/java/com/flowingcode/vaadin/addons/DemoLayout.java @@ -2,7 +2,7 @@ * #%L * Zoomist Add-on * %% - * Copyright (C) 2023 Flowing Code + * Copyright (C) 2023 - 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. diff --git a/src/test/java/com/flowingcode/vaadin/addons/zoomist/DemoView.java b/src/test/java/com/flowingcode/vaadin/addons/zoomist/DemoView.java index d2f15ff..51952bf 100644 --- a/src/test/java/com/flowingcode/vaadin/addons/zoomist/DemoView.java +++ b/src/test/java/com/flowingcode/vaadin/addons/zoomist/DemoView.java @@ -2,7 +2,7 @@ * #%L * Zoomist Add-on * %% - * Copyright (C) 2023 Flowing Code + * Copyright (C) 2023 - 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. diff --git a/src/test/java/com/flowingcode/vaadin/addons/zoomist/ZoomistDemo.java b/src/test/java/com/flowingcode/vaadin/addons/zoomist/ZoomistDemo.java index 2966762..ed9b80b 100644 --- a/src/test/java/com/flowingcode/vaadin/addons/zoomist/ZoomistDemo.java +++ b/src/test/java/com/flowingcode/vaadin/addons/zoomist/ZoomistDemo.java @@ -2,7 +2,7 @@ * #%L * Zoomist Add-on * %% - * Copyright (C) 2023 Flowing Code + * Copyright (C) 2023 - 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. diff --git a/src/test/java/com/flowingcode/vaadin/addons/zoomist/ZoomistDemoView.java b/src/test/java/com/flowingcode/vaadin/addons/zoomist/ZoomistDemoView.java index 7508c2d..16e9348 100644 --- a/src/test/java/com/flowingcode/vaadin/addons/zoomist/ZoomistDemoView.java +++ b/src/test/java/com/flowingcode/vaadin/addons/zoomist/ZoomistDemoView.java @@ -2,7 +2,7 @@ * #%L * Zoomist Add-on * %% - * Copyright (C) 2023 Flowing Code + * Copyright (C) 2023 - 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. diff --git a/src/test/java/com/flowingcode/vaadin/addons/zoomist/it/AbstractViewTest.java b/src/test/java/com/flowingcode/vaadin/addons/zoomist/it/AbstractViewTest.java index 52ae71d..5a22fc1 100644 --- a/src/test/java/com/flowingcode/vaadin/addons/zoomist/it/AbstractViewTest.java +++ b/src/test/java/com/flowingcode/vaadin/addons/zoomist/it/AbstractViewTest.java @@ -2,7 +2,7 @@ * #%L * Zoomist Add-on * %% - * Copyright (C) 2023 Flowing Code + * Copyright (C) 2023 - 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. diff --git a/src/test/java/com/flowingcode/vaadin/addons/zoomist/it/ViewIT.java b/src/test/java/com/flowingcode/vaadin/addons/zoomist/it/ViewIT.java index 958ad5f..e790273 100644 --- a/src/test/java/com/flowingcode/vaadin/addons/zoomist/it/ViewIT.java +++ b/src/test/java/com/flowingcode/vaadin/addons/zoomist/it/ViewIT.java @@ -2,7 +2,7 @@ * #%L * Zoomist Add-on * %% - * Copyright (C) 2023 Flowing Code + * Copyright (C) 2023 - 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. diff --git a/src/test/java/com/flowingcode/vaadin/addons/zoomist/test/SerializationTest.java b/src/test/java/com/flowingcode/vaadin/addons/zoomist/test/SerializationTest.java index 351bb82..3d46aed 100644 --- a/src/test/java/com/flowingcode/vaadin/addons/zoomist/test/SerializationTest.java +++ b/src/test/java/com/flowingcode/vaadin/addons/zoomist/test/SerializationTest.java @@ -2,7 +2,7 @@ * #%L * Zoomist Add-on * %% - * Copyright (C) 2023 Flowing Code + * Copyright (C) 2023 - 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. diff --git a/src/test/resources/META-INF/frontend/styles/zoomist-demo-styles.css b/src/test/resources/META-INF/frontend/styles/zoomist-demo-styles.css index 0083e51..5844404 100644 --- a/src/test/resources/META-INF/frontend/styles/zoomist-demo-styles.css +++ b/src/test/resources/META-INF/frontend/styles/zoomist-demo-styles.css @@ -2,7 +2,7 @@ * #%L * Zoomist Add-on * %% - * Copyright (C) 2023 Flowing Code + * Copyright (C) 2023 - 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. From 71660c856356c111899e6fff8cc466e1e80e18b4 Mon Sep 17 00:00:00 2001 From: Paola De Bartolo Date: Tue, 10 Feb 2026 11:42:38 -0300 Subject: [PATCH 5/5] build: update version to 1.2.0-SNAPSHOT --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d83bf4d..a955af1 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.flowingcode.vaadin.addons zoomist-addon - 1.1.1-SNAPSHOT + 1.2.0-SNAPSHOT Zoomist Add-on Zoomist Add-on for Vaadin Flow https://www.flowingcode.com/en/open-source/