@dexteel/mesf-core 4.26.1 → 4.26.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/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +14 -0
- package/dist/index.esm.js +2 -2
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [4.26.2](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v4.26.1...@dexteel/mesf-core-v4.26.2) (2025-03-13)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **TreePickerControlV2:** add ? operator in findNameById function ([4d5baa5](https://github.com/dexteel/mesf-core-frontend/commit/4d5baa5f5822228c579563d926974cc07c5ca54b))
|
|
9
|
+
* **TreePickerControlV2:** add ? operator in findNameById function ([dafa520](https://github.com/dexteel/mesf-core-frontend/commit/dafa520fefbb498bb3f4f2d9761f9df22652afc6))
|
|
10
|
+
|
|
11
|
+
## [4.26.1] - 2025-03-06
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
1
15
|
# Changelog
|
|
2
16
|
|
|
3
17
|
## [4.26.1](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v4.26.0...@dexteel/mesf-core-v4.26.1) (2025-03-06)
|
package/dist/index.esm.js
CHANGED
|
@@ -688,10 +688,10 @@ var useStyles$A = makeStyles(function (theme) { return ({
|
|
|
688
688
|
}
|
|
689
689
|
}); });
|
|
690
690
|
function findNameById(node, id) {
|
|
691
|
-
if (node.id === id) {
|
|
691
|
+
if ((node === null || node === void 0 ? void 0 : node.id) === id) {
|
|
692
692
|
return node.name;
|
|
693
693
|
}
|
|
694
|
-
if (node.children) {
|
|
694
|
+
if (node === null || node === void 0 ? void 0 : node.children) {
|
|
695
695
|
for (var _i = 0, _a = node.children; _i < _a.length; _i++) {
|
|
696
696
|
var child = _a[_i];
|
|
697
697
|
var result = findNameById(child, id);
|