@plasmicpkgs/react-aria 0.0.115 → 0.0.116

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.
@@ -3083,20 +3083,28 @@ const { variants: variants$a, withObservedValues: withObservedValues$9 } = pickA
3083
3083
  );
3084
3084
  function BaseOverlayArrow({
3085
3085
  children,
3086
- plasmicUpdateVariant
3086
+ plasmicUpdateVariant,
3087
+ className
3087
3088
  }) {
3088
3089
  const popoverContext = React.useContext(PopoverContext);
3089
3090
  const tooltipContext = React.useContext(TooltipContext);
3090
3091
  const isStandalone = !popoverContext && !tooltipContext;
3091
- const overlayArrow = /* @__PURE__ */ React.createElement(OverlayArrow, { style: __spreadValues$b({ lineHeight: "0" }, COMMON_STYLES) }, ({ placement }) => withObservedValues$9(
3092
- children,
3092
+ const overlayArrow = /* @__PURE__ */ React.createElement(
3093
+ OverlayArrow,
3093
3094
  {
3094
- placementTop: placement === "top",
3095
- placementLeft: placement === "left",
3096
- placementRight: placement === "right"
3095
+ className,
3096
+ style: __spreadValues$b({ lineHeight: "0" }, COMMON_STYLES)
3097
3097
  },
3098
- plasmicUpdateVariant
3099
- ));
3098
+ ({ placement }) => withObservedValues$9(
3099
+ children,
3100
+ {
3101
+ placementTop: placement === "top",
3102
+ placementLeft: placement === "left",
3103
+ placementRight: placement === "right"
3104
+ },
3105
+ plasmicUpdateVariant
3106
+ )
3107
+ );
3100
3108
  if (isStandalone) {
3101
3109
  return /* @__PURE__ */ React.createElement("div", { style: { position: "relative" } }, overlayArrow);
3102
3110
  }