opus-react 0.6.20 → 0.6.21

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/index.d.cts CHANGED
@@ -1837,8 +1837,10 @@ type ResizeHandleProps = Omit<ComponentPropsWithoutRef<"button">, "type"> & {
1837
1837
  background?: ResizeHandleBackground;
1838
1838
  height?: ResizeHandleHeight;
1839
1839
  orientation: ResizeHandleOrientation;
1840
+ /** Keeps the resize track transparent, including on hover and focus. */
1841
+ transparent?: boolean;
1840
1842
  };
1841
- declare function ResizeHandle({ background, className, height, orientation, ...props }: ResizeHandleProps): react.JSX.Element;
1843
+ declare function ResizeHandle({ background, className, height, orientation, transparent, ...props }: ResizeHandleProps): react.JSX.Element;
1842
1844
 
1843
1845
  type ResizablePanelProps = {
1844
1846
  children: ReactNode;
package/dist/index.d.ts CHANGED
@@ -1837,8 +1837,10 @@ type ResizeHandleProps = Omit<ComponentPropsWithoutRef<"button">, "type"> & {
1837
1837
  background?: ResizeHandleBackground;
1838
1838
  height?: ResizeHandleHeight;
1839
1839
  orientation: ResizeHandleOrientation;
1840
+ /** Keeps the resize track transparent, including on hover and focus. */
1841
+ transparent?: boolean;
1840
1842
  };
1841
- declare function ResizeHandle({ background, className, height, orientation, ...props }: ResizeHandleProps): react.JSX.Element;
1843
+ declare function ResizeHandle({ background, className, height, orientation, transparent, ...props }: ResizeHandleProps): react.JSX.Element;
1842
1844
 
1843
1845
  type ResizablePanelProps = {
1844
1846
  children: ReactNode;