dockview-vue 1.14.0 → 1.14.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  <div align="center">
2
2
  <h1>dockview</h1>
3
3
 
4
- <p>Zero dependency layout manager supporting tabs, groups, grids and splitviews with ReactJS support written in TypeScript</p>
4
+ <p>Zero dependency layout manager supporting tabs, groups, grids and splitviews. Supports React, Vue and Vanilla TypeScript</p>
5
5
 
6
6
  </div>
7
7
 
@@ -16,6 +16,8 @@
16
16
 
17
17
  ##
18
18
 
19
+ ![](packages/docs/static/img/splashscreen.gif)
20
+
19
21
  Please see the website: https://dockview.dev
20
22
 
21
23
  ## Features
@@ -34,23 +36,3 @@ Please see the website: https://dockview.dev
34
36
  - Security at mind - verifed publishing and builds through GitHub Actions
35
37
 
36
38
  Want to verify our builds? Go [here](https://www.npmjs.com/package/dockview#Provenance).
37
-
38
- ## Quick start
39
-
40
- Dockview has a peer dependency on `react >= 16.8.0` and `react-dom >= 16.8.0`. You can install dockview from [npm](https://www.npmjs.com/package/dockview).
41
-
42
- ```
43
- npm install --save dockview
44
- ```
45
-
46
- Within your project you must import or reference the stylesheet at `dockview/dist/styles/dockview.css` and attach a theme.
47
-
48
- ```css
49
- @import '~dockview/dist/styles/dockview.css';
50
- ```
51
-
52
- You should also attach a dockview theme to an element containing your components. For example:
53
-
54
- ```html
55
- <body classname="dockview-theme-dark"></body>
56
- ```
@@ -438,16 +438,16 @@
438
438
  .dv-dockview .dv-overlay-render-container {
439
439
  position: relative;
440
440
  }
441
- .dv-dockview .split-view-container.horizontal > .view-container > .view:not(:last-child) {
441
+ .dv-dockview .split-view-container.horizontal > .view-container > .view:not(:last-child) .groupview {
442
442
  border-right: var(--dv-group-gap-size) solid transparent;
443
443
  }
444
- .dv-dockview .split-view-container.horizontal > .view-container > .view:not(:first-child) {
444
+ .dv-dockview .split-view-container.horizontal > .view-container > .view:not(:first-child) .groupview {
445
445
  border-left: var(--dv-group-gap-size) solid transparent;
446
446
  }
447
- .dv-dockview .split-view-container.vertical > .view-container > .view:not(:last-child) {
447
+ .dv-dockview .split-view-container.vertical > .view-container > .view:not(:last-child) .groupview {
448
448
  border-bottom: var(--dv-group-gap-size) solid transparent;
449
449
  }
450
- .dv-dockview .split-view-container.vertical > .view-container > .view:not(:first-child) {
450
+ .dv-dockview .split-view-container.vertical > .view-container > .view:not(:first-child) .groupview {
451
451
  border-top: var(--dv-group-gap-size) solid transparent;
452
452
  }
453
453
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dockview-vue",
3
- "version": "1.14.0",
3
+ "version": "1.14.1",
4
4
  "description": "Zero dependency layout manager supporting tabs, grids and splitviews",
5
5
  "keywords": [
6
6
  "splitview",
@@ -52,6 +52,6 @@
52
52
  "test:cov": "cross-env ../../node_modules/.bin/jest --selectProjects dockview-vue --coverage"
53
53
  },
54
54
  "dependencies": {
55
- "dockview-core": "^1.14.0"
55
+ "dockview-core": "^1.14.1"
56
56
  }
57
57
  }