@dexteel/mesf-core 4.12.0 → 4.14.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.
@@ -0,0 +1,24 @@
1
+ on:
2
+ push:
3
+ branches:
4
+ - master
5
+
6
+ permissions:
7
+ contents: write
8
+ pull-requests: write
9
+
10
+ name: release-please
11
+
12
+ jobs:
13
+ release-please:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: googleapis/release-please-action@v4
17
+ with:
18
+ # this assumes that you have created a personal access token
19
+ # (PAT) and configured it as a GitHub action secret named
20
+ # `MY_RELEASE_PLEASE_TOKEN` (this secret name is not important).
21
+ token: ${{ secrets.MY_RELEASE_PLEASE_TOKEN }}
22
+ # this is a built-in strategy in release-please, see "Action Inputs"
23
+ # for more options
24
+ release-type: simple
package/CHANGELOG.md CHANGED
@@ -2,6 +2,39 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [4.14.0](https://github.com/dexteel/mesf-core-frontend/compare/v4.13.5...v4.14.0) (2024-07-02)
6
+
7
+
8
+ ### Features
9
+
10
+ * **TreePickerControl:** Add ability to display asset/drawings relationship and enable the selection of multiple nodes ([1cec643](https://github.com/dexteel/mesf-core-frontend/commit/1cec643d17959cd776691c927738dbe2d8023b83))
11
+
12
+ ### [4.13.5](https://github.com/dexteel/mesf-core-frontend/compare/v4.12.4...v4.13.5) (2024-05-24)
13
+
14
+ ## [4.13.0](https://github.com/dexteel/mesf-core-frontend/compare/v4.12.4...v4.13.0) (2024-05-24)
15
+
16
+ ### [4.12.4](https://github.com/dexteel/mesf-core-frontend/compare/v4.12.3...v4.12.4) (2024-05-24)
17
+
18
+ ### [4.12.3](https://github.com/dexteel/mesf-core-frontend/compare/v4.12.2...v4.12.3) (2024-05-24)
19
+
20
+ ### [4.12.2](https://github.com/dexteel/mesf-core-frontend/compare/v4.13.0...v4.12.2) (2024-05-24)
21
+
22
+ ### [4.12.1](https://github.com/dexteel/mesf-core-frontend/compare/v4.13.0...v4.12.1) (2024-05-24)
23
+
24
+ ## [4.13.0](https://github.com/dexteel/mesf-core-frontend/compare/v4.12.1...v4.13.0) (2024-05-24)
25
+
26
+
27
+ ### Features
28
+
29
+ * **TimeService:** add moment instance to mesf ([11bff49](https://github.com/dexteel/mesf-core-frontend/commit/11bff49a59ba714fa3d6a7541203df549122d6be))
30
+
31
+ ## [4.12.1](https://github.com/dexteel/mesf-core-frontend/compare/v4.12.0...v4.12.1) (2024-05-20)
32
+
33
+
34
+ ### Bug Fixes
35
+
36
+ * **Assets:** Remove unused comment ([f6b6aea](https://github.com/dexteel/mesf-core-frontend/commit/f6b6aea2c65ae21274be9b5853eda995523c82f0))
37
+
5
38
  ## [4.12.0](https://github.com/dexteel/mesf-core-frontend/compare/v4.11.1...v4.12.0) (2024-05-14)
6
39
 
7
40
 
@@ -9,6 +42,14 @@ All notable changes to this project will be documented in this file. See [standa
9
42
 
10
43
  * **Time Zones:** expose timezone from TimeService ([a3ca37c](https://github.com/dexteel/mesf-core-frontend/commit/a3ca37c12f7cadf5357de9eeba30caa59d6071a4))
11
44
 
45
+
46
+ ### [4.11.2](https://github.com/dexteel/mesf-core-frontend/compare/v4.11.1...v4.11.2) (2024-05-09)
47
+
48
+
49
+ ### Bug Fixes
50
+
51
+ * **Assets Tree:** Fix bug when assets have parent assets with IsActive as false ([b27651e](https://github.com/dexteel/mesf-core-frontend/commit/b27651e6b6777b140fd0b0738408bfcc3fc42f14))
52
+
12
53
  ### [4.11.1](https://github.com/dexteel/mesf-core-frontend/compare/v4.11.0...v4.11.1) (2024-05-05)
13
54
 
14
55
 
@@ -4,4 +4,5 @@ export interface AssetCode {
4
4
  name: string;
5
5
  isLeaf: boolean | null;
6
6
  isActive: boolean | null;
7
+ children: AssetCode[];
7
8
  }
@@ -1,12 +1,3 @@
1
- import PropTypes from "prop-types";
2
1
  import React from "react";
3
- declare const ModalTreeFilterControl: {
4
- (props: any): React.JSX.Element;
5
- propTypes: {
6
- onClose: PropTypes.Validator<(...args: any[]) => any>;
7
- open: PropTypes.Validator<boolean>;
8
- title: PropTypes.Validator<string>;
9
- data: PropTypes.Validator<object>;
10
- };
11
- };
2
+ declare const ModalTreeFilterControl: (props: any) => React.JSX.Element;
12
3
  export { ModalTreeFilterControl };
@@ -1,6 +1,9 @@
1
1
  import React, { Component } from "react";
2
2
  type TreePickerControlProps = {
3
- onSelect: (value: string, description: string, findNode: any, showPath?: boolean) => void;
3
+ onSelect: (value: string, description: string, findNode: any, showPath?: boolean, listAssetDrawings?: number[], multipleSelectNodes?: boolean, onHide?: (showAssetTree?: boolean) => void, showAssetTree?: boolean) => void;
4
+ isLoading?: boolean;
5
+ setListAssetDrawings?: Function;
6
+ onSuccess?: (success: boolean) => void;
4
7
  [key: string]: any;
5
8
  };
6
9
  export declare const TreePickerControl: (props: TreePickerControlProps) => React.JSX.Element;