@dexteel/mesf-core 5.6.1 → 5.7.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.6.1"
2
+ ".": "5.7.0"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,3 +1,44 @@
1
+ # Changelog
2
+
3
+ ## [5.7.0](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v5.6.3...@dexteel/mesf-core-v5.7.0) (2025-07-17)
4
+
5
+
6
+ ### Features
7
+
8
+ * **user configuration:** add default area setter ([e50985e](https://github.com/dexteel/mesf-core-frontend/commit/e50985ea4ba550c5e566d18a20e786aab3ed32e3))
9
+ * **user configuration:** add default area setter ([854b16b](https://github.com/dexteel/mesf-core-frontend/commit/854b16b89b998240c02763a4b0a1e5297079e2ff))
10
+
11
+ ## [5.6.3] - 2025-07-16
12
+
13
+
14
+
15
+ # Changelog
16
+
17
+ ## [5.6.3](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v5.6.2...@dexteel/mesf-core-v5.6.3) (2025-07-16)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **tree-picker-control-v2:** Use dialogMaxWidth as optional param ([10b41d3](https://github.com/dexteel/mesf-core-frontend/commit/10b41d3965e22c5a5a6db4ec574aa958eba0b68d))
23
+ * **tree-picker-control-v2:** Use dialogMaxWidth as optional param ([3491b4a](https://github.com/dexteel/mesf-core-frontend/commit/3491b4aceb7534294a56d69fd8505f7de79affc6))
24
+
25
+ ## [5.6.2] - 2025-07-16
26
+
27
+
28
+
29
+ # Changelog
30
+
31
+ ## [5.6.2](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v5.6.1...@dexteel/mesf-core-v5.6.2) (2025-07-16)
32
+
33
+
34
+ ### Bug Fixes
35
+
36
+ * **tree-picker-control-v2:** Rename params | Use itemWithParents as param ([58c9424](https://github.com/dexteel/mesf-core-frontend/commit/58c9424f6df3f05ae98e3a97558bbedbd28b3757))
37
+
38
+ ## [5.6.1] - 2025-07-15
39
+
40
+
41
+
1
42
  # Changelog
2
43
 
3
44
  ## [5.6.1](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v5.6.0...@dexteel/mesf-core-v5.6.1) (2025-07-15)
@@ -0,0 +1,8 @@
1
+ import React from "react";
2
+ interface AssetSelectorProps {
3
+ value: number | null;
4
+ onChange: (value: number | null) => void;
5
+ disabled?: boolean;
6
+ }
7
+ export declare const AssetSelector: React.FC<AssetSelectorProps>;
8
+ export {};
@@ -6,6 +6,7 @@ export interface User {
6
6
  AuthTypeId: number | null;
7
7
  IsActive: boolean;
8
8
  LastLogin: null | Date;
9
+ DefaultAssetId: number | null;
9
10
  ProfilesId: string | number[];
10
11
  Profiles: string | string[];
11
12
  }
@@ -9,6 +9,9 @@ type TreePickerControlProps = {
9
9
  showFullPath?: boolean;
10
10
  disabled?: boolean;
11
11
  dataSource: TreeNode;
12
+ mostUsedCount?: number | null;
13
+ itemsWithParent?: String[];
14
+ dialogMaxWidth?: "xs" | "sm" | "md" | "lg" | "xl";
12
15
  [key: string]: any;
13
16
  };
14
17
  export declare const TreePickerControlV2: (props: TreePickerControlProps) => React.JSX.Element;
@@ -9,6 +9,8 @@ export interface TreeNode {
9
9
  isLeaf?: boolean;
10
10
  children?: TreeNode[];
11
11
  delayCategoryColor?: string;
12
+ sortOrder?: number | null;
13
+ parentName?: string;
12
14
  }
13
15
  interface ModalTreeFilterControlProps {
14
16
  onClose: (value?: number, name?: string, node?: TreeNode) => void;
@@ -25,6 +27,9 @@ interface ModalTreeFilterControlProps {
25
27
  setListAssetDrawings?: React.Dispatch<React.SetStateAction<number[]>>;
26
28
  onSuccess?: (value: boolean) => void;
27
29
  isLoading: boolean;
30
+ mostUsedCount: number;
31
+ itemsWithParent: String[];
32
+ dialogMaxWidth: "xs" | "sm" | "md" | "lg" | "xl";
28
33
  }
29
34
  declare const ModalTreeFilterControl: React.FC<ModalTreeFilterControlProps>;
30
35
  export { ModalTreeFilterControl };