@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.
- package/.github/workflows/publish-to-npm.yaml +1 -0
- package/.github/workflows/release-please-v7.yml +18 -0
- package/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +20 -0
- package/dist/MESFMain.d.ts +2 -2
- package/dist/components/modals/modal.mesf.d.ts +4 -11
- package/dist/components/navigation/TimeAndUserMenu.d.ts +1 -5
- package/dist/components/shared/buttons/button-with-loading.d.ts +1 -1
- package/dist/controls/alert.d.ts +1 -1
- package/dist/controls/contextMenu/index.d.ts +0 -1
- package/dist/controls/error-label.d.ts +4 -0
- package/dist/controls/filters/dialogFilter.d.ts +1 -1
- package/dist/controls/index.d.ts +0 -1
- package/dist/controls/panels.d.ts +1 -1
- package/dist/css/themeMESF.d.ts +1 -1
- package/dist/globalContext.d.ts +3 -3
- package/dist/index.esm.js +2764 -3367
- package/dist/index.esm.js.map +1 -1
- package/package.json +21 -30
- package/dist/configuration/pages/log/styles/tableStyles.d.ts +0 -1
- package/dist/configuration/pages/settings/styles/useStyles.d.ts +0 -1
- package/dist/controls/charts/genericChart.d.ts +0 -10
- package/dist/controls/contextMenu/styles/ContextMenuStyles.d.ts +0 -1
- package/dist/pages/logbook/entry/components/entry-viewer/styles/useEntryViewerStyles.d.ts +0 -1
- package/dist/pages/logbook/report/components/entry-viewer/styles/useEntryViewerStyles.d.ts +0 -1
- package/dist/pages/trendings/components/chart/styles/TagColorsStyles.d.ts +0 -1
- package/dist/pages/trendings/components/chart/styles/TagsTableStyles.d.ts +0 -1
- package/dist/pages/trendings/components/chart/styles/TasgTreeModalStyles.d.ts +0 -1
- package/dist/pages/trendings/components/chart/styles/TrendingStyles.d.ts +0 -1
|
@@ -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'
|
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
|
|
package/dist/MESFMain.d.ts
CHANGED
|
@@ -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 {
|
|
2
|
-
import {
|
|
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:
|
|
21
|
-
Actions:
|
|
13
|
+
Content: ComponentType<DialogContentProps>;
|
|
14
|
+
Actions: ComponentType<DialogActionsProps>;
|
|
22
15
|
};
|
|
23
16
|
export default MesfModal;
|
package/dist/controls/alert.d.ts
CHANGED
|
@@ -28,7 +28,7 @@ interface ModalTreeFilterControlProps {
|
|
|
28
28
|
onSuccess?: (value: boolean) => void;
|
|
29
29
|
isLoading: boolean;
|
|
30
30
|
mostUsedCount: number;
|
|
31
|
-
|
|
31
|
+
sWithParent: String[];
|
|
32
32
|
dialogMaxWidth: "xs" | "sm" | "md" | "lg" | "xl";
|
|
33
33
|
allowSearch?: boolean;
|
|
34
34
|
}
|
package/dist/controls/index.d.ts
CHANGED
|
@@ -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,
|
|
41
|
+
export { FilterPanel, GenericPanel, LongFilterPanel, MasterDetailPanel };
|
package/dist/css/themeMESF.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const themeMESF: import("@material
|
|
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 & {}>;
|
package/dist/globalContext.d.ts
CHANGED
|
@@ -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<
|
|
3
|
+
declare const RouterContext: React.Context<() => ReactNode>;
|
|
4
4
|
declare const ConfigurationContext: React.Context<ConfigurationsType>;
|
|
5
|
-
declare const NavbarContext: React.Context<
|
|
5
|
+
declare const NavbarContext: React.Context<() => ReactNode>;
|
|
6
6
|
export { RouterContext, ConfigurationContext, NavbarContext };
|