@refinitiv-ui/elements 7.13.4 → 7.13.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 +6 -0
- package/lib/combo-box/index.js +4 -0
- package/lib/tree/elements/tree.js +1 -1
- package/lib/version.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
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
|
+
## [7.13.5](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/elements@7.13.4...@refinitiv-ui/elements@7.13.5) (2024-09-23)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **tree, tree-select, combo-box:** apply filter when it's updated ([#1217](https://github.com/Refinitiv/refinitiv-ui/issues/1217)) ([3640760](https://github.com/Refinitiv/refinitiv-ui/commit/36407603d89cdf2cf22fd1ae4ee51f15f42aea9d))
|
|
11
|
+
|
|
6
12
|
## [7.13.4](https://github.com/Refinitiv/refinitiv-ui/compare/@refinitiv-ui/elements@7.13.3...@refinitiv-ui/elements@7.13.4) (2024-08-26)
|
|
7
13
|
|
|
8
14
|
### Bug Fixes
|
package/lib/combo-box/index.js
CHANGED
|
@@ -509,6 +509,10 @@ let ComboBox = class ComboBox extends FormFieldElement {
|
|
|
509
509
|
if (changedProperties.has('data') && this.opened) {
|
|
510
510
|
triggerResize();
|
|
511
511
|
}
|
|
512
|
+
// If filter has been updated, filter items again with the updated filter.
|
|
513
|
+
if (changedProperties.has('filter')) {
|
|
514
|
+
this.filterItems();
|
|
515
|
+
}
|
|
512
516
|
super.update(changedProperties);
|
|
513
517
|
}
|
|
514
518
|
/**
|
|
@@ -254,7 +254,7 @@ let Tree = class Tree extends List {
|
|
|
254
254
|
if (changeProperties.has('noRelation') || changeProperties.has('multiple')) {
|
|
255
255
|
this._manager.setMode(this.mode);
|
|
256
256
|
}
|
|
257
|
-
if (changeProperties.has('query') || changeProperties.has('data')) {
|
|
257
|
+
if (changeProperties.has('query') || changeProperties.has('data') || changeProperties.has('filter')) {
|
|
258
258
|
this.filterItems();
|
|
259
259
|
}
|
|
260
260
|
}
|
package/lib/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '7.13.
|
|
1
|
+
export const VERSION = '7.13.5';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@refinitiv-ui/elements",
|
|
3
|
-
"version": "7.13.
|
|
3
|
+
"version": "7.13.5",
|
|
4
4
|
"description": "Element Framework Elements",
|
|
5
5
|
"author": "LSEG",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -373,5 +373,5 @@
|
|
|
373
373
|
"publishConfig": {
|
|
374
374
|
"access": "public"
|
|
375
375
|
},
|
|
376
|
-
"gitHead": "
|
|
376
|
+
"gitHead": "4fec2441736742b711f605b8b6de3c5ea19c7dba"
|
|
377
377
|
}
|