Split Pane for Svelte
This is a splitter plugin for Svelte Application.
Easy to use to separate panes horizontally / vertically.

Example
- GitHub Pages Example: http://www.readiz.com/svelte-split-pane/
- Svelte REPL Example: https://svelte.dev/repl/5ab84358dd8b46ad9474884f2359ff9b?version=3
Usage
Just use slots to place contents.
``
html
H Splite Pane Default
{
console.log('HSplitPane Updated!');
}}>
Left Pane
Right Pane
V Splite Pane Default
{
console.log('VSplitPane Updated!');
}}>
Top Pane
Down Pane
``
Optional Parameters
- updateCallback: this is called when splitting is finished.
- [left|right|top|down]PaneSize: Specify the Pane size. (Default: 50%)
- min[left|right|top|down]PaneSize: Specify minimum value of the each Pane.
License
- MIT
- PR & Suggestions are welcome!