@dexteel/mesf-core 5.9.0 → 5.10.0

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.9.0"
2
+ ".": "5.10.0"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,3 +1,34 @@
1
+ # Changelog
2
+
3
+ ## [5.10.0](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v5.9.1...@dexteel/mesf-core-v5.10.0) (2025-09-02)
4
+
5
+
6
+ ### Features
7
+
8
+ * **TreePickerControl:** enhance keyboard navigation and search functionality ([#446](https://github.com/dexteel/mesf-core-frontend/issues/446)) ([29a8cfd](https://github.com/dexteel/mesf-core-frontend/commit/29a8cfdd45d7a7b9ab7916206414ebeaa9b72848))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **logs:** resolve critical UI issues in logs page ([#445](https://github.com/dexteel/mesf-core-frontend/issues/445)) ([c77f667](https://github.com/dexteel/mesf-core-frontend/commit/c77f6674416dc49e3574256c561b03fd21ecf2bd))
14
+
15
+ ## [5.9.1] - 2025-08-29
16
+
17
+
18
+
19
+ # Changelog
20
+
21
+ ## [5.9.1](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v5.9.0...@dexteel/mesf-core-v5.9.1) (2025-08-29)
22
+
23
+
24
+ ### Bug Fixes
25
+
26
+ * **TreePickerControlV2:** add search functionality with allowSearch prop ([#437](https://github.com/dexteel/mesf-core-frontend/issues/437)) ([a8a9fd6](https://github.com/dexteel/mesf-core-frontend/commit/a8a9fd6dc97a916f4a32a7116bde47e769bc11aa))
27
+
28
+ ## [5.9.0] - 2025-08-29
29
+
30
+
31
+
1
32
  # Changelog
2
33
 
3
34
  ## [5.9.0](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v5.8.0...@dexteel/mesf-core-v5.9.0) (2025-08-29)
@@ -3,6 +3,8 @@ type Props = {
3
3
  date: Date;
4
4
  setDate: (date: Date) => void;
5
5
  label: string | undefined;
6
+ minDate?: Date;
7
+ maxDate?: Date;
6
8
  };
7
- export declare const DateFilter: ({ date, setDate, label }: Props) => React.JSX.Element;
9
+ export declare const DateFilter: ({ date, setDate, label, minDate, maxDate, }: Props) => React.JSX.Element;
8
10
  export {};
@@ -8,6 +8,7 @@ type TreePickerControlProps = {
8
8
  showClearButton?: boolean;
9
9
  showFullPath?: boolean;
10
10
  disabled?: boolean;
11
+ allowSearch?: boolean;
11
12
  dataSource: TreeNode;
12
13
  mostUsedCount?: number | null;
13
14
  itemsWithParent?: String[];