@plasmicpkgs/react-aria 0.0.101 → 0.0.103

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