@etsoo/materialui 1.1.86 → 1.1.88

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.
@@ -69,7 +69,7 @@ export const IntInputField = React.forwardRef((props, ref) => {
69
69
  setValue(value, source);
70
70
  if (onChangeDelay)
71
71
  onChangeDelay(event);
72
- }, ...rest }));
72
+ }, required: required, ...rest }));
73
73
  if (buttons)
74
74
  return (React.createElement(Box, { sx: { display: "flex", alignItems: "flex-end", gap: 0.5 } },
75
75
  React.createElement(IconButton, { size: "small", onClick: () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/materialui",
3
- "version": "1.1.86",
3
+ "version": "1.1.88",
4
4
  "description": "TypeScript Material-UI Implementation",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -50,16 +50,16 @@
50
50
  "@emotion/css": "^11.10.6",
51
51
  "@emotion/react": "^11.10.6",
52
52
  "@emotion/styled": "^11.10.6",
53
- "@etsoo/appscript": "^1.3.86",
53
+ "@etsoo/appscript": "^1.3.88",
54
54
  "@etsoo/notificationbase": "^1.1.24",
55
- "@etsoo/react": "^1.6.57",
56
- "@etsoo/shared": "^1.1.95",
55
+ "@etsoo/react": "^1.6.58",
56
+ "@etsoo/shared": "^1.1.96",
57
57
  "@mui/icons-material": "^5.11.11",
58
58
  "@mui/material": "^5.11.15",
59
59
  "@mui/x-data-grid": "^6.0.4",
60
60
  "@types/pica": "^9.0.1",
61
61
  "@types/pulltorefreshjs": "^0.1.5",
62
- "@types/react": "^18.0.31",
62
+ "@types/react": "^18.0.32",
63
63
  "@types/react-avatar-editor": "^13.0.0",
64
64
  "@types/react-dom": "^18.0.11",
65
65
  "@types/react-input-mask": "^3.0.2",
@@ -76,11 +76,11 @@
76
76
  },
77
77
  "devDependencies": {
78
78
  "@babel/cli": "^7.21.0",
79
- "@babel/core": "^7.21.3",
80
- "@babel/plugin-transform-runtime": "^7.21.0",
81
- "@babel/preset-env": "^7.20.2",
79
+ "@babel/core": "^7.21.4",
80
+ "@babel/plugin-transform-runtime": "^7.21.4",
81
+ "@babel/preset-env": "^7.21.4",
82
82
  "@babel/preset-react": "^7.18.6",
83
- "@babel/preset-typescript": "^7.21.0",
83
+ "@babel/preset-typescript": "^7.21.4",
84
84
  "@babel/runtime-corejs3": "^7.21.0",
85
85
  "@testing-library/jest-dom": "^5.16.5",
86
86
  "@testing-library/react": "^14.0.0",
@@ -167,6 +167,7 @@ export const IntInputField = React.forwardRef<
167
167
 
168
168
  if (onChangeDelay) onChangeDelay(event);
169
169
  }}
170
+ required={required}
170
171
  {...rest}
171
172
  />
172
173
  );