react-dockable-desktop 6.0.0 → 6.1.0
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 +2 -2
- package/dist/index.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +121 -8
- package/dist/index.d.ts +121 -8
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/styles.css +12 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -3776,6 +3776,9 @@ html.rdd-no-animations [class*="rdd-"]::after {
|
|
|
3776
3776
|
}
|
|
3777
3777
|
|
|
3778
3778
|
.rdd-panel-toolbar-search__dropdown {
|
|
3779
|
+
/* Shifts with --rdd-z-base like every other chrome overlay; above the context menu
|
|
3780
|
+
(+8500/+8501) since it's opened from a toolbar that can sit under one. */
|
|
3781
|
+
z-index: calc(var(--rdd-z-base, 1000) + 8502);
|
|
3779
3782
|
background: var(--rdd-panel-float-bg, rgba(22, 24, 34, 0.95));
|
|
3780
3783
|
border: 1px solid var(--rdd-panel-float-border, rgba(255, 255, 255, 0.1));
|
|
3781
3784
|
border-radius: var(--rdd-panel-float-radius, 8px);
|
|
@@ -3925,6 +3928,15 @@ html.rdd-no-animations [class*="rdd-"]::after {
|
|
|
3925
3928
|
}
|
|
3926
3929
|
|
|
3927
3930
|
/* ── Docking drop zones (visible while dragging a floating window) ── */
|
|
3931
|
+
/* Armed for resize-to-stretch: the clamps already hold the widget exactly where a stretched axis
|
|
3932
|
+
would sit, so releasing now locks it there. The outline is the cue that it *will* lock — without
|
|
3933
|
+
it the gesture is invisible and undiscoverable. Same dashed accent vocabulary as the drop zones
|
|
3934
|
+
below. */
|
|
3935
|
+
.rdd-panel-float--snapping {
|
|
3936
|
+
outline: 2px dashed var(--rdd-accent-color, #38bdf8);
|
|
3937
|
+
outline-offset: -2px;
|
|
3938
|
+
}
|
|
3939
|
+
|
|
3928
3940
|
.rdd-panel-float-dropzone {
|
|
3929
3941
|
position: absolute;
|
|
3930
3942
|
width: 80px;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-dockable-desktop",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.1.0",
|
|
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",
|