@refinitiv-ui/elements 6.8.4 → 6.8.5
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
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [6.8.5](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/elements@6.8.4...@refinitiv-ui/elements@6.8.5) (2023-06-08)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @refinitiv-ui/elements
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [6.8.4](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/elements@6.8.4-next.1...@refinitiv-ui/elements@6.8.4) (2023-06-07)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @refinitiv-ui/elements
|
|
@@ -163,9 +163,9 @@ const plugins = {
|
|
|
163
163
|
}
|
|
164
164
|
const selectedIndex = Number(config.selected?.index);
|
|
165
165
|
const datasetIndex = Number(config.selected.datasetIndex || 0);
|
|
166
|
-
const
|
|
166
|
+
const visibleIndex = chart.getVisibleDatasetCount() - 1;
|
|
167
167
|
// Validate index and datasetIndex
|
|
168
|
-
if (isNaN(selectedIndex) || (isNaN(datasetIndex) || datasetIndex < 0 || datasetIndex >
|
|
168
|
+
if (isNaN(selectedIndex) || (isNaN(datasetIndex) || datasetIndex < 0 || datasetIndex > visibleIndex)) {
|
|
169
169
|
return;
|
|
170
170
|
}
|
|
171
171
|
// Set selected item to the chart
|
package/lib/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '6.8.
|
|
1
|
+
export const VERSION = '6.8.5';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@refinitiv-ui/elements",
|
|
3
|
-
"version": "6.8.
|
|
3
|
+
"version": "6.8.5",
|
|
4
4
|
"description": "Element Framework Elements",
|
|
5
5
|
"author": "LSEG",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -368,5 +368,5 @@
|
|
|
368
368
|
"publishConfig": {
|
|
369
369
|
"access": "public"
|
|
370
370
|
},
|
|
371
|
-
"gitHead": "
|
|
371
|
+
"gitHead": "915edbc6a30a6cb4f363463068102f5255345842"
|
|
372
372
|
}
|