From aa64323f76e3d7b7394f8cdfff6ef2536889ec67 Mon Sep 17 00:00:00 2001 From: Javier Godoy <11554739+javier-godoy@users.noreply.github.com> Date: Wed, 26 Mar 2025 13:48:31 -0300 Subject: [PATCH 1/4] build: upgrade Vaadin 24 version to 24.3.20 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 39cdbd8..4a35542 100644 --- a/pom.xml +++ b/pom.xml @@ -525,7 +525,7 @@ v24 - 24.2.6 + 24.3.20 17 17 11.0.12 From c0c4a4301a5520ad79827890c1277c1b7cda8d0a Mon Sep 17 00:00:00 2001 From: Javier Godoy <11554739+javier-godoy@users.noreply.github.com> Date: Wed, 26 Mar 2025 13:49:13 -0300 Subject: [PATCH 2/4] fix: add json-digger dependency Close #79 --- .../java/com/flowingcode/vaadin/addons/orgchart/OrgChart.java | 1 + src/main/resources/META-INF/frontend/fc-orgchart.js | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/main/java/com/flowingcode/vaadin/addons/orgchart/OrgChart.java b/src/main/java/com/flowingcode/vaadin/addons/orgchart/OrgChart.java index 4a6356a..a4bdc38 100644 --- a/src/main/java/com/flowingcode/vaadin/addons/orgchart/OrgChart.java +++ b/src/main/java/com/flowingcode/vaadin/addons/orgchart/OrgChart.java @@ -54,6 +54,7 @@ @Tag("fc-orgchart") @JsModule("./fc-orgchart.js") @CssImport("./fc-orgchart-styles.css") +@NpmPackage(value = "json-digger", version = "2.0.2") public class OrgChart extends Div { private OrgChartItem orgChartItem; diff --git a/src/main/resources/META-INF/frontend/fc-orgchart.js b/src/main/resources/META-INF/frontend/fc-orgchart.js index dbcb627..6163cf4 100644 --- a/src/main/resources/META-INF/frontend/fc-orgchart.js +++ b/src/main/resources/META-INF/frontend/fc-orgchart.js @@ -20,6 +20,7 @@ import {html, PolymerElement} from '@polymer/polymer/polymer-element.js'; import jQuery from "jquery"; import html2canvas from 'html2canvas'; +import JSONDigger from "json-digger/dist/json-digger.js"; /** * `fc-orgchart` @@ -93,6 +94,7 @@ class FCOrgChart extends PolymerElement { }); window.html2canvas = html2canvas; + window.JSONDigger = JSONDigger; // add title var title = state.chartTitle; From 989c6d9592fa556eee220ab8c812ecd0c837ff75 Mon Sep 17 00:00:00 2001 From: Javier Godoy <11554739+javier-godoy@users.noreply.github.com> Date: Mon, 31 Mar 2025 09:51:13 -0300 Subject: [PATCH 3/4] ci: configure resourceBases for Jetty 11 --- pom.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pom.xml b/pom.xml index 4a35542..f252f27 100644 --- a/pom.xml +++ b/pom.xml @@ -260,6 +260,12 @@ src/test/resources/META-INF/resources + + + src/main/resources/META-INF/resources + src/test/resources/META-INF/resources + + From 0d7e384fd94e4449845ef2fe1f31772a3112ea23 Mon Sep 17 00:00:00 2001 From: Javier Godoy <11554739+javier-godoy@users.noreply.github.com> Date: Mon, 31 Mar 2025 09:54:42 -0300 Subject: [PATCH 4/4] chore: update license headers --- .../flowingcode/vaadin/addons/orgchart/OrgChart.java | 10 +++++----- .../vaadin/addons/orgchart/OrgChartItem.java | 10 +++++----- .../vaadin/addons/orgchart/client/OrgChartState.java | 10 +++++----- .../orgchart/client/constants/ChartConstants.java | 10 +++++----- .../orgchart/client/enums/ChartDirectionEnum.java | 10 +++++----- .../addons/orgchart/extra/TemplateLiteralRewriter.java | 7 ++++--- src/main/resources/META-INF/frontend/fc-orgchart.js | 3 ++- .../META-INF/resources/frontend/fc-orgchart-styles.css | 5 +++-- .../java/com/flowingcode/vaadin/addons/DemoLayout.java | 7 ++++--- .../vaadin/addons/orgchart/BottomTopDemo.java | 7 ++++--- .../flowingcode/vaadin/addons/orgchart/DemoView.java | 7 ++++--- .../vaadin/addons/orgchart/DragAndDropExportDemo.java | 7 ++++--- .../addons/orgchart/HybridEnhancedChartDemo.java | 7 ++++--- .../vaadin/addons/orgchart/ImageInTitleDemo.java | 7 ++++--- .../vaadin/addons/orgchart/OrgchartDemoView.java | 7 ++++--- .../resources/frontend/styles/orgchart/demo-styles.css | 3 ++- .../frontend/styles/orgchart/hybrid-demo-styles.css | 5 +++-- 17 files changed, 67 insertions(+), 55 deletions(-) diff --git a/src/main/java/com/flowingcode/vaadin/addons/orgchart/OrgChart.java b/src/main/java/com/flowingcode/vaadin/addons/orgchart/OrgChart.java index a4bdc38..f1711df 100644 --- a/src/main/java/com/flowingcode/vaadin/addons/orgchart/OrgChart.java +++ b/src/main/java/com/flowingcode/vaadin/addons/orgchart/OrgChart.java @@ -1,17 +1,15 @@ -package com.flowingcode.vaadin.addons.orgchart; - /*- * #%L * OrgChart Add-on * %% - * Copyright (C) 2017 - 2023 Flowing Code S.A. + * Copyright (C) 2017 - 2025 Flowing Code S.A. * %% * 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. @@ -19,6 +17,8 @@ * limitations under the License. * #L% */ +package com.flowingcode.vaadin.addons.orgchart; + import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.databind.ObjectMapper; diff --git a/src/main/java/com/flowingcode/vaadin/addons/orgchart/OrgChartItem.java b/src/main/java/com/flowingcode/vaadin/addons/orgchart/OrgChartItem.java index 8f70117..27340cf 100644 --- a/src/main/java/com/flowingcode/vaadin/addons/orgchart/OrgChartItem.java +++ b/src/main/java/com/flowingcode/vaadin/addons/orgchart/OrgChartItem.java @@ -1,17 +1,15 @@ -package com.flowingcode.vaadin.addons.orgchart; - /*- * #%L * OrgChart Add-on * %% - * Copyright (C) 2017 - 2023 Flowing Code S.A. + * Copyright (C) 2017 - 2025 Flowing Code S.A. * %% * 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. @@ -19,6 +17,8 @@ * limitations under the License. * #L% */ +package com.flowingcode.vaadin.addons.orgchart; + import java.io.Serializable; import java.util.ArrayList; diff --git a/src/main/java/com/flowingcode/vaadin/addons/orgchart/client/OrgChartState.java b/src/main/java/com/flowingcode/vaadin/addons/orgchart/client/OrgChartState.java index ff2ce1f..b599474 100644 --- a/src/main/java/com/flowingcode/vaadin/addons/orgchart/client/OrgChartState.java +++ b/src/main/java/com/flowingcode/vaadin/addons/orgchart/client/OrgChartState.java @@ -1,17 +1,15 @@ -package com.flowingcode.vaadin.addons.orgchart.client; - /*- * #%L * OrgChart Add-on * %% - * Copyright (C) 2017 - 2023 Flowing Code S.A. + * Copyright (C) 2017 - 2025 Flowing Code S.A. * %% * 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. @@ -19,6 +17,8 @@ * limitations under the License. * #L% */ +package com.flowingcode.vaadin.addons.orgchart.client; + import com.flowingcode.vaadin.addons.orgchart.client.constants.ChartConstants; import com.flowingcode.vaadin.addons.orgchart.client.enums.ChartDirectionEnum; diff --git a/src/main/java/com/flowingcode/vaadin/addons/orgchart/client/constants/ChartConstants.java b/src/main/java/com/flowingcode/vaadin/addons/orgchart/client/constants/ChartConstants.java index 9a20c5d..e83a902 100644 --- a/src/main/java/com/flowingcode/vaadin/addons/orgchart/client/constants/ChartConstants.java +++ b/src/main/java/com/flowingcode/vaadin/addons/orgchart/client/constants/ChartConstants.java @@ -1,17 +1,15 @@ -package com.flowingcode.vaadin.addons.orgchart.client.constants; - /*- * #%L * OrgChart Add-on * %% - * Copyright (C) 2017 - 2023 Flowing Code S.A. + * Copyright (C) 2017 - 2025 Flowing Code S.A. * %% * 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. @@ -19,6 +17,8 @@ * limitations under the License. * #L% */ +package com.flowingcode.vaadin.addons.orgchart.client.constants; + public interface ChartConstants { diff --git a/src/main/java/com/flowingcode/vaadin/addons/orgchart/client/enums/ChartDirectionEnum.java b/src/main/java/com/flowingcode/vaadin/addons/orgchart/client/enums/ChartDirectionEnum.java index 439a09d..68b6e16 100644 --- a/src/main/java/com/flowingcode/vaadin/addons/orgchart/client/enums/ChartDirectionEnum.java +++ b/src/main/java/com/flowingcode/vaadin/addons/orgchart/client/enums/ChartDirectionEnum.java @@ -1,17 +1,15 @@ -package com.flowingcode.vaadin.addons.orgchart.client.enums; - /*- * #%L * OrgChart Add-on * %% - * Copyright (C) 2017 - 2023 Flowing Code S.A. + * Copyright (C) 2017 - 2025 Flowing Code S.A. * %% * 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. @@ -19,6 +17,8 @@ * limitations under the License. * #L% */ +package com.flowingcode.vaadin.addons.orgchart.client.enums; + /** * Enumeration of the directions that the organization chart can have.
diff --git a/src/main/java/com/flowingcode/vaadin/addons/orgchart/extra/TemplateLiteralRewriter.java b/src/main/java/com/flowingcode/vaadin/addons/orgchart/extra/TemplateLiteralRewriter.java index 72a1f41..a09dafc 100644 --- a/src/main/java/com/flowingcode/vaadin/addons/orgchart/extra/TemplateLiteralRewriter.java +++ b/src/main/java/com/flowingcode/vaadin/addons/orgchart/extra/TemplateLiteralRewriter.java @@ -2,14 +2,14 @@ * #%L * OrgChart Add-on * %% - * Copyright (C) 2017 - 2023 Flowing Code S.A. + * Copyright (C) 2017 - 2025 Flowing Code S.A. * %% * 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. @@ -17,6 +17,7 @@ * limitations under the License. * #L% */ + package com.flowingcode.vaadin.addons.orgchart.extra; /** diff --git a/src/main/resources/META-INF/frontend/fc-orgchart.js b/src/main/resources/META-INF/frontend/fc-orgchart.js index 6163cf4..2173517 100644 --- a/src/main/resources/META-INF/frontend/fc-orgchart.js +++ b/src/main/resources/META-INF/frontend/fc-orgchart.js @@ -2,7 +2,7 @@ * #%L * OrgChart Add-on * %% - * Copyright (C) 2017 - 2023 Flowing Code S.A. + * Copyright (C) 2017 - 2025 Flowing Code S.A. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -17,6 +17,7 @@ * limitations under the License. * #L% */ + import {html, PolymerElement} from '@polymer/polymer/polymer-element.js'; import jQuery from "jquery"; import html2canvas from 'html2canvas'; diff --git a/src/main/resources/META-INF/resources/frontend/fc-orgchart-styles.css b/src/main/resources/META-INF/resources/frontend/fc-orgchart-styles.css index 19beda9..460a0ef 100644 --- a/src/main/resources/META-INF/resources/frontend/fc-orgchart-styles.css +++ b/src/main/resources/META-INF/resources/frontend/fc-orgchart-styles.css @@ -2,7 +2,7 @@ * #%L * OrgChart Add-on * %% - * Copyright (C) 2017 - 2023 Flowing Code S.A. + * Copyright (C) 2017 - 2025 Flowing Code S.A. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -17,6 +17,7 @@ * limitations under the License. * #L% */ + .orgchart .node { width: 140px; @@ -24,4 +25,4 @@ .orgchart .node .content { overflow: hidden; -} \ No newline at end of file +} diff --git a/src/test/java/com/flowingcode/vaadin/addons/DemoLayout.java b/src/test/java/com/flowingcode/vaadin/addons/DemoLayout.java index a4d4d70..44c729d 100644 --- a/src/test/java/com/flowingcode/vaadin/addons/DemoLayout.java +++ b/src/test/java/com/flowingcode/vaadin/addons/DemoLayout.java @@ -2,14 +2,14 @@ * #%L * OrgChart Add-on * %% - * Copyright (C) 2017 - 2023 Flowing Code S.A. + * Copyright (C) 2017 - 2025 Flowing Code S.A. * %% * 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. @@ -17,6 +17,7 @@ * limitations under the License. * #L% */ + package com.flowingcode.vaadin.addons; import com.vaadin.flow.component.html.Div; diff --git a/src/test/java/com/flowingcode/vaadin/addons/orgchart/BottomTopDemo.java b/src/test/java/com/flowingcode/vaadin/addons/orgchart/BottomTopDemo.java index 8655233..c1ff4aa 100644 --- a/src/test/java/com/flowingcode/vaadin/addons/orgchart/BottomTopDemo.java +++ b/src/test/java/com/flowingcode/vaadin/addons/orgchart/BottomTopDemo.java @@ -2,14 +2,14 @@ * #%L * OrgChart Add-on * %% - * Copyright (C) 2017 - 2023 Flowing Code S.A. + * Copyright (C) 2017 - 2025 Flowing Code S.A. * %% * 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. @@ -17,6 +17,7 @@ * limitations under the License. * #L% */ + package com.flowingcode.vaadin.addons.orgchart; import java.util.Arrays; diff --git a/src/test/java/com/flowingcode/vaadin/addons/orgchart/DemoView.java b/src/test/java/com/flowingcode/vaadin/addons/orgchart/DemoView.java index 10a3853..95f40fc 100644 --- a/src/test/java/com/flowingcode/vaadin/addons/orgchart/DemoView.java +++ b/src/test/java/com/flowingcode/vaadin/addons/orgchart/DemoView.java @@ -2,14 +2,14 @@ * #%L * OrgChart Add-on * %% - * Copyright (C) 2017 - 2023 Flowing Code S.A. + * Copyright (C) 2017 - 2025 Flowing Code S.A. * %% * 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. @@ -17,6 +17,7 @@ * limitations under the License. * #L% */ + package com.flowingcode.vaadin.addons.orgchart; import com.vaadin.flow.component.orderedlayout.VerticalLayout; diff --git a/src/test/java/com/flowingcode/vaadin/addons/orgchart/DragAndDropExportDemo.java b/src/test/java/com/flowingcode/vaadin/addons/orgchart/DragAndDropExportDemo.java index f15d9c7..2e309b8 100644 --- a/src/test/java/com/flowingcode/vaadin/addons/orgchart/DragAndDropExportDemo.java +++ b/src/test/java/com/flowingcode/vaadin/addons/orgchart/DragAndDropExportDemo.java @@ -2,14 +2,14 @@ * #%L * OrgChart Add-on * %% - * Copyright (C) 2017 - 2023 Flowing Code S.A. + * Copyright (C) 2017 - 2025 Flowing Code S.A. * %% * 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. @@ -17,6 +17,7 @@ * limitations under the License. * #L% */ + package com.flowingcode.vaadin.addons.orgchart; import java.util.Arrays; diff --git a/src/test/java/com/flowingcode/vaadin/addons/orgchart/HybridEnhancedChartDemo.java b/src/test/java/com/flowingcode/vaadin/addons/orgchart/HybridEnhancedChartDemo.java index de5cc13..4fa2b6f 100644 --- a/src/test/java/com/flowingcode/vaadin/addons/orgchart/HybridEnhancedChartDemo.java +++ b/src/test/java/com/flowingcode/vaadin/addons/orgchart/HybridEnhancedChartDemo.java @@ -2,14 +2,14 @@ * #%L * OrgChart Add-on * %% - * Copyright (C) 2017 - 2023 Flowing Code S.A. + * Copyright (C) 2017 - 2025 Flowing Code S.A. * %% * 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. @@ -17,6 +17,7 @@ * limitations under the License. * #L% */ + package com.flowingcode.vaadin.addons.orgchart; import java.util.Arrays; diff --git a/src/test/java/com/flowingcode/vaadin/addons/orgchart/ImageInTitleDemo.java b/src/test/java/com/flowingcode/vaadin/addons/orgchart/ImageInTitleDemo.java index 3a63cea..45186e6 100644 --- a/src/test/java/com/flowingcode/vaadin/addons/orgchart/ImageInTitleDemo.java +++ b/src/test/java/com/flowingcode/vaadin/addons/orgchart/ImageInTitleDemo.java @@ -2,14 +2,14 @@ * #%L * OrgChart Add-on * %% - * Copyright (C) 2017 - 2023 Flowing Code S.A. + * Copyright (C) 2017 - 2025 Flowing Code S.A. * %% * 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. @@ -17,6 +17,7 @@ * limitations under the License. * #L% */ + package com.flowingcode.vaadin.addons.orgchart; import java.util.Arrays; diff --git a/src/test/java/com/flowingcode/vaadin/addons/orgchart/OrgchartDemoView.java b/src/test/java/com/flowingcode/vaadin/addons/orgchart/OrgchartDemoView.java index 0baac34..9841a13 100644 --- a/src/test/java/com/flowingcode/vaadin/addons/orgchart/OrgchartDemoView.java +++ b/src/test/java/com/flowingcode/vaadin/addons/orgchart/OrgchartDemoView.java @@ -2,14 +2,14 @@ * #%L * OrgChart Add-on * %% - * Copyright (C) 2017 - 2023 Flowing Code S.A. + * Copyright (C) 2017 - 2025 Flowing Code S.A. * %% * 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. @@ -17,6 +17,7 @@ * limitations under the License. * #L% */ + package com.flowingcode.vaadin.addons.orgchart; import com.flowingcode.vaadin.addons.DemoLayout; diff --git a/src/test/resources/META-INF/resources/frontend/styles/orgchart/demo-styles.css b/src/test/resources/META-INF/resources/frontend/styles/orgchart/demo-styles.css index dcd326d..d583080 100644 --- a/src/test/resources/META-INF/resources/frontend/styles/orgchart/demo-styles.css +++ b/src/test/resources/META-INF/resources/frontend/styles/orgchart/demo-styles.css @@ -2,7 +2,7 @@ * #%L * OrgChart Add-on * %% - * Copyright (C) 2017 - 2023 Flowing Code S.A. + * Copyright (C) 2017 - 2025 Flowing Code S.A. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -18,6 +18,7 @@ * #L% */ + .chart-container { position: relative; display: inline-block; diff --git a/src/test/resources/META-INF/resources/frontend/styles/orgchart/hybrid-demo-styles.css b/src/test/resources/META-INF/resources/frontend/styles/orgchart/hybrid-demo-styles.css index e2a8775..2b20bca 100644 --- a/src/test/resources/META-INF/resources/frontend/styles/orgchart/hybrid-demo-styles.css +++ b/src/test/resources/META-INF/resources/frontend/styles/orgchart/hybrid-demo-styles.css @@ -2,7 +2,7 @@ * #%L * OrgChart Add-on * %% - * Copyright (C) 2017 - 2023 Flowing Code S.A. + * Copyright (C) 2017 - 2025 Flowing Code S.A. * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -17,6 +17,7 @@ * limitations under the License. * #L% */ + .hybrid-chart .orgchart .node { width: 220px; } @@ -76,4 +77,4 @@ .hybrid-chart .orgchart .nodes.vertical .hierarchy::after, .hybrid-chart .orgchart .nodes.vertical .hierarchy::before { border-color: var(--lumo-body-text-color); -} \ No newline at end of file +}