react-tile-pane
react-tile-pane copied to clipboard
Pane stretchBar limit
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'
}