@dexteel/mesf-core 7.1.0 → 7.2.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/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +21 -0
- package/dist/components/modals/modal.mesf.d.ts +4 -2
- package/dist/controls/alert.d.ts +1 -1
- package/dist/index.esm.js +177 -217
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [7.2.1](https://github.com/dexteel/mesf-core-frontend/compare/@dexteel/mesf-core-v7.2.0...@dexteel/mesf-core-v7.2.1) (2025-11-19)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **Trending V1:** adjust layout after mui v6 migration ([#553](https://github.com/dexteel/mesf-core-frontend/issues/553)) ([7496c71](https://github.com/dexteel/mesf-core-frontend/commit/7496c716aca2585cffc7e72ed26043cdde363b9d))
|
|
9
|
+
|
|
10
|
+
## [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)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* **MESFModal:** Add subtitle prop to Modal for enhanced title display ([e64b4f2](https://github.com/dexteel/mesf-core-frontend/commit/e64b4f2a7833cc470e7e9cd5d2bc7c21bdd92905))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* **Alert:** Import Alert for `mui/material` and use forwardRef for improved ref handling ([34868c8](https://github.com/dexteel/mesf-core-frontend/commit/34868c8e0b95d601aaabd60d35434695c64b2401))
|
|
21
|
+
* **Context Menu:** Change width of context menu to auto for better responsiveness ([287b20a](https://github.com/dexteel/mesf-core-frontend/commit/287b20ab377a03bbfd5668edbb9f3d97baff153a))
|
|
22
|
+
* **Trending:** Replace TextFields for DateTimePickers, Fix style of TagTree & Fix save of views ([0bfb906](https://github.com/dexteel/mesf-core-frontend/commit/0bfb9064ebcce0ee0336afc594743d344d78b09d))
|
|
23
|
+
|
|
3
24
|
## [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
25
|
|
|
5
26
|
|
|
@@ -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>;
|
package/dist/controls/alert.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { type AlertProps } from "@mui/lab/Alert";
|
|
2
2
|
import React from "react";
|
|
3
|
-
export declare const Alert:
|
|
3
|
+
export declare const Alert: React.ForwardRefExoticComponent<Omit<AlertProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|