@eeacms/volto-clms-theme 1.1.261 → 1.1.263

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file. Dates are d
4
4
 
5
5
  Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6
6
 
7
+ ### [1.1.263](https://github.com/eea/volto-clms-theme/compare/1.1.262...1.1.263) - 10 December 2025
8
+
9
+ ### [1.1.262](https://github.com/eea/volto-clms-theme/compare/1.1.261...1.1.262) - 13 November 2025
10
+
11
+ #### :bug: Bug Fixes
12
+
13
+ - fix: Product pages having subtabs not positioning correctly - refs #293723 [ana-oprea - [`a564fbc`](https://github.com/eea/volto-clms-theme/commit/a564fbc6b7a5f4384c0eccf950c5dd6382963ab7)]
14
+
7
15
  ### [1.1.261](https://github.com/eea/volto-clms-theme/compare/1.1.260...1.1.261) - 23 October 2025
8
16
 
9
17
  #### :hammer_and_wrench: Others
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eeacms/volto-clms-theme",
3
- "version": "1.1.261",
3
+ "version": "1.1.263",
4
4
  "description": "volto-clms-theme: Volto theme for CLMS site",
5
5
  "main": "src/index.js",
6
6
  "author": "CodeSyntax for the European Environment Agency",
@@ -124,7 +124,15 @@ const TabsComponent = ({
124
124
  }, [activeTab, expandedTab, groupedTabs]);
125
125
 
126
126
  useEffect(() => {
127
- scrollToContentSection();
127
+ const urlParams = new URLSearchParams(location.search);
128
+ const hasHash = location.hash.length > 1;
129
+ const hasQueryTab = urlParams.has('tab');
130
+
131
+ if (hasHash || hasQueryTab) {
132
+ scrollToContentSection();
133
+ } else {
134
+ window.scrollTo({ top: 0, behavior: 'smooth' });
135
+ }
128
136
  }, [activeTab, location.hash.length, location.search]);
129
137
 
130
138
  return (
@@ -45,7 +45,7 @@ export const TimeseriesPicker = (props) => {
45
45
  className="info-icon"
46
46
  style={{ margin: 0 }}
47
47
  tooltip="Select temporal interval to download"
48
- direction="up"
48
+ direction="right"
49
49
  >
50
50
  <button
51
51
  style={{