@dxos/react-ui 0.4.10-main.e2d2318 → 0.4.10-main.e9f9c10
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.
- package/dist/lib/browser/index.mjs +1 -2
- package/dist/lib/browser/index.mjs.map +3 -3
- package/dist/lib/browser/meta.json +1 -1
- package/dist/types/src/components/ScrollArea/ScrollArea.d.ts +1 -6
- package/dist/types/src/components/ScrollArea/ScrollArea.d.ts.map +1 -1
- package/package.json +9 -9
- package/src/components/ScrollArea/ScrollArea.tsx +2 -5
|
@@ -1723,10 +1723,9 @@ var ScrollAreaViewport = /* @__PURE__ */ forwardRef20(({ classNames, ...props },
|
|
|
1723
1723
|
ref: forwardedRef
|
|
1724
1724
|
});
|
|
1725
1725
|
});
|
|
1726
|
-
var ScrollAreaScrollbar = /* @__PURE__ */ forwardRef20(({ classNames,
|
|
1726
|
+
var ScrollAreaScrollbar = /* @__PURE__ */ forwardRef20(({ classNames, ...props }, forwardedRef) => {
|
|
1727
1727
|
const { tx } = useThemeContext();
|
|
1728
1728
|
return /* @__PURE__ */ React23.createElement(ScrollAreaPrimitiveScrollbar, {
|
|
1729
|
-
"data-variant": variant,
|
|
1730
1729
|
...props,
|
|
1731
1730
|
className: tx("scrollArea.scrollbar", "scroll-area__scrollbar", {}, classNames),
|
|
1732
1731
|
ref: forwardedRef
|