@dexteel/mesf-core 5.5.1 → 5.5.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.
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "5.5.1"
2
+ ".": "5.5.2"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ # Changelog
2
+
3
+ ## [5.5.2](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v5.5.1...@dexteel/mesf-core-v5.5.2) (2025-07-01)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **treePickerControl:** fix control supporting 0 ([d63e1ee](https://github.com/dexteel/mesf-core-frontend/commit/d63e1ee0d26afd0067e10ffd4555c6b03cb44f01))
9
+ * **treePickerControl:** fix control supporting 0 ([bcfb5db](https://github.com/dexteel/mesf-core-frontend/commit/bcfb5dbc5094f6ecbcebf127182dcb9839023bd6))
10
+
11
+ ## [5.5.1] - 2025-06-24
12
+
13
+
14
+
1
15
  # Changelog
2
16
 
3
17
  ## [5.5.1](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v5.5.0...@dexteel/mesf-core-v5.5.1) (2025-06-24)
package/dist/index.esm.js CHANGED
@@ -617,7 +617,7 @@ var TreePickerControl = function (props) {
617
617
  if (!showAssetTree) {
618
618
  setOpen(false);
619
619
  }
620
- if (newValue) {
620
+ if (newValue !== undefined && newValue !== null) {
621
621
  if (onSelect !== undefined) {
622
622
  onSelect(newValue, newDescription, findNode);
623
623
  }