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