@dexteel/mesf-core 7.0.2 → 7.2.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 (32) hide show
  1. package/.release-please-manifest.json +1 -1
  2. package/CHANGELOG.md +22 -0
  3. package/dist/components/modals/modal.mesf.d.ts +4 -2
  4. package/dist/components/navigation/Header.d.ts +2 -1
  5. package/dist/components/navigation/Navigation.d.ts +2 -1
  6. package/dist/controls/alert.d.ts +1 -1
  7. package/dist/index.esm.js +4614 -600
  8. package/dist/index.esm.js.map +1 -1
  9. package/dist/pages/trendings-v2/TrendingsPageV2.d.ts +15 -0
  10. package/dist/pages/trendings-v2/components/chart/components/ColorPickerV2.d.ts +7 -0
  11. package/dist/pages/trendings-v2/components/chart/components/DraggableLineControlV2.d.ts +26 -0
  12. package/dist/pages/trendings-v2/components/chart/components/TagFolderCustomNodeV2.d.ts +20 -0
  13. package/dist/pages/trendings-v2/components/chart/components/TagSearchInput.d.ts +10 -0
  14. package/dist/pages/trendings-v2/components/chart/components/TagsTreeModalV2.d.ts +9 -0
  15. package/dist/pages/trendings-v2/components/chart/components/modals/LoadViewModalV2.d.ts +7 -0
  16. package/dist/pages/trendings-v2/components/chart/components/modals/SaveUpdateDeleteViewModalV2.d.ts +10 -0
  17. package/dist/pages/trendings-v2/components/chart/context/TrendingContextV2.d.ts +50 -0
  18. package/dist/pages/trendings-v2/components/chart/hooks/useCursorData.d.ts +6 -0
  19. package/dist/pages/trendings-v2/components/chart/hooks/useSeriesMinMax.d.ts +12 -0
  20. package/dist/pages/trendings-v2/components/chart/hooks/useTagSearch.d.ts +30 -0
  21. package/dist/pages/trendings-v2/components/chart/models/TrendingModelsV2.d.ts +104 -0
  22. package/dist/pages/trendings-v2/components/chart/repository/TrendingRepositoryV2.d.ts +1 -0
  23. package/dist/pages/trendings-v2/components/chart/sections/HeaderSectionV2.d.ts +10 -0
  24. package/dist/pages/trendings-v2/components/chart/sections/TagsTableV2.d.ts +2 -0
  25. package/dist/pages/trendings-v2/components/chart/sections/TrendingChartV2.d.ts +12 -0
  26. package/dist/pages/trendings-v2/components/chart/utils/calculateDateFromPeriod.d.ts +21 -0
  27. package/dist/pages/trendings-v2/components/chart/utils/calculateScales.d.ts +8 -0
  28. package/dist/pages/trendings-v2/components/chart/utils/coordinateConversion.d.ts +43 -0
  29. package/dist/pages/trendings-v2/components/chart/utils/formatEChartsData.d.ts +9 -0
  30. package/dist/pages/trendings-v2/components/chart/utils/tagSeparation.d.ts +13 -0
  31. package/dist/pages/trendings-v2/index.d.ts +3 -0
  32. package/package.json +3 -1
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "7.0.2"
2
+ ".": "7.2.0"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # Changelog
2
2
 
3
+ ## [7.2.0](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v7.1.0...@dexteel/mesf-core-v7.2.0) (2025-11-05)
4
+
5
+
6
+ ### Features
7
+
8
+ * **MESFModal:** Add subtitle prop to Modal for enhanced title display ([e64b4f2](https://github.com/dexteel/mesf-core-frontend/commit/e64b4f2a7833cc470e7e9cd5d2bc7c21bdd92905))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **Alert:** Import Alert for `mui/material` and use forwardRef for improved ref handling ([34868c8](https://github.com/dexteel/mesf-core-frontend/commit/34868c8e0b95d601aaabd60d35434695c64b2401))
14
+ * **Context Menu:** Change width of context menu to auto for better responsiveness ([287b20a](https://github.com/dexteel/mesf-core-frontend/commit/287b20ab377a03bbfd5668edbb9f3d97baff153a))
15
+ * **Trending:** Replace TextFields for DateTimePickers, Fix style of TagTree & Fix save of views ([0bfb906](https://github.com/dexteel/mesf-core-frontend/commit/0bfb9064ebcce0ee0336afc594743d344d78b09d))
16
+
17
+ ## [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)
18
+
19
+
20
+ ### Features
21
+
22
+ * **MESF Context Menu:** Add functionality to close context menu with 'Esc' ([8a2a82a](https://github.com/dexteel/mesf-core-frontend/commit/8a2a82a332cf87b9e2832785e0dd92bad2af90a8))
23
+ * **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))
24
+
3
25
  ## [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)
4
26
 
5
27
 
@@ -1,14 +1,16 @@
1
1
  import { DialogActionsProps, DialogContentProps } from "@mui/material";
2
+ import { DialogProps } from "@mui/material/Dialog";
2
3
  import React, { ComponentType, ReactNode } from "react";
3
- interface MESFModalProps {
4
+ interface MESFModalProps extends Omit<DialogProps, "onClose" | "open"> {
4
5
  handleClose: (shouldUpdate?: boolean) => void;
5
6
  open: boolean;
6
7
  id?: string;
7
8
  maxWidth?: "xs" | "sm" | "md" | "lg" | "xl" | false;
8
9
  children: ReactNode;
9
10
  title?: string;
11
+ subtitle?: string;
10
12
  }
11
- declare function Modal({ children, title, handleClose, open, id, maxWidth, }: MESFModalProps): React.JSX.Element;
13
+ declare function Modal({ children, title, subtitle, handleClose, open, id, maxWidth, }: MESFModalProps): React.JSX.Element;
12
14
  export declare const MesfModal: typeof Modal & {
13
15
  Content: ComponentType<DialogContentProps>;
14
16
  Actions: ComponentType<DialogActionsProps>;
@@ -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;
@@ -1,3 +1,3 @@
1
1
  import { type AlertProps } from "@mui/lab/Alert";
2
2
  import React from "react";
3
- export declare const Alert: (props: AlertProps) => React.JSX.Element;
3
+ export declare const Alert: React.ForwardRefExoticComponent<Omit<AlertProps, "ref"> & React.RefAttributes<HTMLDivElement>>;