@myunisoft/design-system 1.2.6-SC-713 → 1.2.6-SC-891
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@myunisoft/design-system",
|
|
3
|
-
"version": "1.2.6-SC-
|
|
3
|
+
"version": "1.2.6-SC-891",
|
|
4
4
|
"description": "Design System of MyUnisoft",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"source": "src/index.ts",
|
|
@@ -35,9 +35,9 @@
|
|
|
35
35
|
"@babel/runtime": "7.20.6",
|
|
36
36
|
"@emotion/react": "11.14.0",
|
|
37
37
|
"@emotion/styled": "11.14.1",
|
|
38
|
-
"@mui/material": "7.
|
|
39
|
-
"@mui/utils": "7.3.
|
|
40
|
-
"@mui/x-data-grid-pro": "7.29.
|
|
38
|
+
"@mui/material": "7.1.2",
|
|
39
|
+
"@mui/utils": "7.3.1",
|
|
40
|
+
"@mui/x-data-grid-pro": "7.29.8",
|
|
41
41
|
"@testing-library/dom": "10.1.0",
|
|
42
42
|
"autosuggest-highlight": "3.3.4",
|
|
43
43
|
"classnames": "2.3.2",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
},
|
|
69
69
|
"resolutions": {
|
|
70
70
|
"cheerio": "<1.0.0",
|
|
71
|
-
"@mui/material": "7.
|
|
71
|
+
"@mui/material": "7.1.2",
|
|
72
72
|
"@babel/core": "7.26.0"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
@@ -80,8 +80,6 @@
|
|
|
80
80
|
"@babel/preset-react": "7.28.5",
|
|
81
81
|
"@babel/preset-typescript": "7.28.5",
|
|
82
82
|
"@biomejs/biome": "2.3.5",
|
|
83
|
-
"@myunisoft/mui-symbols-material-w300-esm": "0.7.0",
|
|
84
|
-
"@myunisoft/mui-symbols-material-w400-esm": "0.7.0",
|
|
85
83
|
"@parcel/transformer-inline-string": "2.8.2",
|
|
86
84
|
"@parcel/transformer-sass": "2.8.2",
|
|
87
85
|
"@parcel/transformer-svg-react": "2.8.2",
|
|
@@ -112,7 +110,7 @@
|
|
|
112
110
|
"webpack": "5.75.0"
|
|
113
111
|
},
|
|
114
112
|
"peerDependencies": {
|
|
115
|
-
"@mui/material": "7.
|
|
113
|
+
"@mui/material": "7.1.2",
|
|
116
114
|
"react": "19.1.1",
|
|
117
115
|
"react-dom": "19.1.1"
|
|
118
116
|
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import type { ReactNode } from 'react';
|
|
2
|
-
import type { GridValidRowModel } from '@mui/x-data-grid-pro';
|
|
3
|
-
export type MenuAction = {
|
|
4
|
-
key: string;
|
|
5
|
-
label: string;
|
|
6
|
-
icon?: ReactNode;
|
|
7
|
-
color?: string;
|
|
8
|
-
disabled?: boolean | ((selectedRows: GridValidRowModel[]) => boolean);
|
|
9
|
-
onClick: (selectedRows: GridValidRowModel[]) => void;
|
|
10
|
-
};
|
|
11
|
-
type ActionsMenuProps = {
|
|
12
|
-
isOpen: boolean;
|
|
13
|
-
anchorEl: HTMLElement | null;
|
|
14
|
-
menuActions: MenuAction[];
|
|
15
|
-
selectedRows: GridValidRowModel[];
|
|
16
|
-
onClose: () => void;
|
|
17
|
-
};
|
|
18
|
-
declare const ActionsMenu: ({ isOpen, anchorEl, menuActions, selectedRows, onClose }: ActionsMenuProps) => import("react/jsx-runtime").JSX.Element;
|
|
19
|
-
export default ActionsMenu;
|