Skip to content

mathuo/dockview

This branch is 468 commits behind master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

157ea8a · Feb 16, 2024
Jan 17, 2024
Jan 2, 2024
Oct 4, 2021
Feb 16, 2024
Jan 5, 2024
Oct 4, 2021
Nov 15, 2020
Oct 4, 2021
Oct 1, 2023
Sep 20, 2020
Sep 20, 2020
Mar 14, 2021
Jan 15, 2024
Oct 22, 2023
Oct 22, 2023
Jan 23, 2024
Jan 3, 2024
Mar 13, 2023
Apr 16, 2023
Apr 3, 2023
May 16, 2023
Oct 22, 2023
May 16, 2023
May 16, 2023
Sep 24, 2020
Jan 27, 2024

Repository files navigation

dockview

Zero dependency layout manager supporting tabs, groups, grids and splitviews with ReactJS support written in TypeScript


npm version npm CI Build Coverage Quality Gate Status Bundle Phobia

Please see the website: https://dockview.dev

Features

  • Serialization / deserialization with full layout management
  • Support for split-views, grid-views and 'dockable' views
  • Themeable and customizable
  • Tab and Group docking / Drag n' Drop
  • Popout Windows
  • Floating Groups
  • Extensive API
  • Supports Shadow DOMs
  • High test coverage
  • Documentation website with live examples
  • Transparent builds and Code Analysis
  • Security at mind - verifed publishing and builds through GitHub Actions

Want to verify our builds? Go here.

Quick start

Dockview has a peer dependency on react >= 16.8.0 and react-dom >= 16.8.0. You can install dockview from npm.

npm install --save dockview

Within your project you must import or reference the stylesheet at dockview/dist/styles/dockview.css and attach a theme.

@import '~dockview/dist/styles/dockview.css';

You should also attach a dockview theme to an element containing your components. For example:

<body classname="dockview-theme-dark"></body>