From bf35b265dba085ba2a3883c464e38bf1547afae0 Mon Sep 17 00:00:00 2001 From: mathuo <6710312+mathuo@users.noreply.github.com> Date: Sun, 11 Aug 2024 21:47:42 +0100 Subject: [PATCH] chore: 1.16.0 docs --- .../docs/blog/2024-08-11-dockview-1.16.0.md | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 packages/docs/blog/2024-08-11-dockview-1.16.0.md diff --git a/packages/docs/blog/2024-08-11-dockview-1.16.0.md b/packages/docs/blog/2024-08-11-dockview-1.16.0.md new file mode 100644 index 000000000..e55ec0658 --- /dev/null +++ b/packages/docs/blog/2024-08-11-dockview-1.16.0.md @@ -0,0 +1,26 @@ +--- +slug: dockview-1.16.0-release +title: Dockview 1.16.0 +tags: [release] +--- + +# Release Notes + +Please reference docs @ [dockview.dev](https://dockview.dev). + +## 🚀 Features + +- Vanilla TypeScript Support [#652](https://github.com/mathuo/dockview/pull/652) + - Expose `createDockview`, `createGridview`, `createPaneview` and `createSplitview` which should be used rather than `DockviewComponent`, `GridviewComponent`, `SplitviewComponent`, `PaneviewComponent` + +## 🛠 Miscs + +- Bug: Floating z-index positions for `always` rendered panels [#679](https://github.com/mathuo/dockview/issues/679) +- Bug: Resize handle position when `gap` size is defined [#682](https://github.com/mathuo/dockview/pull/682) [#667](https://github.com/mathuo/dockview/pull/667) +- Bug: Popout group incorrectly disposed when single remaining panel is removed [#662](https://github.com/mathuo/dockview/pull/662) +- Documentation [#678](https://github.com/mathuo/dockview/pull/678) + +## 🔥 Breaking changes + +- Vanilla TypeScript Support [#652](https://github.com/mathuo/dockview/pull/652) + - `DockviewComponent`, `GridviewComponent`, `SplitviewComponent`, `PaneviewComponent` constructor signature changes from `(options)` to `(parentElement, options)` removing `parentElement` from `options`.