@dexteel/mesf-core 6.1.1 → 7.0.1

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 (29) hide show
  1. package/.github/workflows/publish-to-npm.yaml +1 -0
  2. package/.github/workflows/release-please-v7.yml +18 -0
  3. package/.release-please-manifest.json +1 -1
  4. package/CHANGELOG.md +20 -0
  5. package/dist/MESFMain.d.ts +2 -2
  6. package/dist/components/modals/modal.mesf.d.ts +4 -11
  7. package/dist/components/navigation/TimeAndUserMenu.d.ts +1 -5
  8. package/dist/components/shared/buttons/button-with-loading.d.ts +1 -1
  9. package/dist/controls/alert.d.ts +1 -1
  10. package/dist/controls/contextMenu/index.d.ts +0 -1
  11. package/dist/controls/error-label.d.ts +4 -0
  12. package/dist/controls/filters/dialogFilter.d.ts +1 -1
  13. package/dist/controls/index.d.ts +0 -1
  14. package/dist/controls/panels.d.ts +1 -1
  15. package/dist/css/themeMESF.d.ts +1 -1
  16. package/dist/globalContext.d.ts +3 -3
  17. package/dist/index.esm.js +2764 -3367
  18. package/dist/index.esm.js.map +1 -1
  19. package/package.json +21 -30
  20. package/dist/configuration/pages/log/styles/tableStyles.d.ts +0 -1
  21. package/dist/configuration/pages/settings/styles/useStyles.d.ts +0 -1
  22. package/dist/controls/charts/genericChart.d.ts +0 -10
  23. package/dist/controls/contextMenu/styles/ContextMenuStyles.d.ts +0 -1
  24. package/dist/pages/logbook/entry/components/entry-viewer/styles/useEntryViewerStyles.d.ts +0 -1
  25. package/dist/pages/logbook/report/components/entry-viewer/styles/useEntryViewerStyles.d.ts +0 -1
  26. package/dist/pages/trendings/components/chart/styles/TagColorsStyles.d.ts +0 -1
  27. package/dist/pages/trendings/components/chart/styles/TagsTableStyles.d.ts +0 -1
  28. package/dist/pages/trendings/components/chart/styles/TasgTreeModalStyles.d.ts +0 -1
  29. package/dist/pages/trendings/components/chart/styles/TrendingStyles.d.ts +0 -1
@@ -6,6 +6,7 @@ on:
6
6
  - master
7
7
  - next
8
8
  - next-ng
9
+ - v7
9
10
  jobs:
10
11
  publish:
11
12
  if: github.event.pull_request.merged == true && startsWith(github.event.pull_request.head.ref, 'release-please')
@@ -0,0 +1,18 @@
1
+ name: Release Please (v7)
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - v7
7
+
8
+ jobs:
9
+ release-please:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: googleapis/release-please-action@v4
13
+ id: release
14
+ with:
15
+ command: manifest
16
+ token: ${{ secrets.GITHUB_TOKEN }}
17
+ target-branch: 'v7'
18
+ default-branch: 'v7'
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "6.1.1"
2
+ ".": "7.0.1"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # Changelog
2
2
 
3
+ ## [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
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * fire publishing ([494a537](https://github.com/dexteel/mesf-core-frontend/commit/494a53789b12947ee9af951c441d8a1bd52c9620))
9
+
10
+ ## [7.0.0](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v6.1.1...@dexteel/mesf-core-v7.0.0) (2025-10-23)
11
+
12
+
13
+ ### Features
14
+
15
+ * **mesf-core-frontend:** Install MUI v5, remove old imports, fix breaking changes and others. ([a66d52a](https://github.com/dexteel/mesf-core-frontend/commit/a66d52ab94a10baebfd003d46029bf47f7bc7cc5))
16
+ * **SWV Mill:** Update to react v18 and fix all pages. ([1aaf601](https://github.com/dexteel/mesf-core-frontend/commit/1aaf60189e158b743ea4b64f53654129b183c0b1))
17
+
18
+
19
+ ### Miscellaneous Chores
20
+
21
+ * release version 7.0.0 ([fddc9e9](https://github.com/dexteel/mesf-core-frontend/commit/fddc9e9650bd10846e2e77a1988fae625cc5ecc4))
22
+
3
23
  ## [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
24
 
5
25
 
@@ -3,8 +3,8 @@ import { ConfigurationsType } from "./configurationMenu";
3
3
  import type { LogbookSettingsState } from "./reducers/LogbookSettingsReducer";
4
4
  interface Props {
5
5
  authentication: any;
6
- routes: ReactNode;
7
- navbar: ReactNode;
6
+ routes: () => ReactNode;
7
+ navbar: () => ReactNode;
8
8
  navbarTitle?: string;
9
9
  configurations: ConfigurationsType;
10
10
  showAreaSelector?: boolean;
@@ -1,12 +1,5 @@
1
- import { DialogActions as MuiDialogActions, DialogContent as MuiDialogContent, StyleRules, type Theme } from "@material-ui/core";
2
- import { type WithStyles } from "@material-ui/core/styles";
3
- import React, { ReactNode } from "react";
4
- declare const styles: (theme: Theme) => StyleRules;
5
- export interface DialogTitleProps extends WithStyles<typeof styles> {
6
- id: string;
7
- children: React.ReactNode;
8
- onClose: () => void;
9
- }
1
+ import { DialogActionsProps, DialogContentProps } from "@mui/material";
2
+ import React, { ComponentType, ReactNode } from "react";
10
3
  interface MESFModalProps {
11
4
  handleClose: (shouldUpdate?: boolean) => void;
12
5
  open: boolean;
@@ -17,7 +10,7 @@ interface MESFModalProps {
17
10
  }
18
11
  declare function Modal({ children, title, handleClose, open, id, maxWidth, }: MESFModalProps): React.JSX.Element;
19
12
  export declare const MesfModal: typeof Modal & {
20
- Content: typeof MuiDialogContent;
21
- Actions: typeof MuiDialogActions;
13
+ Content: ComponentType<DialogContentProps>;
14
+ Actions: ComponentType<DialogActionsProps>;
22
15
  };
23
16
  export default MesfModal;
@@ -1,6 +1,2 @@
1
1
  import React from "react";
2
- interface TimeAndUserMenuProps {
3
- className?: string;
4
- }
5
- export declare const TimeAndUserMenu: React.FC<TimeAndUserMenuProps>;
6
- export {};
2
+ export declare const TimeAndUserMenu: () => React.JSX.Element;
@@ -1,4 +1,4 @@
1
- import { ButtonProps } from "@material-ui/core";
1
+ import { ButtonProps } from "@mui/material";
2
2
  import React, { ReactNode } from "react";
3
3
  interface Props extends ButtonProps {
4
4
  children?: ReactNode;
@@ -1,3 +1,3 @@
1
- import { type AlertProps } from "@material-ui/lab/Alert";
1
+ import { type AlertProps } from "@mui/lab/Alert";
2
2
  import React from "react";
3
3
  export declare const Alert: (props: AlertProps) => React.JSX.Element;
@@ -1,4 +1,3 @@
1
1
  export * from "./ContextMenu";
2
2
  export * from "./useContextMenuMESF";
3
- export * from "./styles/ContextMenuStyles";
4
3
  export * from "./models/MenuOptionType";
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ export declare const ErrorLabel: ({ text }: {
3
+ text: string;
4
+ }) => React.JSX.Element;
@@ -28,7 +28,7 @@ interface ModalTreeFilterControlProps {
28
28
  onSuccess?: (value: boolean) => void;
29
29
  isLoading: boolean;
30
30
  mostUsedCount: number;
31
- itemsWithParent: String[];
31
+ sWithParent: String[];
32
32
  dialogMaxWidth: "xs" | "sm" | "md" | "lg" | "xl";
33
33
  allowSearch?: boolean;
34
34
  }
@@ -1,4 +1,3 @@
1
- export * from "./charts/genericChart";
2
1
  export * from "./filters/filters";
3
2
  export * from "./filters/dialogFilter";
4
3
  export * from "./tables/GenericTable";
@@ -38,4 +38,4 @@ type FilterPanelProps = {
38
38
  };
39
39
  declare const FilterPanel: (props: FilterPanelProps) => React.JSX.Element;
40
40
  declare const LongFilterPanel: (props: FilterPanelProps) => React.JSX.Element;
41
- export { GenericPanel, FilterPanel, MasterDetailPanel, LongFilterPanel };
41
+ export { FilterPanel, GenericPanel, LongFilterPanel, MasterDetailPanel };
@@ -1,2 +1,2 @@
1
- export declare const themeMESF: import("@material-ui/core").Theme;
1
+ export declare const themeMESF: import("@mui/material").Theme;
2
2
  export declare const themeDXT: import("ag-grid-community").Theme<import("ag-grid-community").CoreParams & import("ag-grid-community").ButtonStyleParams & import("ag-grid-community").CheckboxStyleParams & import("ag-grid-community").TabStyleParams & import("ag-grid-community").InputStyleParams & import("ag-grid-community").StyleMaterialParams & {}>;
@@ -1,6 +1,6 @@
1
- import React from "react";
1
+ import React, { type ReactNode } from "react";
2
2
  import { ConfigurationsType } from "./configurationMenu";
3
- declare const RouterContext: React.Context<React.ReactNode>;
3
+ declare const RouterContext: React.Context<() => ReactNode>;
4
4
  declare const ConfigurationContext: React.Context<ConfigurationsType>;
5
- declare const NavbarContext: React.Context<React.ReactNode>;
5
+ declare const NavbarContext: React.Context<() => ReactNode>;
6
6
  export { RouterContext, ConfigurationContext, NavbarContext };