@dexteel/mesf-core 5.9.1 → 5.11.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.1"
2
+ ".": "5.11.0"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,3 +1,45 @@
1
+ # Changelog
2
+
3
+ ## [5.11.0](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v5.10.0...@dexteel/mesf-core-v5.11.0) (2025-09-03)
4
+
5
+
6
+ ### Features
7
+
8
+ * **QueryCacheInvalidations:** remove custom styles and use Material-UI components only ([#455](https://github.com/dexteel/mesf-core-frontend/issues/455)) ([f108216](https://github.com/dexteel/mesf-core-frontend/commit/f1082167dbfeba2df365c8ca77a9b7d23617ea60))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **account:** improve account configuration UI and functionality ([b7ccbdd](https://github.com/dexteel/mesf-core-frontend/commit/b7ccbddabe50df58fbfc4966e617709d13133aa9))
14
+ * **account:** improve account configuration UI and functionality ([14b476d](https://github.com/dexteel/mesf-core-frontend/commit/14b476d0468c38889c653341f71a607a2453c897))
15
+ * **account:** remove custom styles and replace with Material-UI props ([c910339](https://github.com/dexteel/mesf-core-frontend/commit/c910339f5670f757c982532202f3caf0e3dcc8cc))
16
+ * **AssetSelector:** allow plantAssetId to be configured via MESFMain props ([55e9486](https://github.com/dexteel/mesf-core-frontend/commit/55e9486c78df5722cbcfe914c9c219fc08d7260f))
17
+ * **AssetSelector:** handle AssetId 0 correctly and remove None option when assets exist ([66036cc](https://github.com/dexteel/mesf-core-frontend/commit/66036cc2162127d06362dbe289e3c5a8eba50d9b))
18
+ * **AssetSelector:** use plantAssetId from context as default instead of first asset ([8063686](https://github.com/dexteel/mesf-core-frontend/commit/8063686fd3f8bf04af98ffd6448f202724e8ae5b))
19
+ * **QueryCacheInvalidations:** standardize page layout and improve UX consistency ([#451](https://github.com/dexteel/mesf-core-frontend/issues/451)) ([c3009e2](https://github.com/dexteel/mesf-core-frontend/commit/c3009e235e558b4a3773dfe9ba89aa749c602dc6))
20
+
21
+ ## [5.10.0] - 2025-09-02
22
+
23
+
24
+
25
+ # Changelog
26
+
27
+ ## [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)
28
+
29
+
30
+ ### Features
31
+
32
+ * **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))
33
+
34
+
35
+ ### Bug Fixes
36
+
37
+ * **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))
38
+
39
+ ## [5.9.1] - 2025-08-29
40
+
41
+
42
+
1
43
  # Changelog
2
44
 
3
45
  ## [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)
@@ -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 {};