@plasmicpkgs/react-aria 0.0.101 → 0.0.102

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.
@@ -3009,28 +3009,20 @@ const { variants: variants$a, withObservedValues: withObservedValues$9 } = pickA
3009
3009
  );
3010
3010
  function BaseOverlayArrow({
3011
3011
  children,
3012
- plasmicUpdateVariant,
3013
- className
3012
+ plasmicUpdateVariant
3014
3013
  }) {
3015
3014
  const popoverContext = React.useContext(PopoverContext);
3016
3015
  const tooltipContext = React.useContext(TooltipContext);
3017
3016
  const isStandalone = !popoverContext && !tooltipContext;
3018
- const overlayArrow = /* @__PURE__ */ React.createElement(
3019
- OverlayArrow,
3017
+ const overlayArrow = /* @__PURE__ */ React.createElement(OverlayArrow, { style: __spreadValues$b({ lineHeight: "0" }, COMMON_STYLES) }, ({ placement }) => withObservedValues$9(
3018
+ children,
3020
3019
  {
3021
- style: __spreadValues$b({ lineHeight: "0" }, COMMON_STYLES),
3022
- className
3020
+ placementTop: placement === "top",
3021
+ placementLeft: placement === "left",
3022
+ placementRight: placement === "right"
3023
3023
  },
3024
- ({ placement }) => withObservedValues$9(
3025
- children,
3026
- {
3027
- placementTop: placement === "top",
3028
- placementLeft: placement === "left",
3029
- placementRight: placement === "right"
3030
- },
3031
- plasmicUpdateVariant
3032
- )
3033
- );
3024
+ plasmicUpdateVariant
3025
+ ));
3034
3026
  if (isStandalone) {
3035
3027
  return /* @__PURE__ */ React.createElement("div", { style: { position: "relative" } }, overlayArrow);
3036
3028
  }