@dexteel/mesf-core 7.0.1 → 7.1.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.
Files changed (30) hide show
  1. package/.release-please-manifest.json +1 -1
  2. package/CHANGELOG.md +16 -0
  3. package/dist/components/navigation/Header.d.ts +2 -1
  4. package/dist/components/navigation/Navigation.d.ts +2 -1
  5. package/dist/index.esm.js +4596 -590
  6. package/dist/index.esm.js.map +1 -1
  7. package/dist/pages/trendings-v2/TrendingsPageV2.d.ts +15 -0
  8. package/dist/pages/trendings-v2/components/chart/components/ColorPickerV2.d.ts +7 -0
  9. package/dist/pages/trendings-v2/components/chart/components/DraggableLineControlV2.d.ts +26 -0
  10. package/dist/pages/trendings-v2/components/chart/components/TagFolderCustomNodeV2.d.ts +20 -0
  11. package/dist/pages/trendings-v2/components/chart/components/TagSearchInput.d.ts +10 -0
  12. package/dist/pages/trendings-v2/components/chart/components/TagsTreeModalV2.d.ts +9 -0
  13. package/dist/pages/trendings-v2/components/chart/components/modals/LoadViewModalV2.d.ts +7 -0
  14. package/dist/pages/trendings-v2/components/chart/components/modals/SaveUpdateDeleteViewModalV2.d.ts +10 -0
  15. package/dist/pages/trendings-v2/components/chart/context/TrendingContextV2.d.ts +50 -0
  16. package/dist/pages/trendings-v2/components/chart/hooks/useCursorData.d.ts +6 -0
  17. package/dist/pages/trendings-v2/components/chart/hooks/useSeriesMinMax.d.ts +12 -0
  18. package/dist/pages/trendings-v2/components/chart/hooks/useTagSearch.d.ts +30 -0
  19. package/dist/pages/trendings-v2/components/chart/models/TrendingModelsV2.d.ts +104 -0
  20. package/dist/pages/trendings-v2/components/chart/repository/TrendingRepositoryV2.d.ts +1 -0
  21. package/dist/pages/trendings-v2/components/chart/sections/HeaderSectionV2.d.ts +10 -0
  22. package/dist/pages/trendings-v2/components/chart/sections/TagsTableV2.d.ts +2 -0
  23. package/dist/pages/trendings-v2/components/chart/sections/TrendingChartV2.d.ts +12 -0
  24. package/dist/pages/trendings-v2/components/chart/utils/calculateDateFromPeriod.d.ts +21 -0
  25. package/dist/pages/trendings-v2/components/chart/utils/calculateScales.d.ts +8 -0
  26. package/dist/pages/trendings-v2/components/chart/utils/coordinateConversion.d.ts +43 -0
  27. package/dist/pages/trendings-v2/components/chart/utils/formatEChartsData.d.ts +9 -0
  28. package/dist/pages/trendings-v2/components/chart/utils/tagSeparation.d.ts +13 -0
  29. package/dist/pages/trendings-v2/index.d.ts +3 -0
  30. package/package.json +3 -1
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "7.0.1"
2
+ ".": "7.1.0"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## [7.1.0](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v7.0.2...@dexteel/mesf-core-v7.1.0) (2025-10-31)
4
+
5
+
6
+ ### Features
7
+
8
+ * **MESF Context Menu:** Add functionality to close context menu with 'Esc' ([8a2a82a](https://github.com/dexteel/mesf-core-frontend/commit/8a2a82a332cf87b9e2832785e0dd92bad2af90a8))
9
+ * **Trendings v2:** Add Trendings Feature ([#545](https://github.com/dexteel/mesf-core-frontend/issues/545)) ([145721c](https://github.com/dexteel/mesf-core-frontend/commit/145721cb65fe9b474c365b9329a2f5d9dd1651cb))
10
+
11
+ ## [7.0.2](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v7.0.1...@dexteel/mesf-core-v7.0.2) (2025-10-28)
12
+
13
+
14
+ ### Bug Fixes
15
+
16
+ * **Dialog Filter:** Add overflow 'auto' | Refactor the handleToggle function ([fa8a7bb](https://github.com/dexteel/mesf-core-frontend/commit/fa8a7bb87fb170427d27c5e0dad06457fb1fe18e))
17
+ * **Dialog Filter:** Add overflow 'auto' | Refactor the handleToggle function ([52af423](https://github.com/dexteel/mesf-core-frontend/commit/52af423acc1b4a590fb8fddd4c3556a89e611e96))
18
+
3
19
  ## [7.0.1](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v7.0.0...@dexteel/mesf-core-v7.0.1) (2025-10-23)
4
20
 
5
21
 
@@ -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;