@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.modern.js
CHANGED
|
@@ -8397,7 +8397,9 @@ const InnerAutocomplete = /*#__PURE__*/forwardRef(function InnerAutocomplete(pro
|
|
|
8397
8397
|
return renderPopover({
|
|
8398
8398
|
content,
|
|
8399
8399
|
hidden: !expanded,
|
|
8400
|
-
inputElement: inputElementRef.current
|
|
8400
|
+
inputElement: inputElementRef.current,
|
|
8401
|
+
onMouseEnter: handlePopoverMouseEnter,
|
|
8402
|
+
onMouseLeave: handlePopoverMouseLeave
|
|
8401
8403
|
}, setResultsPopoverElement);
|
|
8402
8404
|
}
|
|
8403
8405
|
|