@dexteel/mesf-core 4.12.0 → 4.13.5

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,32 @@
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.13.5](https://github.com/dexteel/mesf-core-frontend/compare/v4.12.4...v4.13.5) (2024-05-24)
6
+
7
+ ## [4.13.0](https://github.com/dexteel/mesf-core-frontend/compare/v4.12.4...v4.13.0) (2024-05-24)
8
+
9
+ ### [4.12.4](https://github.com/dexteel/mesf-core-frontend/compare/v4.12.3...v4.12.4) (2024-05-24)
10
+
11
+ ### [4.12.3](https://github.com/dexteel/mesf-core-frontend/compare/v4.12.2...v4.12.3) (2024-05-24)
12
+
13
+ ### [4.12.2](https://github.com/dexteel/mesf-core-frontend/compare/v4.13.0...v4.12.2) (2024-05-24)
14
+
15
+ ### [4.12.1](https://github.com/dexteel/mesf-core-frontend/compare/v4.13.0...v4.12.1) (2024-05-24)
16
+
17
+ ## [4.13.0](https://github.com/dexteel/mesf-core-frontend/compare/v4.12.1...v4.13.0) (2024-05-24)
18
+
19
+
20
+ ### Features
21
+
22
+ * **TimeService:** add moment instance to mesf ([11bff49](https://github.com/dexteel/mesf-core-frontend/commit/11bff49a59ba714fa3d6a7541203df549122d6be))
23
+
24
+ ## [4.12.1](https://github.com/dexteel/mesf-core-frontend/compare/v4.12.0...v4.12.1) (2024-05-20)
25
+
26
+
27
+ ### Bug Fixes
28
+
29
+ * **Assets:** Remove unused comment ([f6b6aea](https://github.com/dexteel/mesf-core-frontend/commit/f6b6aea2c65ae21274be9b5853eda995523c82f0))
30
+
5
31
  ## [4.12.0](https://github.com/dexteel/mesf-core-frontend/compare/v4.11.1...v4.12.0) (2024-05-14)
6
32
 
7
33
 
@@ -9,6 +35,14 @@ All notable changes to this project will be documented in this file. See [standa
9
35
 
10
36
  * **Time Zones:** expose timezone from TimeService ([a3ca37c](https://github.com/dexteel/mesf-core-frontend/commit/a3ca37c12f7cadf5357de9eeba30caa59d6071a4))
11
37
 
38
+
39
+ ### [4.11.2](https://github.com/dexteel/mesf-core-frontend/compare/v4.11.1...v4.11.2) (2024-05-09)
40
+
41
+
42
+ ### Bug Fixes
43
+
44
+ * **Assets Tree:** Fix bug when assets have parent assets with IsActive as false ([b27651e](https://github.com/dexteel/mesf-core-frontend/commit/b27651e6b6777b140fd0b0738408bfcc3fc42f14))
45
+
12
46
  ### [4.11.1](https://github.com/dexteel/mesf-core-frontend/compare/v4.11.0...v4.11.1) (2024-05-05)
13
47
 
14
48
 
@@ -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
  }