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/CHANGELOG.md +4 -0
- package/dist/index.cjs +181 -179
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +181 -179
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
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;
|