@refinitiv-ui/elements 6.8.4-next.1 → 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,22 @@
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
+
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)
15
+
16
+ **Note:** Version bump only for package @refinitiv-ui/elements
17
+
18
+
19
+
20
+
21
+
6
22
  ## [6.8.4-next.1](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/elements@6.8.4-next.0...@refinitiv-ui/elements@6.8.4-next.1) (2023-06-06)
7
23
 
8
24
  **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 visibleIndexes = chart.getVisibleDatasetCount() - 1;
166
+ const visibleIndex = chart.getVisibleDatasetCount() - 1;
167
167
  // Validate index and datasetIndex
168
- if (isNaN(selectedIndex) || (isNaN(datasetIndex) || datasetIndex < 0 || datasetIndex > visibleIndexes)) {
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.4-next.1';
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.4-next.1",
3
+ "version": "6.8.5",
4
4
  "description": "Element Framework Elements",
5
5
  "author": "LSEG",
6
6
  "license": "Apache-2.0",
@@ -349,24 +349,24 @@
349
349
  "tslib": "^2.3.1"
350
350
  },
351
351
  "devDependencies": {
352
- "@refinitiv-ui/core": "^6.4.3-next.1",
353
- "@refinitiv-ui/demo-block": "^6.1.4-next.1",
352
+ "@refinitiv-ui/core": "^6.4.3",
353
+ "@refinitiv-ui/demo-block": "^6.1.4",
354
354
  "@refinitiv-ui/i18n": "^6.0.13",
355
355
  "@refinitiv-ui/phrasebook": "^6.3.2",
356
356
  "@refinitiv-ui/test-helpers": "^6.0.10",
357
- "@refinitiv-ui/translate": "^6.0.21-next.1",
358
- "@refinitiv-ui/utils": "^6.2.4-next.1",
357
+ "@refinitiv-ui/translate": "^6.0.21",
358
+ "@refinitiv-ui/utils": "^6.2.4",
359
359
  "@types/d3-interpolate": "^3.0.1"
360
360
  },
361
361
  "peerDependencies": {
362
- "@refinitiv-ui/core": "^6.4.3-next.1",
362
+ "@refinitiv-ui/core": "^6.4.3",
363
363
  "@refinitiv-ui/i18n": "^6.0.13",
364
364
  "@refinitiv-ui/phrasebook": "^6.3.2",
365
- "@refinitiv-ui/translate": "^6.0.21-next.1",
366
- "@refinitiv-ui/utils": "^6.2.4-next.1"
365
+ "@refinitiv-ui/translate": "^6.0.21",
366
+ "@refinitiv-ui/utils": "^6.2.4"
367
367
  },
368
368
  "publishConfig": {
369
369
  "access": "public"
370
370
  },
371
- "gitHead": "e07605aed88e8a5792fc949db2077510b39129b1"
371
+ "gitHead": "915edbc6a30a6cb4f363463068102f5255345842"
372
372
  }