Ryo Matsukawa

Results 90 comments of Ryo Matsukawa

`use server` is meant to be used for [Server Actions](https://react.dev/reference/rsc/use-server), so it looks like it might not be used correctly.

Hmm, I can't really think of a use case for this. Wouldn't setting `selectionMode="none"` be enough? That being said, if it's absolutely necessary, you can implement it this way to...

It seems that the React Spectrum team is [considering addressing this issue](https://github.com/adobe/react-spectrum/issues/2328). I'll take some time to think about whether we'll handle it ourselves.

Related to https://github.com/nextui-org/nextui/issues/3681

@wingkwong I certainly see your point, but I think this is fine since it matches the `outside-left` behavior. It might also be helpful to add a note in the docs...

Hey @wingkwong, could you please fix the conflicts?

@wingkwong Will this issue also be fixed? - https://github.com/nextui-org/nextui/issues/3725

Thanks for the issue! It might be a good idea to add a prop like `outside-top` to always display at the top, similar to the existing `outside-left`.

As a temporary workaround, you can pass `onChange` to `useDisclosure` to handle this. ```tsx const { isOpen, onOpen, onOpenChange } = useDisclosure({ onChange: console.log, }) ``` See: https://github.com/nextui-org/nextui/pull/3902#issuecomment-2439625140

Select is implemented by [customizing react-aria](https://github.com/nextui-org/nextui/blob/1091377e4de83221068247ec6411e4af0082665b/packages/hooks/use-aria-multiselect/src/use-multiselect.ts), so we haven't been able to incorporate [validationBehavior](https://react-spectrum.adobe.com/react-aria/Select.html#select-1) yet. Therefore, we need to enable `validationBehavior` support for Select.