react-dockable-desktop 5.3.0 → 5.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # React Dockable Desktop
2
2
 
3
- [![npm version](https://img.shields.io/badge/npm-v5.3.0-blue.svg)](https://www.npmjs.com/package/react-dockable-desktop)
3
+ [![npm version](https://img.shields.io/badge/npm-v5.3.1-blue.svg)](https://www.npmjs.com/package/react-dockable-desktop)
4
4
  [![TypeScript](https://img.shields.io/badge/TypeScript-first-3178c6.svg)](https://www.typescriptlang.org/)
5
5
  [![Touch Ready](https://img.shields.io/badge/touch-iPad%20%7C%20Android-success.svg)](#touch--mobile)
6
6
  [![license](https://img.shields.io/badge/license-MIT-green.svg)](#license)
package/dist/styles.css CHANGED
@@ -1908,6 +1908,10 @@ body.rdd-dragging-active {
1908
1908
  flex-direction: column;
1909
1909
  align-items: center;
1910
1910
  gap: 8px;
1911
+ /* Floor matching .rdd-sidebar-tab-btn's own intrinsic 44px — without it, a lone active tab
1912
+ (width: var(--tab-btn-active-width, 100%)) has no stable sibling to size this shrink-to-fit
1913
+ container against, so its 100% resolves against nothing and collapses to its icon's size. */
1914
+ min-width: 44px;
1911
1915
  padding-top: var(--rdd-sidebar-header-area-padding-top, 8px);
1912
1916
  padding-bottom: var(--rdd-sidebar-header-area-padding-bottom, 8px);
1913
1917
  }
@@ -1919,6 +1923,7 @@ body.rdd-dragging-active {
1919
1923
  flex-direction: column;
1920
1924
  align-items: center;
1921
1925
  gap: 8px;
1926
+ min-width: 44px;
1922
1927
  padding-top: var(--rdd-sidebar-footer-area-padding-top, 8px);
1923
1928
  padding-bottom: var(--rdd-sidebar-footer-area-padding-bottom, 8px);
1924
1929
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-dockable-desktop",
3
- "version": "5.3.0",
3
+ "version": "5.3.1",
4
4
  "description": "A premium, state-of-the-art window manager and dockable layout engine for React. Supports fluid grid splits, tabbed groups, floating resizable windows, zero-unmount state preservation, context menus, and internationalization.",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.js",