@etsoo/materialui 1.1.60 → 1.1.62
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 +3 -2
- package/package.json +1 -1
- package/src/SearchBar.tsx +3 -1
package/lib/SearchBar.js
CHANGED
|
@@ -223,9 +223,10 @@ export function SearchBar(props) {
|
|
|
223
223
|
if (form)
|
|
224
224
|
state.form = form;
|
|
225
225
|
} },
|
|
226
|
-
React.createElement(Stack, { ref: dimensions[0][0], justifyContent: "center", alignItems: "center", direction: "row", spacing: 1, sx: {
|
|
226
|
+
React.createElement(Stack, { ref: dimensions[0][0], justifyContent: "center", alignItems: "center", direction: "row", spacing: 1, width: "100%", sx: {
|
|
227
|
+
overflowX: "hidden",
|
|
227
228
|
"& > :not(style)": {
|
|
228
|
-
flexBasis: "
|
|
229
|
+
flexBasis: "60px",
|
|
229
230
|
flexGrow: 0,
|
|
230
231
|
flexShrink: 0,
|
|
231
232
|
maxWidth: "180px",
|
package/package.json
CHANGED
package/src/SearchBar.tsx
CHANGED
|
@@ -305,9 +305,11 @@ export function SearchBar(props: SearchBarProps) {
|
|
|
305
305
|
alignItems="center"
|
|
306
306
|
direction="row"
|
|
307
307
|
spacing={1}
|
|
308
|
+
width="100%"
|
|
308
309
|
sx={{
|
|
310
|
+
overflowX: "hidden",
|
|
309
311
|
"& > :not(style)": {
|
|
310
|
-
flexBasis: "
|
|
312
|
+
flexBasis: "60px",
|
|
311
313
|
flexGrow: 0,
|
|
312
314
|
flexShrink: 0,
|
|
313
315
|
maxWidth: "180px",
|