@etsoo/materialui 1.3.62 → 1.3.63
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.
|
@@ -4,7 +4,7 @@ import type { SearchPageProps } from "./SearchPageProps";
|
|
|
4
4
|
/**
|
|
5
5
|
* DataGrid page props
|
|
6
6
|
*/
|
|
7
|
-
export type DataGridPageProps<T extends object, F extends DataTypes.BasicTemplate> = SearchPageProps<T, F> &
|
|
7
|
+
export type DataGridPageProps<T extends object, F extends DataTypes.BasicTemplate> = SearchPageProps<T, F> & DataGridExProps<T> & {
|
|
8
8
|
/**
|
|
9
9
|
* Height will be deducted
|
|
10
10
|
* @param height Current calcuated height
|
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@ export type DataGridPageProps<
|
|
|
9
9
|
T extends object,
|
|
10
10
|
F extends DataTypes.BasicTemplate
|
|
11
11
|
> = SearchPageProps<T, F> &
|
|
12
|
-
|
|
12
|
+
DataGridExProps<T> & {
|
|
13
13
|
/**
|
|
14
14
|
* Height will be deducted
|
|
15
15
|
* @param height Current calcuated height
|