@@ -140,6 +140,7 @@ function SearchAutocomplete(props) {
140
140
let inputRef = React .useRef (null );
141
141
let listBoxRef = React .useRef (null );
142
142
let popoverRef = React .useRef (null );
143
+ let buttonRef = React .useRef (null );
143
144
144
145
let {inputProps, listBoxProps, labelProps, clearButtonProps} = useSearchAutocomplete (
145
146
{
@@ -151,7 +152,7 @@ function SearchAutocomplete(props) {
151
152
state
152
153
);
153
154
154
- let {buttonProps} = useButton (clearButtonProps );
155
+ let {buttonProps} = useButton (clearButtonProps , buttonRef );
155
156
156
157
return (
157
158
<div style = { {display: ' inline-flex' , flexDirection: ' column' }} >
@@ -167,7 +168,7 @@ function SearchAutocomplete(props) {
167
168
fontSize: 16
168
169
}} />
169
170
{ state .inputValue !== ' ' &&
170
- <button { ... buttonProps } >❎</button >
171
+ <button { ... buttonProps } ref = { buttonRef } >❎</button >
171
172
}
172
173
{ state .isOpen &&
173
174
<Popover state = { state } triggerRef = { inputRef } popoverRef = { popoverRef } isNonModal placement = " bottom start" >
@@ -203,21 +204,23 @@ See [usePopover](usePopover.html) for more examples of popovers.
203
204
<summary style = { {fontWeight: ' bold' }} ><ChevronRight size = " S" /> Show code</summary >
204
205
205
206
``` tsx example export=true render=false
207
+ import type {AriaPopoverProps } from ' react-aria' ;
208
+ import type {OverlayTriggerState } from ' react-stately' ;
206
209
import {usePopover , Overlay , DismissButton } from ' @react-aria/overlays' ;
207
210
208
- function Popover({ children , state , ... props }) {
209
- let ref = React .useRef ();
210
- let {popoverRef = ref } = props ;
211
- let {popoverProps} = usePopover ({
212
- ... props ,
213
- popoverRef
214
- } , state );
211
+ interface PopoverProps extends AriaPopoverProps {
212
+ children : React .ReactNode ,
213
+ state : OverlayTriggerState
214
+ }
215
+
216
+ function Popover({ children , state , ... props } : PopoverProps ) {
217
+ let {popoverProps} = usePopover ( props , state );
215
218
216
219
return (
217
220
<Overlay >
218
221
<div
219
222
{ ... popoverProps }
220
- ref = { popoverRef }
223
+ ref = { props . popoverRef as React . RefObject < HTMLDivElement > }
221
224
style = { {
222
225
... popoverProps .style ,
223
226
background: ' lightgray' ,
@@ -246,7 +249,7 @@ user types in the SearchAutocomplete. They can also be shared with other compone
246
249
import {useListBox , useOption } from ' @react-aria/listbox' ;
247
250
248
251
function ListBox(props ) {
249
- let ref = React .useRef ();
252
+ let ref = React .useRef (null );
250
253
let {listBoxRef = ref , state} = props ;
251
254
let {listBoxProps} = useListBox (props , state , listBoxRef );
252
255
@@ -273,7 +276,7 @@ function ListBox(props) {
273
276
}
274
277
275
278
function Option({item , state }) {
276
- let ref = React .useRef ();
279
+ let ref = React .useRef (null );
277
280
let {optionProps, isSelected, isFocused, isDisabled} = useOption ({key: item .key }, state , ref );
278
281
279
282
let backgroundColor;
@@ -350,7 +353,7 @@ function Example() {
350
353
{id: 8 , name: ' Agricultural' },
351
354
{id: 9 , name: ' Electrical' }
352
355
];
353
- let [major, setMajor] = React .useState ();
356
+ let [major, setMajor] = React .useState (null );
354
357
355
358
let onSubmit = (value , key ) => {
356
359
if (value ) {
0 commit comments