react-tile-pane icon indicating copy to clipboard operation
react-tile-pane copied to clipboard

Pane stretchBar limit

Open ugokoli opened this issue 11 months ago • 3 comments

How can I limit the stretchbar from adjusting the width of surrounding panes beyond a set limit?

For instance, we could have a limit config object set in StrretchBarConfig, as a result, the user cannot adjust the stretchbar and limit the bordered panes beyond 100px in width or height.

const stretchBar: StretchBarConfig = {
	className: 'vertical-stretch-bar',
	style: (isRow) => ({ cursor: isRow ? 'ew-resize' : 'ns-resize' }),
        limit: '100px'
}

ugokoli avatar Mar 23 '24 14:03 ugokoli