From 331be77b0875e1bf3d25f30d124e9856a536043f Mon Sep 17 00:00:00 2001 From: mathuo <6710312+mathuo@users.noreply.github.com> Date: Sun, 17 Mar 2024 14:22:51 +0000 Subject: [PATCH] chore: release notes 1.11.0 --- .../docs/blog/2024-03-17-dockview-1.11.0.md | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 packages/docs/blog/2024-03-17-dockview-1.11.0.md diff --git a/packages/docs/blog/2024-03-17-dockview-1.11.0.md b/packages/docs/blog/2024-03-17-dockview-1.11.0.md new file mode 100644 index 000000000..b78aee43a --- /dev/null +++ b/packages/docs/blog/2024-03-17-dockview-1.11.0.md @@ -0,0 +1,28 @@ +--- +slug: dockview-1.11.0-release +title: Dockview 1.11.0 +tags: [release] +--- + +# Release Notes + +Please reference docs @ [dockview.dev](https://dockview.dev). + +## 🛠 Miscs + +- Adjust `React` imports [#556](https://github.com/mathuo/dockview/pull/556) + + - Rename `import * as React from 'react'` to `import React from 'react'` + - Rename `import * as ReactDOM from 'react-dom'` to `import ReactDOM from 'react-dom'` + - This is preperation work for supporting multiple framworks (Vue, Angular etc...) + +- Only export CSS from `dockview-core` [#553](https://github.com/mathuo/dockview/pull/553) + - All required CSS is now found in `dockview-core` only. `dockview` (React) specific CSS has been removed and made compatible with CSS in `dockview-core`. This is preperation work for supporting multiple framworks (Vue, Angular etc...) + - For compatibility reasons `dockview-core` CSS continues to be re-exported through `dockview`. + - Class name changes as follows: + - `tab-action` to `dv-default-tab-action` + - `default-tab` to `dv-default-tab` + - `tab-content` to `dv-default-tab-content` + - `dockview-react-tab` to `dv-default-tab` + - `dockview-react-tab-title` to `dv-default-tab-content` + - `dv-react-tab-close-btn` to `dv-default-tab-action`