@woovi/ui 6.9.1 → 6.9.3
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/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/src/datagrid/DataGrid.d.ts +6 -0
- package/package.json +1 -1
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
import type { DataGridProProps as MUIDataGridProProps } from "@mui/x-data-grid-pro";
|
|
2
2
|
import type { ReactNode } from "react";
|
|
3
|
+
export declare const GridDensityTypes: {
|
|
4
|
+
readonly Compact: "compact";
|
|
5
|
+
readonly Standard: "standard";
|
|
6
|
+
readonly Comfortable: "comfortable";
|
|
7
|
+
};
|
|
8
|
+
export type GridDensityTypes = (typeof GridDensityTypes)[keyof typeof GridDensityTypes];
|
|
3
9
|
export type DataGridProps = MUIDataGridProProps & {
|
|
4
10
|
rowHref?: (row: any) => string;
|
|
5
11
|
maxLines?: number;
|