@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> & Omit<DataGridExProps<T>, "loadData" | "height"> & {
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/materialui",
3
- "version": "1.3.62",
3
+ "version": "1.3.63",
4
4
  "description": "TypeScript Material-UI Implementation",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -9,7 +9,7 @@ export type DataGridPageProps<
9
9
  T extends object,
10
10
  F extends DataTypes.BasicTemplate
11
11
  > = SearchPageProps<T, F> &
12
- Omit<DataGridExProps<T>, "loadData" | "height"> & {
12
+ DataGridExProps<T> & {
13
13
  /**
14
14
  * Height will be deducted
15
15
  * @param height Current calcuated height