@refinitiv-ui/elements 6.6.1 → 6.6.2
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 +9 -1
- package/lib/combo-box/index.js +1 -1
- package/lib/version.js +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,12 +3,20 @@
|
|
|
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.6.2](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/elements@6.6.1...@refinitiv-ui/elements@6.6.2) (2023-02-14)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @refinitiv-ui/elements
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [6.6.1](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/elements@6.6.0...@refinitiv-ui/elements@6.6.1) (2023-01-27)
|
|
7
15
|
|
|
8
16
|
|
|
9
17
|
### Bug Fixes
|
|
10
18
|
|
|
11
|
-
* **list:**
|
|
19
|
+
* **list:** error custom renderer requires key ([#575](https://github.com/Refinitiv/refinitiv-ui/issues/575)) ([1a960c9](https://github.com/Refinitiv/refinitiv-ui/commit/1a960c9234fb4a370b60d3901e65b437b1444823))
|
|
12
20
|
* **pagination, tree-select:** remove unused element imports ([#572](https://github.com/Refinitiv/refinitiv-ui/issues/572)) ([0bfc2f5](https://github.com/Refinitiv/refinitiv-ui/commit/0bfc2f5eccd0a6ea50c3927d71d545df20c79d90))
|
|
13
21
|
* **select:** unset cursor of header items ([#571](https://github.com/Refinitiv/refinitiv-ui/issues/571)) ([eff8a75](https://github.com/Refinitiv/refinitiv-ui/commit/eff8a75a68f23348178f05c716db673c97acf2f1))
|
|
14
22
|
|
package/lib/combo-box/index.js
CHANGED
|
@@ -802,8 +802,8 @@ let ComboBox = class ComboBox extends FormFieldElement {
|
|
|
802
802
|
*/
|
|
803
803
|
onListValueChanged() {
|
|
804
804
|
// cascade value changed event
|
|
805
|
-
this.notifyPropertyChange('value', this.value);
|
|
806
805
|
this.onListInteraction();
|
|
806
|
+
this.notifyPropertyChange('value', this.value);
|
|
807
807
|
}
|
|
808
808
|
/**
|
|
809
809
|
* Handle popup opened event
|
package/lib/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '6.6.
|
|
1
|
+
export const VERSION = '6.6.2';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@refinitiv-ui/elements",
|
|
3
|
-
"version": "6.6.
|
|
3
|
+
"version": "6.6.2",
|
|
4
4
|
"description": "Element Framework Elements",
|
|
5
5
|
"author": "LSEG",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -352,7 +352,7 @@
|
|
|
352
352
|
"@refinitiv-ui/i18n": "^6.0.9",
|
|
353
353
|
"@refinitiv-ui/phrasebook": "^6.3.1",
|
|
354
354
|
"@refinitiv-ui/test-helpers": "^6.0.6",
|
|
355
|
-
"@refinitiv-ui/translate": "^6.0.
|
|
355
|
+
"@refinitiv-ui/translate": "^6.0.15",
|
|
356
356
|
"@refinitiv-ui/utils": "^6.2.3",
|
|
357
357
|
"@types/d3-interpolate": "^3.0.1"
|
|
358
358
|
},
|
|
@@ -360,11 +360,11 @@
|
|
|
360
360
|
"@refinitiv-ui/core": "^6.3.0",
|
|
361
361
|
"@refinitiv-ui/i18n": "^6.0.9",
|
|
362
362
|
"@refinitiv-ui/phrasebook": "^6.3.1",
|
|
363
|
-
"@refinitiv-ui/translate": "^6.0.
|
|
363
|
+
"@refinitiv-ui/translate": "^6.0.15",
|
|
364
364
|
"@refinitiv-ui/utils": "^6.2.3"
|
|
365
365
|
},
|
|
366
366
|
"publishConfig": {
|
|
367
367
|
"access": "public"
|
|
368
368
|
},
|
|
369
|
-
"gitHead": "
|
|
369
|
+
"gitHead": "882b258bdb1896b1acdd2a832327632a1af7306f"
|
|
370
370
|
}
|