File tree 4 files changed +13
-3
lines changed
4 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 2.18.3] - 2025-01-15
11
+
12
+ ### Fixed
13
+
14
+ - Update buttons when the title changes
15
+
10
16
## [ 2.18.2] - 2025-01-15
11
17
12
18
### Added
@@ -699,6 +705,7 @@ Please see the [Releases](https://github.com/Open-EO/openeo-vue-components/relea
699
705
700
706
701
707
[ Unreleased ] : https://github.com/Open-EO/openeo-vue-components/compare/v2.18.2...HEAD
708
+ [ 2.18.3 ] : https://github.com/Open-EO/openeo-vue-components/compare/v2.18.2...v2.18.3
702
709
[ 2.18.2 ] : https://github.com/Open-EO/openeo-vue-components/compare/v2.18.1...v2.18.2
703
710
[ 2.18.1 ] : https://github.com/Open-EO/openeo-vue-components/compare/v2.18.0...v2.18.1
704
711
[ 2.18.0 ] : https://github.com/Open-EO/openeo-vue-components/compare/v2.17.1...v2.18.0
Original file line number Diff line number Diff line change 2
2
3
3
A set of [ Vue] ( https://vuejs.org ) components for [ openEO] ( http://openeo.org ) .
4
4
5
- This library's version is [ ** 2.18.2 ** ] ( CHANGELOG.md ) and supports ** openEO API versions 1.x.x** .
5
+ This library's version is [ ** 2.18.3 ** ] ( CHANGELOG.md ) and supports ** openEO API versions 1.x.x** .
6
6
Legacy versions supporting API version 0.x are available as [ releases] ( https://github.com/Open-EO/openeo-vue-components/releases ) .
7
7
8
8
npm: [ @openeo/vue-components ] ( https://www.npmjs.com/package/@openeo/vue-components )
Original file line number Diff line number Diff line change @@ -78,6 +78,9 @@ export default {
78
78
else {
79
79
this .removeTooltip ();
80
80
}
81
+ },
82
+ title () {
83
+ this .updateTooltip ();
81
84
}
82
85
},
83
86
methods: {
@@ -90,14 +93,14 @@ export default {
90
93
}
91
94
this .element = document .createElement (' div' );
92
95
this .element .className = ' openeo-vue-tooltip' ;
93
- this .element .innerText = this .title ;
94
96
this .container .appendChild (this .element );
95
97
this .updateTooltip ();
96
98
},
97
99
updateTooltip () {
98
100
if (! this .element ) {
99
101
return ;
100
102
}
103
+ this .element .innerText = this .title ;
101
104
const el = this .$refs .button ;
102
105
const pos = el .getBoundingClientRect ();
103
106
this .element .style .top = Math .max (0 , (pos .top + el .offsetHeight )) + 1 + ' px' ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @openeo/vue-components" ,
3
- "version" : " 2.18.2 " ,
3
+ "version" : " 2.18.3 " ,
4
4
"author" : " openEO Consortium" ,
5
5
"contributors" : [
6
6
{
You can’t perform that action at this time.
0 commit comments