@visns-studio/visns-components 4.7.6 → 4.7.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
@@ -75,7 +75,7 @@
75
75
  "react-dom": "^17.0.0 || ^18.0.0"
76
76
  },
77
77
  "name": "@visns-studio/visns-components",
78
- "version": "4.7.6",
78
+ "version": "4.7.7",
79
79
  "description": "Various packages to assist in the development of our Custom Applications.",
80
80
  "main": "src/index.js",
81
81
  "files": [
@@ -13,6 +13,7 @@ function VisnsAsyncSelect({
13
13
  onKeyDown,
14
14
  placeholder,
15
15
  settings,
16
+ style,
16
17
  }) {
17
18
  const loadSuggestedOptions = useCallback(
18
19
  debounce((inputValue, callback) => {
@@ -111,6 +112,13 @@ function VisnsAsyncSelect({
111
112
  ...styles,
112
113
  zIndex: 9999,
113
114
  }),
115
+ control: (base) => ({
116
+ ...base,
117
+ minHeight:
118
+ style && style.multi_select_height
119
+ ? style.multi_select_height
120
+ : '52px',
121
+ }),
114
122
  input: (styles) => ({
115
123
  ...styles,
116
124
  padding: 0,