@plasmicpkgs/react-aria 0.0.87 → 0.0.88
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/dist/.tsbuildinfo +1 -1
- package/dist/react-aria.esm.js +2 -1
- package/dist/react-aria.esm.js.map +1 -1
- package/dist/react-aria.js +2 -1
- package/dist/react-aria.js.map +1 -1
- package/package.json +2 -2
- package/skinny/registerComboBox.cjs.js +1 -1
- package/skinny/registerComboBox.esm.js +1 -1
- package/skinny/{registerListBox-da15518f.esm.js → registerListBox-4d5f98f9.esm.js} +3 -2
- package/skinny/registerListBox-4d5f98f9.esm.js.map +1 -0
- package/skinny/{registerListBox-44088cfc.cjs.js → registerListBox-7d927361.cjs.js} +3 -2
- package/skinny/registerListBox-7d927361.cjs.js.map +1 -0
- package/skinny/registerListBox.cjs.js +1 -1
- package/skinny/registerListBox.esm.js +1 -1
- package/skinny/registerSection.cjs.js +1 -1
- package/skinny/registerSection.esm.js +1 -1
- package/skinny/registerSelect.cjs.js +1 -1
- package/skinny/registerSelect.esm.js +1 -1
- package/skinny/registerListBox-44088cfc.cjs.js.map +0 -1
- package/skinny/registerListBox-da15518f.esm.js.map +0 -1
package/dist/react-aria.esm.js
CHANGED
|
@@ -1685,7 +1685,8 @@ function BaseSection(props) {
|
|
|
1685
1685
|
return (
|
|
1686
1686
|
// BaseListbox should give section a listbox context (that it can't be used without)
|
|
1687
1687
|
// as well as the id manager (that is needed to identify and warn about duplication of ids)
|
|
1688
|
-
|
|
1688
|
+
// selection mode needs to be single/multiple to be able to trigger hover state on it.
|
|
1689
|
+
/* @__PURE__ */ React.createElement(BaseListBox, { selectionMode: "single" }, section)
|
|
1689
1690
|
);
|
|
1690
1691
|
}
|
|
1691
1692
|
return section;
|