@dexteel/mesf-core 6.1.1 → 6.1.4
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.
- package/.github/workflows/publish-to-npm.yaml +1 -1
- package/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +21 -0
- package/dist/index.d.ts +1 -3
- package/dist/index.esm.js +723 -980
- package/dist/index.esm.js.map +1 -1
- package/dist/pages/logbook/entry/models/index.d.ts +2 -0
- package/dist/pages/trendings/TrendingsPage.d.ts +3 -16
- package/dist/pages/trendings/components/chart/TableComponent.d.ts +12 -0
- package/dist/pages/trendings/components/chart/Trending.d.ts +1 -2
- package/dist/pages/trendings/components/chart/components/modals/loadView/LoadViewModal.d.ts +2 -1
- package/dist/pages/trendings/components/chart/customOptionsComponent.d.ts +0 -2
- package/dist/pages/trendings/components/chart/repository/TrendingRepository.d.ts +11 -41
- package/dist/pages/trendings/components/chart/sections/header.d.ts +1 -3
- package/dist/pages/trendings/components/chart/sections/trending-chart.d.ts +1 -1
- package/package.json +1 -1
- package/release-please-config.json +2 -10
- package/.github/workflows/release-please-v4.yml +0 -61
- package/.github/workflows/release-please-v5.yml +0 -63
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [6.1.4](https://github.com/dexteel/mesf-core-frontend/compare/mesf-core-v6.1.3...mesf-core-v6.1.4) (2025-10-24)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **devops:** run publish to npm from self-hosted ([d92bd45](https://github.com/dexteel/mesf-core-frontend/commit/d92bd45a196c37f8f62e8566e12f5a6a29b631b4))
|
|
9
|
+
|
|
10
|
+
## [6.1.3](https://github.com/dexteel/mesf-core-frontend/compare/mesf-core-v6.1.2...mesf-core-v6.1.3) (2025-10-24)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **Typings:** add exports of Logbook Entry typings ([0e98156](https://github.com/dexteel/mesf-core-frontend/commit/0e98156beeb001a5afe264930b6eb9816f46551f))
|
|
16
|
+
|
|
17
|
+
## [6.1.2](https://github.com/dexteel/mesf-core-frontend/compare/mesf-core-v6.1.1...mesf-core-v6.1.2) (2025-10-21)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* **Trendings:** revert changes. Wait for v2 ([3ffc4b1](https://github.com/dexteel/mesf-core-frontend/commit/3ffc4b190e5e1e84ae9f6de02897051c3f924667))
|
|
23
|
+
|
|
3
24
|
## [6.1.1](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v6.1.0...@dexteel/mesf-core-v6.1.1) (2025-10-15)
|
|
4
25
|
|
|
5
26
|
|
package/dist/index.d.ts
CHANGED
|
@@ -26,12 +26,10 @@ export * from "./MESFMain";
|
|
|
26
26
|
export { logbookNavbar, logbookRoutesMESF } from "./pages/logbook";
|
|
27
27
|
export { MESFLogbookEntry } from "./pages/logbook/entry/index";
|
|
28
28
|
export { routeLogbookEntry } from "./pages/logbook/entry/LogbookPage";
|
|
29
|
-
export type { Entry } from "./pages/logbook/entry/models/Entry";
|
|
30
|
-
export { ENTRY_INITIAL_VALUES } from "./pages/logbook/entry/models/Entry";
|
|
31
|
-
export { getEntries } from "./pages/logbook/entry/repository/LogbookRepository";
|
|
32
29
|
export { MESFLogbookReport } from "./pages/logbook/report/index";
|
|
33
30
|
export { routeLogbookReport } from "./pages/logbook/report/LogbookPage";
|
|
34
31
|
export * from "./pages/trendings/TrendingsPage";
|
|
35
32
|
export * from "./reducers/LogbookSettingsReducer";
|
|
36
33
|
export * from "./services";
|
|
37
34
|
export * from "./utils";
|
|
35
|
+
export * from "./pages/logbook/entry/models";
|