dockview-vue 2.0.0 → 2.1.0

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.
@@ -169,6 +169,7 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
169
169
  disableDnd: { type: Boolean },
170
170
  className: {},
171
171
  gap: {},
172
+ noPanelsOverlay: {},
172
173
  watermarkComponent: {},
173
174
  defaultTabComponent: {},
174
175
  rightHeaderActionsComponent: {},
@@ -168,6 +168,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
168
168
  disableDnd: { type: Boolean },
169
169
  className: {},
170
170
  gap: {},
171
+ noPanelsOverlay: {},
171
172
  watermarkComponent: {},
172
173
  defaultTabComponent: {},
173
174
  rightHeaderActionsComponent: {},
@@ -169,6 +169,7 @@ var __publicField = (obj, key, value) => {
169
169
  disableDnd: { type: Boolean },
170
170
  className: {},
171
171
  gap: {},
172
+ noPanelsOverlay: {},
172
173
  watermarkComponent: {},
173
174
  defaultTabComponent: {},
174
175
  rightHeaderActionsComponent: {},
@@ -356,9 +356,6 @@
356
356
  .dv-groupview:focus {
357
357
  outline: none;
358
358
  }
359
- .dv-groupview.dv-empty > .dv-tabs-and-actions-container {
360
- display: none;
361
- }
362
359
  .dv-groupview > .dv-content-container {
363
360
  flex-grow: 1;
364
361
  min-height: 0;
@@ -399,6 +396,9 @@
399
396
  border: 1px solid var(--dv-tab-divider-color);
400
397
  box-shadow: var(--dv-floating-box-shadow);
401
398
  }
399
+ .dv-resize-container.dv-hidden {
400
+ display: none;
401
+ }
402
402
  .dv-resize-container.dv-resize-container-dragging {
403
403
  opacity: 0.5;
404
404
  }
@@ -818,34 +818,5 @@
818
818
  }
819
819
  .dv-watermark {
820
820
  display: flex;
821
- width: 100%;
822
- }
823
- .dv-watermark.dv-has-actions .dv-watermark-title .dv-actions-container {
824
- display: none;
825
- }
826
- .dv-watermark .dv-watermark-title {
827
- height: 35px;
828
- width: 100%;
829
- display: flex;
830
- }
831
- .dv-watermark .dv-watermark-content {
832
- flex-grow: 1;
833
- }
834
- .dv-watermark .dv-actions-container {
835
- display: flex;
836
- align-items: center;
837
- padding: 0px 8px;
838
- }
839
- .dv-watermark .dv-actions-container .dv-close-action {
840
- padding: 4px;
841
- display: flex;
842
- align-items: center;
843
- justify-content: center;
844
- box-sizing: border-box;
845
- cursor: pointer;
846
- color: var(--dv-activegroup-hiddenpanel-tab-color);
847
- }
848
- .dv-watermark .dv-actions-container .dv-close-action:hover {
849
- border-radius: 2px;
850
- background-color: var(--dv-icon-hover-background-color);
821
+ height: 100%;
851
822
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dockview-vue",
3
- "version": "2.0.0",
3
+ "version": "2.1.0",
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": "^2.0.0"
55
+ "dockview-core": "^2.1.0"
56
56
  }
57
57
  }