@etsoo/react 1.4.43 → 1.4.44

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.
@@ -147,7 +147,7 @@ export function ResponsibleContainer(props) {
147
147
  ? undefined
148
148
  : containerBoxSx(paddings, showDataGrid) },
149
149
  React.createElement(Stack, null,
150
- React.createElement(Box, { ref: dimensions[0][0], className: "SearchBox" }, searchBar),
150
+ React.createElement(Box, { ref: dimensions[0][0], className: "SearchBox", sx: { height: 64 } }, searchBar),
151
151
  list),
152
152
  pullToRefresh && pullContainer && (React.createElement(PullToRefreshUI, { mainElement: pullContainer, triggerElement: pullContainer, instructionsPullToRefresh: labels.pullToRefresh, instructionsReleaseToRefresh: labels.releaseToRefresh, instructionsRefreshing: labels.refreshing, onRefresh: () => { var _a; return (_a = state.ref) === null || _a === void 0 ? void 0 : _a.reset(); }, shouldPullToRefresh: () => {
153
153
  const container = document.querySelector(pullContainer);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/react",
3
- "version": "1.4.43",
3
+ "version": "1.4.44",
4
4
  "description": "TypeScript ReactJs framework",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -50,7 +50,7 @@
50
50
  "@emotion/react": "^11.7.1",
51
51
  "@emotion/style": "^0.8.0",
52
52
  "@emotion/styled": "^11.6.0",
53
- "@etsoo/appscript": "^1.2.23",
53
+ "@etsoo/appscript": "^1.2.24",
54
54
  "@etsoo/notificationbase": "^1.1.0",
55
55
  "@etsoo/shared": "^1.1.3",
56
56
  "@mui/icons-material": "^5.2.5",
@@ -91,7 +91,7 @@
91
91
  "eslint-plugin-react": "^7.28.0",
92
92
  "jest": "^27.4.7",
93
93
  "react-test-renderer": "^17.0.2",
94
- "ts-jest": "^27.1.2",
94
+ "ts-jest": "^27.1.3",
95
95
  "typescript": "^4.5.4"
96
96
  }
97
97
  }
@@ -349,7 +349,11 @@ export function ResponsibleContainer<
349
349
  }
350
350
  >
351
351
  <Stack>
352
- <Box ref={dimensions[0][0]} className="SearchBox">
352
+ <Box
353
+ ref={dimensions[0][0]}
354
+ className="SearchBox"
355
+ sx={{ height: 64 }}
356
+ >
353
357
  {searchBar}
354
358
  </Box>
355
359
  {list}