@etsoo/materialui 1.5.10 → 1.5.11
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.
|
@@ -6,7 +6,7 @@ import { ViewContainerProps } from "../ViewContainer";
|
|
|
6
6
|
/**
|
|
7
7
|
* View page props
|
|
8
8
|
*/
|
|
9
|
-
export interface ViewPageProps<T extends DataTypes.StringRecord> extends Omit<CommonPageProps, "children">, Omit<ViewContainerProps<T>, "data"> {
|
|
9
|
+
export interface ViewPageProps<T extends DataTypes.StringRecord> extends Omit<CommonPageProps, "children">, Omit<ViewContainerProps<T>, "data" | "refresh"> {
|
|
10
10
|
/**
|
|
11
11
|
* Actions
|
|
12
12
|
*/
|
|
@@ -6,7 +6,7 @@ import { ViewContainerProps } from "../ViewContainer";
|
|
|
6
6
|
/**
|
|
7
7
|
* View page props
|
|
8
8
|
*/
|
|
9
|
-
export interface ViewPageProps<T extends DataTypes.StringRecord> extends Omit<CommonPageProps, "children">, Omit<ViewContainerProps<T>, "data"> {
|
|
9
|
+
export interface ViewPageProps<T extends DataTypes.StringRecord> extends Omit<CommonPageProps, "children">, Omit<ViewContainerProps<T>, "data" | "refresh"> {
|
|
10
10
|
/**
|
|
11
11
|
* Actions
|
|
12
12
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@etsoo/materialui",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.11",
|
|
4
4
|
"description": "TypeScript Material-UI Implementation",
|
|
5
5
|
"main": "lib/cjs/index.js",
|
|
6
6
|
"module": "lib/mjs/index.js",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@etsoo/shared": "^1.2.66",
|
|
47
47
|
"@mui/icons-material": "^7.0.1",
|
|
48
48
|
"@mui/material": "^7.0.1",
|
|
49
|
-
"@mui/x-data-grid": "^7.28.
|
|
49
|
+
"@mui/x-data-grid": "^7.28.3",
|
|
50
50
|
"chart.js": "^4.4.8",
|
|
51
51
|
"chartjs-plugin-datalabels": "^2.2.0",
|
|
52
52
|
"eventemitter3": "^5.0.1",
|
|
@@ -72,12 +72,12 @@
|
|
|
72
72
|
"@babel/preset-react": "^7.26.3",
|
|
73
73
|
"@babel/preset-typescript": "^7.27.0",
|
|
74
74
|
"@babel/runtime-corejs3": "^7.27.0",
|
|
75
|
-
"@testing-library/react": "^16.
|
|
75
|
+
"@testing-library/react": "^16.3.0",
|
|
76
76
|
"@types/pica": "^9.0.5",
|
|
77
77
|
"@types/pulltorefreshjs": "^0.1.7",
|
|
78
78
|
"@types/react": "^18.3.20",
|
|
79
79
|
"@types/react-avatar-editor": "^13.0.4",
|
|
80
|
-
"@types/react-dom": "^18.3.
|
|
80
|
+
"@types/react-dom": "^18.3.6",
|
|
81
81
|
"@types/react-input-mask": "^3.0.6",
|
|
82
82
|
"@types/react-window": "^1.8.8",
|
|
83
83
|
"@vitejs/plugin-react": "^4.3.4",
|
package/src/pages/ViewPage.tsx
CHANGED
|
@@ -18,7 +18,7 @@ import Stack from "@mui/material/Stack";
|
|
|
18
18
|
*/
|
|
19
19
|
export interface ViewPageProps<T extends DataTypes.StringRecord>
|
|
20
20
|
extends Omit<CommonPageProps, "children">,
|
|
21
|
-
Omit<ViewContainerProps<T>, "data"> {
|
|
21
|
+
Omit<ViewContainerProps<T>, "data" | "refresh"> {
|
|
22
22
|
/**
|
|
23
23
|
* Actions
|
|
24
24
|
*/
|