@dxos/react-ui 0.4.10-main.fd4f2a3 → 0.4.10-main.fe71b4c

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.
@@ -219,7 +219,9 @@ var AvatarFrame = /* @__PURE__ */ forwardRef2(({ classNames, children, ...props
219
219
  cy: "50%",
220
220
  r
221
221
  }) : /* @__PURE__ */ React3.createElement("rect", {
222
- className: "avatarFrameFill fill-[var(--surface-bg)]",
222
+ className: hue ? tx("hue.fill", "avatar__frame__rect", {
223
+ hue
224
+ }) : "fill-[var(--surface-bg)]",
223
225
  x: ringGap + ringWidth,
224
226
  y: ringGap + ringWidth,
225
227
  width: 2 * r,
@@ -1721,9 +1723,10 @@ var ScrollAreaViewport = /* @__PURE__ */ forwardRef20(({ classNames, ...props },
1721
1723
  ref: forwardedRef
1722
1724
  });
1723
1725
  });
1724
- var ScrollAreaScrollbar = /* @__PURE__ */ forwardRef20(({ classNames, ...props }, forwardedRef) => {
1726
+ var ScrollAreaScrollbar = /* @__PURE__ */ forwardRef20(({ classNames, variant = "fine", ...props }, forwardedRef) => {
1725
1727
  const { tx } = useThemeContext();
1726
1728
  return /* @__PURE__ */ React23.createElement(ScrollAreaPrimitiveScrollbar, {
1729
+ "data-variant": variant,
1727
1730
  ...props,
1728
1731
  className: tx("scrollArea.scrollbar", "scroll-area__scrollbar", {}, classNames),
1729
1732
  ref: forwardedRef