@movable/ui 3.0.0 → 3.1.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/lib/components/InkDataGrid/CreateEmptyColumns.d.ts +9 -0
- package/lib/components/InkDataGrid/InkDataGrid.d.ts +12 -0
- package/lib/components/InkDataGrid/InkDataGridEmpty.d.ts +16 -0
- package/lib/components/InkDataGrid/index.d.ts +3 -0
- package/lib/components/index.d.ts +1 -0
- package/lib/index.d.ts +46 -5
- package/lib/index.mjs +1950 -1919
- package/lib/index.mjs.map +1 -1
- package/lib/theme/components/DataGrid.d.ts +7 -0
- package/lib/theme.d.ts +2 -1
- package/package.json +1 -1
|
@@ -4,6 +4,7 @@ declare const datagrid: {
|
|
|
4
4
|
styleOverrides: {
|
|
5
5
|
root: {
|
|
6
6
|
border: string;
|
|
7
|
+
height: string;
|
|
7
8
|
'.MuiDataGrid-toolbarContainer .MuiTextField-root': {
|
|
8
9
|
backgroundColor: "#f5f5f5";
|
|
9
10
|
padding: string;
|
|
@@ -27,6 +28,12 @@ declare const datagrid: {
|
|
|
27
28
|
'.MuiDataGrid-overlayWrapper': {
|
|
28
29
|
height: string;
|
|
29
30
|
};
|
|
31
|
+
'.MuiDataGrid-columnSeparator': {
|
|
32
|
+
display: string;
|
|
33
|
+
};
|
|
34
|
+
'.MuiDataGrid-row:hover': {
|
|
35
|
+
backgroundColor: string;
|
|
36
|
+
};
|
|
30
37
|
};
|
|
31
38
|
menu: {
|
|
32
39
|
'.MuiPaper-root': {
|
package/lib/theme.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Theme } from '@mui/material/styles';
|
|
1
2
|
import { InkSnackbarAlertProps } from './components/InkSnackbar/InkSnackbarAlert';
|
|
2
3
|
import { AlertProps } from '@mui/material/Alert';
|
|
3
4
|
import { OptionsObject } from 'notistack';
|
|
@@ -254,5 +255,5 @@ declare module 'notistack' {
|
|
|
254
255
|
(message: string, options?: InkSnackbarOptions): void;
|
|
255
256
|
}
|
|
256
257
|
}
|
|
257
|
-
declare const theme:
|
|
258
|
+
declare const theme: Theme;
|
|
258
259
|
export default theme;
|