Please reference docs @ dockview.dev.
๐ Miscsโ
- Bug: Multiple classNames in single string not accepted #684
Please reference docs @ dockview.dev.
Please reference docs @ dockview.dev.
createDockview
, createGridview
, createPaneview
and createSplitview
which should be used rather than DockviewComponent
, GridviewComponent
, SplitviewComponent
, PaneviewComponent
always
rendered panels #679gap
size is defined #682 #667DockviewComponent
, GridviewComponent
, SplitviewComponent
, PaneviewComponent
constructor signature changes from (options)
to (parentElement, options)
removing parentElement
from options
.Please reference docs @ dockview.dev.
Please reference docs @ dockview.dev.
force=false
was preventing layout calls #654Please reference docs @ dockview.dev.
Please reference docs @ dockview.dev.
Bug: fix duplicate group added when adding group with absolute position #596
Bug: Adjust onDidLayoutChange behaviour #597
onDidLayoutChange
is an aggregation of events that constitute a layout change. Previously these events were aggregated and the events were then fired once through a setTimeout(..., 0)
approach. This has been altered to fire on a queueMicrotask
event and will only subscribe to events that happen after the event is subscribed to, previously you may have recieved events yet to fire on the setTimeout
function but within the same event-loop cycle which was a bug.