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 +1 -1
- package/dist/styles.css +5 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# React Dockable Desktop
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/react-dockable-desktop)
|
|
4
4
|
[](https://www.typescriptlang.org/)
|
|
5
5
|
[](#touch--mobile)
|
|
6
6
|
[](#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.
|
|
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",
|