opus-react 0.3.3 → 0.3.4
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.cjs +134 -132
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +15 -28
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +134 -132
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1534,11 +1534,12 @@ type CustomScrollbarProps = {
|
|
|
1534
1534
|
orientation?: CustomScrollbarOrientation;
|
|
1535
1535
|
style?: CSSProperties;
|
|
1536
1536
|
thickness?: number;
|
|
1537
|
+
trackInset?: number;
|
|
1537
1538
|
verticalThumbShape?: CustomScrollbarShape;
|
|
1538
1539
|
verticalTrackShape?: CustomScrollbarShape;
|
|
1539
1540
|
viewportSelector?: string;
|
|
1540
1541
|
};
|
|
1541
|
-
declare function CustomScrollbar({ autoHide, children, className, label, maxHeight, minThumbSize, horizontalThumbShape, horizontalTrackShape, orientation, style, thickness, verticalThumbShape, verticalTrackShape, viewportSelector, }: CustomScrollbarProps): react.JSX.Element;
|
|
1542
|
+
declare function CustomScrollbar({ autoHide, children, className, label, maxHeight, minThumbSize, horizontalThumbShape, horizontalTrackShape, orientation, style, thickness, trackInset, verticalThumbShape, verticalTrackShape, viewportSelector, }: CustomScrollbarProps): react.JSX.Element;
|
|
1542
1543
|
|
|
1543
1544
|
type AspectRatioProps = {
|
|
1544
1545
|
children: ReactNode;
|
package/dist/index.d.ts
CHANGED
|
@@ -1534,11 +1534,12 @@ type CustomScrollbarProps = {
|
|
|
1534
1534
|
orientation?: CustomScrollbarOrientation;
|
|
1535
1535
|
style?: CSSProperties;
|
|
1536
1536
|
thickness?: number;
|
|
1537
|
+
trackInset?: number;
|
|
1537
1538
|
verticalThumbShape?: CustomScrollbarShape;
|
|
1538
1539
|
verticalTrackShape?: CustomScrollbarShape;
|
|
1539
1540
|
viewportSelector?: string;
|
|
1540
1541
|
};
|
|
1541
|
-
declare function CustomScrollbar({ autoHide, children, className, label, maxHeight, minThumbSize, horizontalThumbShape, horizontalTrackShape, orientation, style, thickness, verticalThumbShape, verticalTrackShape, viewportSelector, }: CustomScrollbarProps): react.JSX.Element;
|
|
1542
|
+
declare function CustomScrollbar({ autoHide, children, className, label, maxHeight, minThumbSize, horizontalThumbShape, horizontalTrackShape, orientation, style, thickness, trackInset, verticalThumbShape, verticalTrackShape, viewportSelector, }: CustomScrollbarProps): react.JSX.Element;
|
|
1542
1543
|
|
|
1543
1544
|
type AspectRatioProps = {
|
|
1544
1545
|
children: ReactNode;
|