splitter icon indicating copy to clipboard operation
splitter copied to clipboard

React component for building split views like in VS Code

Results 12 splitter issues
Sort by recently updated
recently updated
newest added

Something funny is going on where the total percentage of newSizes in onResizeFinished is more than 100%.

Is there any event that indicates the dom is ready? I need to use scrollIntoView to go bottom of the page when the page refresh.

**Tried this package with my project which is RTL-based (Arabic Language) and the split direction is revesred.**

Hi ### Use Case I'm using the Splitter to show multiple devices stacked next to each other in a resizable fashion. I'm passing initialSizes to the Splitter to persist the...

Tried both using chrome dev tools to emulate a mobile environment as well as using the sandbox demo url from my android phone also using chrome. Dragging w/touch doesn't work.

I am using this library in react with canvas. I need to update canvas width when resizing windows using this package. But it provides on **resize start** and **resize finish**...

enhancement

Consider the following example: ```tsx import Splitter from "@devbookhq/splitter"; import { useState, useCallback } from "react"; function MyComponent() { const [count, setCount] = useState(0); const handleClick = useCallback(() => setCount(count...

bug

Is it possible to run `testing-library` tests against components which use the splitter? For example, consider the following test: ```javascript import { render, screen } from "@testing-library/react"; import Splitter, {...

enhancement

As far as I can tell, the panels can only be resized by using a pointer device, like a mouse. It would be awesome if the panels could also be...

feature

Steps to reproduce: 1) Open sandbox: https://codesandbox.io/s/splitter-resize-mfm09l 2) Resize the window to small. MinWidth is only respected in case of resize by mouse.