You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

@marsio/vue-split-pane

Package Overview
Dependencies
Maintainers
0
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@marsio/vue-split-pane

A Vue 3 component for creating resizable split panes. This component allows you to easily create layouts with resizable panels, either horizontally or vertically. It supports various features such as initial size, minimum and maximum size constraints, and

1.0.0
latest
Source
npmnpm
Version published
Weekly downloads
4
-20%
Maintainers
0
Weekly downloads
 
Created
Source

Vue Split Pane

A Vue 3 component for creating resizable split panes. This component allows you to easily create layouts with resizable panels, either horizontally or vertically. It supports various features such as initial size, minimum and maximum size constraints, and nested panes.

See the example and associated code in ExampleLayout

[Demo | Changelog | View Example]

Quick Start

This package has two major exports:

To quickly start using @marsio/vue-split-pane, follow the steps below:

Step 1: Installation

First, you need to install the package. Run the following command in your project directory:

npm install @marsio/vue-split-pane

or if you prefer using Yarn:

yarn add @marsio/vue-split-pane

or if you prefer using Pnpm:

pnpm add @marsio/vue-split-pane

Step 2: Importing

In your Vue component, import @marsio/vue-split-pane:

import SplitPane, { Pane } from '@marsio/vue-split-pane';

Step 3: Using @marsio/vue-split-pane

Now, you can use the SplitPane component in your Vue application

<template>
  <SplitPane>
    <Pane>This is a Pane</Pane>
    <Pane>This is a Pane</Pane>
  </SplitPane>     
</template>

<script>
import SplitPane, { Pane } from '@marsio/vue-split-pane';

export default {
  components: {
    SplitPane,
    Pane
  }
}
</script>

Or Hybrid

<template>
  <SplitPane split="vertical">
    <Pane initialSize="200px">You can use a Pane component</Pane>
    <div>or you can use a plain old div</div>
    <Pane initialSize="25%" minSize="10%" maxSize="500px">Using a Pane allows you to specify any constraints directly</Pane>
  </SplitPane>    
</template>

<script>
import SplitPane, { Pane } from '@marsio/vue-split-pane';

export default {
  components: {
    SplitPane,
    Pane
  }
}
</script>

Or Nested

<template>
   <SplitPane split="vertical">
    <Pane/>
    <Pane/>
    <SplitPane split="horizontal">
      <Pane/>
      <Pane/>
      <Pane/>
    </SplitPane>
    <Pane/>
  </SplitPane>  
</template>

<script>
import SplitPane, { Pane } from '@marsio/vue-split-pane';

export default {
  components: {
    SplitPane,
    Pane
  }
}
</script>

Step 4: Enjoy!

That's it! You've successfully integrated split pane functionality into your Vue application. Customize it further according to your needs.

<SplitPane> Props:

// Determines if the pane is resizable. Default is true.
allowResize: { type: Boolean, default: true },

// Size of the resizer in pixels. Default is 1.
resizerSize: {
  type: Number,
  default: 1
},

// Direction of the split. Can be either 'vertical' or 'horizontal'. Default is 'vertical'.
split: {
  type: String as PropType<"vertical" | "horizontal">,
  default: 'vertical'
},

// Step size for resizing in pixels. Default is 1.
step: { type: Number, default: 1 }

<Pane> Props:

// The index of the pane. Typically used to identify the pane in a list.
index: {
  type: Number as PropType<number>
},

// Custom CSS class for the pane.
class: {
  type: String as PropType<string>
},

// Direction of the split. Can be either 'vertical' or 'horizontal'.
split: {
  type: String as PropType<'vertical' | 'horizontal'>
},

// Initial size of the pane. Can be a string (e.g., '50%') or a number (e.g., 200).
initialSize: {
  type: [String, Number] as PropType<string | number>,
  default: '1'
},

// Minimum size of the pane. Can be a string (e.g., '10%') or a number (e.g., 100px).
minSize: {
  type: String as PropType<string>,
  default: '0'
},

// Maximum size of the pane. Can be a string (e.g., '90%') or a number (e.g., 500px).
maxSize: {
  type: String as PropType<string>,
  default: '100%'
},

// Current size of the pane. Can be a string (e.g., '50%') or a number (e.g., 200).
size: {
  type: String as PropType<string>
},

// Reference to the inner element of the pane. Typically used for DOM manipulation.
innerRef: {
  type: Function,
  default: () => () => {}
},

// Size of the resizers in pixels. Default is 1.
resizersSize: {
  type: Number,
  default: 1
}

Modern browsers.

Edge
Edge
Firefox
Firefox
Chrome
Chrome
Safari
Safari
Opera
Opera
Edgelast 2 versionslast 2 versionslast 2 versionslast 2 versions

Changelog.

Detailed changes for each release are documented in the release notes.

Release checklist

  • Update CHANGELOG
  • pnpm release
  • pnpm publish

License

MIT

Keywords

vue3

FAQs

Package last updated on 18 Aug 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts