@plasmicpkgs/react-aria 0.0.139 → 0.0.141
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 +3 -3
- package/dist/react-aria.esm.js.map +1 -1
- package/dist/react-aria.js +3 -3
- package/dist/react-aria.js.map +1 -1
- package/package.json +8 -8
- package/skinny/registerPopover.cjs.js +3 -3
- package/skinny/registerPopover.cjs.js.map +1 -1
- package/skinny/registerPopover.esm.js +3 -3
- package/skinny/registerPopover.esm.js.map +1 -1
package/dist/react-aria.js
CHANGED
|
@@ -2295,11 +2295,11 @@ function BasePopover(props) {
|
|
|
2295
2295
|
const canvasContext = host.usePlasmicCanvasContext();
|
|
2296
2296
|
const matchTriggerWidthProp = hasTrigger && matchTriggerWidth;
|
|
2297
2297
|
const _b = utils.mergeProps(
|
|
2298
|
-
{
|
|
2298
|
+
canvasContext && !canvasContext.interactive ? {
|
|
2299
2299
|
// isNonModal: Whether the popover is non-modal, i.e. elements outside the popover may be interacted with by assistive technologies.
|
|
2300
2300
|
// Setting isNonModal to true in edit mode (canvas) means that the popover will not prevent the user from interacting with the canvas while the popover is open.
|
|
2301
|
-
isNonModal:
|
|
2302
|
-
},
|
|
2301
|
+
isNonModal: true
|
|
2302
|
+
} : void 0,
|
|
2303
2303
|
restProps,
|
|
2304
2304
|
{ className: `${resetClassName}` },
|
|
2305
2305
|
// Override some props if the popover is standalone
|