@etsoo/react 1.4.92 → 1.4.93

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.
@@ -267,5 +267,9 @@ export function SearchBar(props) {
267
267
  if (form)
268
268
  state.moreForm = form;
269
269
  } },
270
- React.createElement(Stack, { direction: "column", alignItems: "stretch", spacing: 2, padding: 2 }, moreItems))))));
270
+ React.createElement(Stack, { direction: "column", alignItems: "stretch", spacing: 2, padding: 2, sx: {
271
+ '& > :not(style)': {
272
+ minWidth: '100px'
273
+ }
274
+ } }, moreItems))))));
271
275
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/react",
3
- "version": "1.4.92",
3
+ "version": "1.4.93",
4
4
  "description": "TypeScript ReactJs framework",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -397,6 +397,11 @@ export function SearchBar(props: SearchBarProps) {
397
397
  alignItems="stretch"
398
398
  spacing={2}
399
399
  padding={2}
400
+ sx={{
401
+ '& > :not(style)': {
402
+ minWidth: '100px'
403
+ }
404
+ }}
400
405
  >
401
406
  {moreItems}
402
407
  </Stack>