Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.9.0 = 2025-09-22

* **Added:** Pin/unpin feature for side (left/right) and bottom panels. Users can now keep panels permanently visible ("pinned") or allow them to collapse automatically ("unpinned"), similar to behavior in modern IDEs and dashboard layouts.
* **Enhanced:** Improved layout flexibility by allowing users to control panel visibility behavior, helping to streamline workflows and reduce visual clutter in complex layouts.

## 0.8.17 - 2025-05-03

* **Fixed:** Issues with tab redraw and scroll when page is scrolled down (corrects fix for [#488])
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "flexlayout-react",
"version": "0.8.17",
"version": "0.9.0",
"description": "A multi-tab docking layout manager",
"author": "Caplin Systems Ltd",
"repository": {
Expand Down Expand Up @@ -88,7 +88,7 @@
"react": "^19.1.0",
"react-chartjs-2": "^5.3.0",
"react-dom": "^19.1.0",
"react-scripts": "5.0.1",
"react-scripts": "^5.0.1",
"rimraf": "^6.0.1",
"sass": "^1.86.3",
"styled-components": "^6.1.17",
Expand Down
3 changes: 2 additions & 1 deletion pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
onlyBuiltDependencies:
- '@parcel/watcher'
- core-js
- core-js-pure
- esbuild
2 changes: 2 additions & 0 deletions src/I18nLabel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ export enum I18nLabel {
Maximize = "Maximize tab set",
Restore = "Restore tab set",
Popout_Tab = "Popout selected tab",
Pin_Tab = "Pin tab",
Unpin_Tab = "Unpin tab",
Overflow_Menu_Tooltip = "Hidden tabs",
Error_rendering_component = "Error rendering component",
Error_rendering_component_retry = "Retry",
Expand Down
Loading