Skip to content

Bump react-split-pane from 0.1.92 to 3.2.0#2685

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/react-split-pane-3.2.0
Open

Bump react-split-pane from 0.1.92 to 3.2.0#2685
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/react-split-pane-3.2.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Feb 27, 2026

Bumps react-split-pane from 0.1.92 to 3.2.0.

Release notes

Sourced from react-split-pane's releases.

v3.2.0

What's New

pointerType in ResizeEvent (#880)

You can now access event.pointerType in resize callbacks to differentiate between mouse, touch, and pen input:

<SplitPane
  onResizeStart={(event) => {
    console.log(event.pointerType); // 'mouse', 'touch', or 'pen'
  }}
  onResize={(sizes, event) => {
    if (event.pointerType === 'touch') {
      // Handle touch-specific logic
    }
  }}
>

Thanks to @​delijah for the suggestion!

Full Changelog

  • feat: expose pointerType in ResizeEvent (#880)

v3.1.0

What's New

Pointer Events API (#878)

Replaced separate mouse and touch event handlers with the unified Pointer Events API for better drag UX.

Benefits:

  • 🎯 Better cursor control - Pointer capture prevents cursor blinking during drag
  • 🔧 Simpler code - Single event handler instead of separate mouse/touch logic
  • 📱 Unified input - Handles mouse, touch, and pen input consistently
  • Multi-touch safe - Ignores events from non-captured pointers

Backwards Compatibility

Custom dividers using the old props (onMouseDown, onTouchStart, onTouchEnd) will continue to work. These props are now deprecated and delegate to onPointerDown internally.

Migration (optional):

- onMouseDown={handler}
- onTouchStart={handler}
- onTouchEnd={handler}
+ onPointerDown={handler}

... (truncated)

Changelog

Sourced from react-split-pane's changelog.

Changelog

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

3.0.0 (2025-12-22)

⚠ BREAKING CHANGES

  • Complete rewrite with modern React patterns
  • Children must now be wrapped in <Pane> components
  • split prop renamed to direction (and meanings swapped to align with CSS flex)
  • Size constraints (minSize, maxSize, defaultSize) moved to <Pane> component
  • Callback props renamed: onDragStartedonResizeStart, onChangeonResize, onDragFinishedonResizeEnd
  • Callback signatures changed to include event metadata
  • primary prop removed (use controlled mode instead)
  • allowResize renamed to resizable
  • CSS class names changed: SplitPanesplit-pane, Resizersplit-pane-divider
  • IE11 no longer supported

Features

  • Hooks-based architecture: Complete rewrite using modern React hooks
  • TypeScript: Full TypeScript support with strict mode
  • Accessibility: Full keyboard navigation (arrow keys, Home, End) and ARIA attributes
  • Touch support: Built-in touch event handling for mobile devices
  • Snap points: Optional snap-to positions during resize
  • Multiple panes: Native support for 2+ panes without nesting
  • Persistence hook: usePersistence hook for localStorage/sessionStorage
  • Custom dividers: Pass custom divider components via divider prop
  • RAF-throttled: Smooth resize performance with requestAnimationFrame throttling
  • Smaller bundle: < 5KB gzipped

Migration

See MIGRATION.md for detailed upgrade instructions from v0.1.x or v2.x.

Commits
  • 859c269 chore: bump version to 3.2.0
  • 4033c19 feat: expose pointerType in ResizeEvent (#880)
  • 6cf8d8b feat: add backwards compatible deprecated handlers
  • ba5b2ca chore: bump version to 4.0.0
  • c8452c8 feat: replace mouse/touch events with pointer events (#879)
  • 6200524 fix: formatting of the header in main component
  • 95d04fb Merge pull request #876 from tomkp/feature/show-version-in-examples
  • a6bc973 feat: show version in examples header
  • bc98e30 chore: bump version to 3.0.6
  • 3d35850 fix: prevent resize observer feedback loop in vertical mode (#875)
  • Additional commits viewable in compare view

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps [react-split-pane](https://github.com/tomkp/react-split-pane) from 0.1.92 to 3.2.0.
- [Release notes](https://github.com/tomkp/react-split-pane/releases)
- [Changelog](https://github.com/tomkp/react-split-pane/blob/master/CHANGELOG.md)
- [Commits](tomkp/react-split-pane@v0.1.92...v3.2.0)

---
updated-dependencies:
- dependency-name: react-split-pane
  dependency-version: 3.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Feb 27, 2026
@netlify
Copy link
Copy Markdown

netlify Bot commented Feb 27, 2026

Deploy Preview for relational-playground failed.

Name Link
🔨 Latest commit bd4e1fa
🔍 Latest deploy log https://app.netlify.com/projects/relational-playground/deploys/69a16daffbf79c00080e9e46

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants