mirror of
https://github.com/mathuo/dockview
synced 2025-02-13 11:55:45 +00:00
feat: maximized groups
This commit is contained in:
parent
c195fa19bf
commit
bd2d8d7bf6
@ -11,35 +11,6 @@
|
|||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dv-fullscreen {
|
|
||||||
z-index: 9;
|
|
||||||
transition: all 0.25s ease-in-out;
|
|
||||||
// outline: 1px solid red;
|
|
||||||
position: absolute;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dv-fullscreen-animate {
|
|
||||||
top: 0px !important;
|
|
||||||
left: 0px !important;
|
|
||||||
width: 100% !important;
|
|
||||||
height: 100% !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dv-fullscreen-close-button {
|
|
||||||
position: absolute;
|
|
||||||
bottom: 0px;
|
|
||||||
right: 0px;
|
|
||||||
z-index: 999;
|
|
||||||
width: 20px;
|
|
||||||
height: 20px;
|
|
||||||
color: white;
|
|
||||||
background-color: black;
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.dv-gready-render-container {
|
.dv-gready-render-container {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
@ -121,7 +121,6 @@ export class LeafNode implements IView {
|
|||||||
public setVisible(visible: boolean): void {
|
public setVisible(visible: boolean): void {
|
||||||
if (this.view.setVisible) {
|
if (this.view.setVisible) {
|
||||||
this.view.setVisible(visible);
|
this.view.setVisible(visible);
|
||||||
// this._onDidChange.fire({});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -391,6 +391,13 @@ props.containerApi.addPopoutGroup(props.api.group);
|
|||||||
|
|
||||||
<DockviewPopoutGroup/>
|
<DockviewPopoutGroup/>
|
||||||
|
|
||||||
|
## Maximized Groups
|
||||||
|
|
||||||
|
To maximize a group you can all
|
||||||
|
|
||||||
|
```tsx
|
||||||
|
api.maxmimizeGroup(group);
|
||||||
|
```
|
||||||
|
|
||||||
## Panels
|
## Panels
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user