@sanity/ui 0.36.16 → 0.36.17
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/sanity-ui.js +3 -1
- package/lib/sanity-ui.js.map +1 -1
- package/lib/sanity-ui.modern.js +3 -1
- package/lib/sanity-ui.modern.js.map +1 -1
- package/lib/sanity-ui.module.js +3 -1
- package/lib/sanity-ui.module.js.map +1 -1
- package/lib/src/components/autocomplete/autocomplete.d.ts +2 -0
- package/lib/src/components/autocomplete/autocomplete.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/components/autocomplete/__workshop__/fullscreen.tsx +24 -5
- package/src/components/autocomplete/autocomplete.tsx +9 -1
package/lib/sanity-ui.module.js
CHANGED
|
@@ -7432,7 +7432,9 @@ var InnerAutocomplete = /*#__PURE__*/forwardRef(function InnerAutocomplete(props
|
|
|
7432
7432
|
return renderPopover({
|
|
7433
7433
|
content: content,
|
|
7434
7434
|
hidden: !expanded,
|
|
7435
|
-
inputElement: inputElementRef.current
|
|
7435
|
+
inputElement: inputElementRef.current,
|
|
7436
|
+
onMouseEnter: handlePopoverMouseEnter,
|
|
7437
|
+
onMouseLeave: handlePopoverMouseLeave
|
|
7436
7438
|
}, setResultsPopoverElement);
|
|
7437
7439
|
}
|
|
7438
7440
|
|