Skip to content

Commit 7f8ee09

Browse files
authored
Merge pull request #80 from aeagle/#79-fix-resize-handle-size
#79 fix resize handle size
2 parents fac180d + b568045 commit 7f8ee09

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

.storybook/preview-head.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,7 @@
3232
.docblock-source {
3333
margin: 25px 0 !important;
3434
}
35+
.spaces-resize-handle {
36+
background-color: red;
37+
}
3538
</style>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-spaces",
3-
"version": "0.1.26",
3+
"version": "0.1.27",
44
"main": "dist/index.js",
55
"module": "dist/es/index.js",
66
"types": "dist/index.d.ts",

src/components/Space.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,7 @@ export const SpaceInternal: React.FC<AllProps> = React.memo((props) => {
175175
anchor={props.anchor}
176176
parentContext={parentContext}
177177
space={space}
178+
handleSize={handleSize}
178179
spaceElement={spaceElement.current}
179180
minimumSize={props.minimumSize}
180181
maximumSize={props.maximumSize}

0 commit comments

Comments
 (0)