@dexteel/mesf-core 6.2.2 → 6.3.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.
- package/.mcp.json +20 -0
- package/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +7 -0
- package/dist/components/navigation/Header.d.ts +2 -1
- package/dist/components/navigation/Navigation.d.ts +2 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.esm.js +4940 -840
- package/dist/index.esm.js.map +1 -1
- package/dist/pages/trendings/components/chart/sections/trending-chart.d.ts +1 -1
- package/dist/pages/trendings/components/chart/styles/TrendingStyles.d.ts +1 -0
- package/dist/pages/trendings-v2/TrendingsPageV2.d.ts +15 -0
- package/dist/pages/trendings-v2/components/chart/components/ColorPickerV2.d.ts +7 -0
- package/dist/pages/trendings-v2/components/chart/components/DraggableLineControlV2.d.ts +26 -0
- package/dist/pages/trendings-v2/components/chart/components/TagFolderCustomNodeV2.d.ts +20 -0
- package/dist/pages/trendings-v2/components/chart/components/TagSearchInput.d.ts +10 -0
- package/dist/pages/trendings-v2/components/chart/components/TagsTreeModalV2.d.ts +9 -0
- package/dist/pages/trendings-v2/components/chart/components/modals/LoadViewModalV2.d.ts +7 -0
- package/dist/pages/trendings-v2/components/chart/components/modals/SaveUpdateDeleteViewModalV2.d.ts +10 -0
- package/dist/pages/trendings-v2/components/chart/context/TrendingContextV2.d.ts +50 -0
- package/dist/pages/trendings-v2/components/chart/hooks/useCursorData.d.ts +6 -0
- package/dist/pages/trendings-v2/components/chart/hooks/useSeriesMinMax.d.ts +12 -0
- package/dist/pages/trendings-v2/components/chart/hooks/useTagSearch.d.ts +30 -0
- package/dist/pages/trendings-v2/components/chart/models/TrendingModelsV2.d.ts +104 -0
- package/dist/pages/trendings-v2/components/chart/repository/TrendingRepositoryV2.d.ts +1 -0
- package/dist/pages/trendings-v2/components/chart/sections/HeaderSectionV2.d.ts +10 -0
- package/dist/pages/trendings-v2/components/chart/sections/TagsTableV2.d.ts +2 -0
- package/dist/pages/trendings-v2/components/chart/sections/TrendingChartV2.d.ts +12 -0
- package/dist/pages/trendings-v2/components/chart/utils/calculateDateFromPeriod.d.ts +21 -0
- package/dist/pages/trendings-v2/components/chart/utils/calculateScales.d.ts +8 -0
- package/dist/pages/trendings-v2/components/chart/utils/coordinateConversion.d.ts +43 -0
- package/dist/pages/trendings-v2/components/chart/utils/formatEChartsData.d.ts +9 -0
- package/dist/pages/trendings-v2/components/chart/utils/tagSeparation.d.ts +13 -0
- package/dist/pages/trendings-v2/index.d.ts +3 -0
- package/package.json +5 -2
package/.mcp.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"mcpServers": {
|
|
3
|
+
"sequential-thinking": {
|
|
4
|
+
"command": "npx",
|
|
5
|
+
"args": ["-y", "@modelcontextprotocol/server-sequential-thinking"]
|
|
6
|
+
},
|
|
7
|
+
"context7": {
|
|
8
|
+
"command": "npx",
|
|
9
|
+
"args": ["-y", "@upstash/context7-mcp@latest"]
|
|
10
|
+
},
|
|
11
|
+
"playwright": {
|
|
12
|
+
"command": "npx",
|
|
13
|
+
"args": ["@playwright/mcp@latest"]
|
|
14
|
+
},
|
|
15
|
+
"memory": {
|
|
16
|
+
"command": "npx",
|
|
17
|
+
"args": ["-y", "@modelcontextprotocol/server-memory"]
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [6.3.0](https://github.com/dexteel/mesf-core-frontend/compare/mesf-core-v6.2.2...mesf-core-v6.3.0) (2025-10-30)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **Trendings v2:** Implement new version of Trendings ([#542](https://github.com/dexteel/mesf-core-frontend/issues/542)) ([786af5f](https://github.com/dexteel/mesf-core-frontend/commit/786af5fcd2256010bfee30c89cca9c2808db4ea0))
|
|
9
|
+
|
|
3
10
|
## [6.2.2](https://github.com/dexteel/mesf-core-frontend/compare/mesf-core-v6.2.1...mesf-core-v6.2.2) (2025-10-28)
|
|
4
11
|
|
|
5
12
|
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
export default function Header({ showAreaSelector, showTrendingsIcon, navbarTitle, }: {
|
|
2
|
+
export default function Header({ showAreaSelector, showTrendingsIcon, showTrendingsV2Icon, navbarTitle, }: {
|
|
3
3
|
showAreaSelector?: boolean;
|
|
4
4
|
showTrendingsIcon?: boolean;
|
|
5
|
+
showTrendingsV2Icon?: boolean;
|
|
5
6
|
navbarTitle?: string;
|
|
6
7
|
}): React.JSX.Element;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
declare const Navigation: ({ showAreaSelector, showTrendingsIcon, navbarTitle, byPassHeaderRoutes, }: {
|
|
2
|
+
declare const Navigation: ({ showAreaSelector, showTrendingsIcon, showTrendingsV2Icon, navbarTitle, byPassHeaderRoutes, }: {
|
|
3
3
|
showAreaSelector?: boolean;
|
|
4
4
|
showTrendingsIcon?: boolean;
|
|
5
|
+
showTrendingsV2Icon?: boolean;
|
|
5
6
|
navbarTitle?: string;
|
|
6
7
|
byPassHeaderRoutes?: string[];
|
|
7
8
|
}) => React.JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -26,6 +26,9 @@ 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";
|
|
29
32
|
export { MESFLogbookReport } from "./pages/logbook/report/index";
|
|
30
33
|
export { routeLogbookReport } from "./pages/logbook/report/LogbookPage";
|
|
31
34
|
export * from "./pages/trendings/TrendingsPage";
|