@refinitiv-ui/elements 6.2.0 → 6.2.1

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,18 @@
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.2.1](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/elements@6.2.0...@refinitiv-ui/elements@6.2.1) (2022-09-26)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **autosuggest:** fix invalid label when disabled suggestion item ([#451](https://github.com/Refinitiv/refinitiv-ui/issues/451)) ([1944007](https://github.com/Refinitiv/refinitiv-ui/commit/194400774dece311856bc9bd0f80a17362a9466e))
12
+ * **configurations:** move import extension eslint rule to local env ([#459](https://github.com/Refinitiv/refinitiv-ui/issues/459)) ([f8a9e1a](https://github.com/Refinitiv/refinitiv-ui/commit/f8a9e1a710901028da57e314ff5a879dab5d9e73))
13
+
14
+
15
+
16
+
17
+
6
18
  # [6.2.0](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/elements@6.1.1...@refinitiv-ui/elements@6.2.0) (2022-09-14)
7
19
 
8
20
 
@@ -43,6 +43,6 @@ export const updateElementContent = (el, query, label, value) => {
43
43
  el.innerHTML = queryWordSelect(label, query);
44
44
  }
45
45
  else {
46
- el.label = `${value}`;
46
+ el.label = label || `${value}`;
47
47
  }
48
48
  };
@@ -1041,6 +1041,7 @@ __decorate([
1041
1041
  ], Heatmap.prototype, "axisHidden", void 0);
1042
1042
  __decorate([
1043
1043
  property({ type: Object, attribute: false })
1044
+ /* istanbul ignore next */
1044
1045
  ], Heatmap.prototype, "hoverCell", null);
1045
1046
  __decorate([
1046
1047
  property({ type: Number, attribute: 'min-point' })
package/lib/version.js CHANGED
@@ -1 +1 @@
1
- export const VERSION = '6.2.0';
1
+ export const VERSION = '6.2.1';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@refinitiv-ui/elements",
3
- "version": "6.2.0",
3
+ "version": "6.2.1",
4
4
  "description": "Element Framework Elements",
5
5
  "author": "Refinitiv",
6
6
  "license": "Apache-2.0",
@@ -343,24 +343,24 @@
343
343
  "tslib": "^2.3.1"
344
344
  },
345
345
  "devDependencies": {
346
- "@refinitiv-ui/core": "^6.0.6",
347
- "@refinitiv-ui/demo-block": "^6.0.7",
348
- "@refinitiv-ui/i18n": "^6.0.5",
346
+ "@refinitiv-ui/core": "^6.0.7",
347
+ "@refinitiv-ui/demo-block": "^6.0.8",
348
+ "@refinitiv-ui/i18n": "^6.0.6",
349
349
  "@refinitiv-ui/phrasebook": "^6.2.0",
350
350
  "@refinitiv-ui/test-helpers": "^6.0.4",
351
- "@refinitiv-ui/translate": "^6.0.6",
352
- "@refinitiv-ui/utils": "^6.1.0",
351
+ "@refinitiv-ui/translate": "^6.0.7",
352
+ "@refinitiv-ui/utils": "^6.1.1",
353
353
  "@types/d3-interpolate": "^3.0.1"
354
354
  },
355
355
  "peerDependencies": {
356
- "@refinitiv-ui/core": "^6.0.6",
357
- "@refinitiv-ui/i18n": "^6.0.5",
356
+ "@refinitiv-ui/core": "^6.0.7",
357
+ "@refinitiv-ui/i18n": "^6.0.6",
358
358
  "@refinitiv-ui/phrasebook": "^6.2.0",
359
- "@refinitiv-ui/translate": "^6.0.6",
360
- "@refinitiv-ui/utils": "^6.1.0"
359
+ "@refinitiv-ui/translate": "^6.0.7",
360
+ "@refinitiv-ui/utils": "^6.1.1"
361
361
  },
362
362
  "publishConfig": {
363
363
  "access": "public"
364
364
  },
365
- "gitHead": "c689f5c46141ff560a181dcc5c1483c17a147918"
365
+ "gitHead": "57da6d58ff28705699d54ab9e9bc2ea76c563216"
366
366
  }