@etsoo/materialui 1.2.2 → 1.2.3

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.
package/lib/SearchBar.js CHANGED
@@ -244,7 +244,7 @@ export function SearchBar(props) {
244
244
  React.createElement(IconButton, { title: labels.more, size: "medium", sx: { height: "40px" }, onClick: handleMore },
245
245
  React.createElement(MoreHorizIcon, null)),
246
246
  React.createElement(Button, { variant: "contained", size: "medium", ref: resetButtonRef, onClick: handleReset }, labels.reset))),
247
- hasMoreItems && (React.createElement(Drawer, { anchor: "right", sx: { minWidth: "250px" }, ModalProps: {
247
+ hasMoreItems && (React.createElement(Drawer, { anchor: "right", sx: { minWidth: "180px" }, ModalProps: {
248
248
  keepMounted: true
249
249
  }, open: open, onClose: () => updateOpen(false) },
250
250
  React.createElement("form", { onChange: moreFormChange, ref: (form) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/materialui",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "TypeScript Material-UI Implementation",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -50,10 +50,10 @@
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.91",
53
+ "@etsoo/appscript": "^1.3.92",
54
54
  "@etsoo/notificationbase": "^1.1.24",
55
55
  "@etsoo/react": "^1.6.67",
56
- "@etsoo/shared": "^1.2.0",
56
+ "@etsoo/shared": "^1.2.1",
57
57
  "@mui/icons-material": "^5.11.16",
58
58
  "@mui/material": "^5.12.0",
59
59
  "@mui/x-data-grid": "^6.2.0",
package/src/SearchBar.tsx CHANGED
@@ -357,7 +357,7 @@ export function SearchBar(props: SearchBarProps) {
357
357
  {hasMoreItems && (
358
358
  <Drawer
359
359
  anchor="right"
360
- sx={{ minWidth: "250px" }}
360
+ sx={{ minWidth: "180px" }}
361
361
  ModalProps={{
362
362
  keepMounted: true
363
363
  }}