diff --git a/packages/react/select/src/Select.stories.tsx b/packages/react/select/src/Select.stories.tsx index 6fe46281e..1a3e610b3 100644 --- a/packages/react/select/src/Select.stories.tsx +++ b/packages/react/select/src/Select.stories.tsx @@ -1,4 +1,5 @@ import * as React from 'react'; +import * as ReactDOM from 'react-dom'; import { css } from '../../../../stitches.config'; import * as Select from '@radix-ui/react-select'; import { Label } from '@radix-ui/react-label'; @@ -511,6 +512,62 @@ export const WithinForm = () => { ); }; +export const RefreshItemsWithinForm = function SelectDemo() { + const [value, setValue] = React.useState('apple'); + const [hide, setHide] = React.useState(false); + + return ( +
e.preventDefault()}> +

current value: {value}

+ + + + + + + + + + + {hide ? null : ( + <> + + Apple + + + Banana + + + Blueberry + + + Grapes + + + Pineapple + + + )} + + + + +
+ ); +}; + export const DisabledWithinForm = () => { const [data, setData] = React.useState({}); diff --git a/packages/react/select/src/Select.tsx b/packages/react/select/src/Select.tsx index 5e848d8ca..e3a227d86 100644 --- a/packages/react/select/src/Select.tsx +++ b/packages/react/select/src/Select.tsx @@ -1615,7 +1615,9 @@ const BubbleSelect = React.forwardRef select.dispatchEvent(event)); + return () => window.clearTimeout(id); } }, [prevValue, value]);