@campxdev/react-blueprint 1.5.6 → 1.5.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@campxdev/react-blueprint",
3
- "version": "1.5.6",
3
+ "version": "1.5.7",
4
4
  "main": "./export.ts",
5
5
  "private": false,
6
6
  "dependencies": {
@@ -351,7 +351,7 @@ export const SingleSelect = ({
351
351
 
352
352
  const debouncedSendRequest = useMemo(() => {
353
353
  return debounce((searchValue) => {
354
- searchDb(searchValue);
354
+ if (optionsApiEndPoint) searchDb(searchValue);
355
355
  }, 300);
356
356
  }, [searchDb]);
357
357
 
@@ -316,7 +316,7 @@ export const getCommonTheme = (mode: Theme) => {
316
316
  },
317
317
  },
318
318
  '& input:-webkit-autofill': {
319
- height: '7px',
319
+ padding: '9px',
320
320
  },
321
321
  minWidth: '200px',
322
322
  },
@@ -434,6 +434,9 @@ export const getCommonTheme = (mode: Theme) => {
434
434
  fontWeight: 300,
435
435
  color: ColorTokens.text.primary,
436
436
  },
437
+ multiline: {
438
+ maxHeight: '200px',
439
+ },
437
440
  },
438
441
  },
439
442
  MuiLink: {