Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gfazioli/mantine-split-pane
A React component that manages split panes allows users to divide and resize content areas within a layout efficiently.
https://github.com/gfazioli/mantine-split-pane
mantine pane react split splitpane typescript ui
Last synced: 3 months ago
JSON representation
A React component that manages split panes allows users to divide and resize content areas within a layout efficiently.
- Host: GitHub
- URL: https://github.com/gfazioli/mantine-split-pane
- Owner: gfazioli
- License: mit
- Created: 2024-02-22T13:29:59.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-10-24T10:02:33.000Z (3 months ago)
- Last Synced: 2024-10-25T05:05:47.847Z (3 months ago)
- Topics: mantine, pane, react, split, splitpane, typescript, ui
- Language: TypeScript
- Homepage: https://gfazioli.github.io/mantine-split-pane/
- Size: 7.21 MB
- Stars: 10
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Mantine Split pane Component
---
## Overview
This component is created on top of the [Mantine](https://mantine.dev/) library.
You can find more components on the [Mantine Extensions Hub](https://mantine-extensions.vercel.app/) library.Utilizing Mantine UI, enables users to create a flexible layout with resizable split panes. It supports both vertical and horizontal splitting, allowing the arrangement of content in various configurations. The component seamlessly handles nested split panes, enabling complex layouts with ease.
With intuitive resizing functionality, users can adjust the size of each pane effortlessly. This component provides a responsive and user-friendly interface for organizing and displaying content in a way that best suits the application's needs.## Installation
```sh
npm install @gfazioli/mantine-split-pane
```
or```sh
yarn add @gfazioli/mantine-split-pane
```After installation import package styles at the root of your application:
```tsx
import '@gfazioli/mantine-split-pane/styles.css';
```## Usage
```tsx
import { Split } from '@gfazioli/mantine-split-pane';
import { Paper } from '@mantine/core';function Demo() {
return (
Pane 1
Pane 2
);
}
```