@plasmicpkgs/react-aria 0.0.87 → 0.0.89

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.
@@ -1693,7 +1693,8 @@ function BaseSection(props) {
1693
1693
  return (
1694
1694
  // BaseListbox should give section a listbox context (that it can't be used without)
1695
1695
  // as well as the id manager (that is needed to identify and warn about duplication of ids)
1696
- /* @__PURE__ */ React__default.default.createElement(BaseListBox, null, section)
1696
+ // selection mode needs to be single/multiple to be able to trigger hover state on it.
1697
+ /* @__PURE__ */ React__default.default.createElement(BaseListBox, { selectionMode: "single" }, section)
1697
1698
  );
1698
1699
  }
1699
1700
  return section;