@etsoo/materialui 1.6.81 → 1.6.82

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.
@@ -272,6 +272,9 @@ class NotificationMU extends react_2.NotificationReact {
272
272
  event.preventDefault();
273
273
  event.currentTarget.elements.namedItem("okButton")?.click();
274
274
  return false;
275
+ },
276
+ sx: {
277
+ overflow: "hidden"
275
278
  }
276
279
  }
277
280
  }, className: className, fullWidth: fullWidth, maxWidth: maxWidth, fullScreen: fullScreen, scroll: "paper", ...options, children: [(0, jsx_runtime_1.jsxs)(IconDialogTitle, { draggable: draggable, className: `dialog-title${draggable ? " draggable-dialog-title" : ""}`, children: [(0, jsx_runtime_1.jsx)(Info_1.default, { color: "primary" }), (0, jsx_runtime_1.jsx)("span", { className: "dialogTitle", children: title }), closable && ((0, jsx_runtime_1.jsx)(IconButton_1.default, { className: "MuiDialogContent-root-close-button", size: "small", onClick: () => this.returnValue("CLOSE"), children: (0, jsx_runtime_1.jsx)(Close_1.default, {}) }))] }), (0, jsx_runtime_1.jsxs)(DialogContent_1.default, { dividers: true, children: [typeof this.content === "string" ? ((0, jsx_runtime_1.jsx)(DialogContentText_1.default, { children: this.content })) : (this.content), localInputs, (0, jsx_runtime_1.jsx)(Typography_1.default, { component: "div", variant: "caption", ref: errorRef, color: "error", align: "center" })] }), (0, jsx_runtime_1.jsx)(DialogActions_1.default, { children: buttons ? buttons(this, handleSubmit, base) : base() })] }, this.id));
@@ -266,6 +266,9 @@ export class NotificationMU extends NotificationReact {
266
266
  event.preventDefault();
267
267
  event.currentTarget.elements.namedItem("okButton")?.click();
268
268
  return false;
269
+ },
270
+ sx: {
271
+ overflow: "hidden"
269
272
  }
270
273
  }
271
274
  }, className: className, fullWidth: fullWidth, maxWidth: maxWidth, fullScreen: fullScreen, scroll: "paper", ...options, children: [_jsxs(IconDialogTitle, { draggable: draggable, className: `dialog-title${draggable ? " draggable-dialog-title" : ""}`, children: [_jsx(InfoIcon, { color: "primary" }), _jsx("span", { className: "dialogTitle", children: title }), closable && (_jsx(IconButton, { className: "MuiDialogContent-root-close-button", size: "small", onClick: () => this.returnValue("CLOSE"), children: _jsx(CloseIcon, {}) }))] }), _jsxs(DialogContent, { dividers: true, children: [typeof this.content === "string" ? (_jsx(DialogContentText, { children: this.content })) : (this.content), localInputs, _jsx(Typography, { component: "div", variant: "caption", ref: errorRef, color: "error", align: "center" })] }), _jsx(DialogActions, { children: buttons ? buttons(this, handleSubmit, base) : base() })] }, this.id));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/materialui",
3
- "version": "1.6.81",
3
+ "version": "1.6.82",
4
4
  "description": "TypeScript Material-UI Implementation",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
@@ -43,7 +43,7 @@
43
43
  "@etsoo/appscript": "^1.6.72",
44
44
  "@etsoo/notificationbase": "^1.1.74",
45
45
  "@etsoo/react": "^1.8.96",
46
- "@etsoo/shared": "^1.2.89",
46
+ "@etsoo/shared": "^1.2.90",
47
47
  "@mui/icons-material": "^9.2.0",
48
48
  "@mui/material": "^9.2.0",
49
49
  "@mui/x-data-grid": "^9.9.0",
@@ -645,6 +645,9 @@ export class NotificationMU extends NotificationReact {
645
645
  ) as HTMLButtonElement
646
646
  )?.click();
647
647
  return false;
648
+ },
649
+ sx: {
650
+ overflow: "hidden"
648
651
  }
649
652
  }
650
653
  }}