@visns-studio/visns-components 5.14.18 → 5.14.19

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
@@ -28,7 +28,7 @@
28
28
  "html-react-parser": "^5.2.6",
29
29
  "lodash": "^4.17.21",
30
30
  "lodash.debounce": "^4.0.8",
31
- "lucide-react": "^0.532.0",
31
+ "lucide-react": "^0.536.0",
32
32
  "moment": "^2.30.1",
33
33
  "motion": "^12.23.12",
34
34
  "numeral": "^2.0.6",
@@ -89,7 +89,7 @@
89
89
  "react-dom": "^17.0.0 || ^18.0.0"
90
90
  },
91
91
  "name": "@visns-studio/visns-components",
92
- "version": "5.14.18",
92
+ "version": "5.14.19",
93
93
  "description": "Various packages to assist in the development of our Custom Applications.",
94
94
  "main": "src/index.js",
95
95
  "files": [
@@ -274,7 +274,7 @@ const VisnsAutocomplete = memo((props) => {
274
274
  )}
275
275
  </div>
276
276
 
277
- {isFocused && !overwrite && (search.length > 1 || isLoading) && (
277
+ {isFocused && !overwrite && (search && search.length > 1 || isLoading) && (
278
278
  <ul
279
279
  ref={resultsRef}
280
280
  className={styles['AutocompletePlace-results']}