@etsoo/materialui 1.2.9 → 1.2.10

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.
@@ -92,7 +92,7 @@ export function ViewPage(props) {
92
92
  setData(result);
93
93
  };
94
94
  return (React.createElement(CommonPage, { paddings: paddings, onRefresh: supportRefresh ? refresh : undefined, onUpdate: supportRefresh ? undefined : refresh, ...rest, scrollContainer: globalThis, fabColumnDirection: fabColumnDirection, fabTop: fabTop, supportBack: supportBack }, data == null ? (React.createElement(LinearProgress, null)) : (React.createElement(React.Fragment, null,
95
- React.createElement(Grid, { container: true, justifyContent: "left", spacing: paddings, className: "ET-ViewPage", ref: gridRef, sx: {
95
+ React.createElement(Grid, { container: true, justifyContent: "left", spacing: spacing, className: "ET-ViewPage", ref: gridRef, sx: {
96
96
  ".MuiTypography-subtitle2": {
97
97
  fontWeight: "bold"
98
98
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/materialui",
3
- "version": "1.2.9",
3
+ "version": "1.2.10",
4
4
  "description": "TypeScript Material-UI Implementation",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -247,7 +247,7 @@ export function ViewPage<T extends DataTypes.StringRecord>(
247
247
  <Grid
248
248
  container
249
249
  justifyContent="left"
250
- spacing={paddings}
250
+ spacing={spacing}
251
251
  className="ET-ViewPage"
252
252
  ref={gridRef}
253
253
  sx={{