@robuust-digital/vue-components 2.6.6 → 2.6.7
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/CHANGELOG.md +10 -0
- package/dist/dialogs/drawer.css +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## 2.6.7 (13-05-2026)
|
|
2
|
+
|
|
3
|
+
### Added
|
|
4
|
+
|
|
5
|
+
* `Drawer`: Added `--rvc-drawer-panel-bg-color` variable on `.rvc-drawer-panel-inner` so the panel background covers the scroll container, preventing transparent gaps during elastic/overflow scrolling. Defaults to `var(--rvc-drawer-content-bg-color)` for backwards compatibility.
|
|
6
|
+
|
|
7
|
+
### Updated
|
|
8
|
+
|
|
9
|
+
* `Drawer` docs: Documented the new `--rvc-drawer-panel-bg-color` variable
|
|
10
|
+
|
|
1
11
|
## 2.6.6 (06-05-2026)
|
|
2
12
|
|
|
3
13
|
### Fixed
|
package/dist/dialogs/drawer.css
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
--rvc-drawer-close-color: var(--rvc-dialog-close-color);
|
|
15
15
|
--rvc-drawer-close-color-hover: var(--rvc-dialog-close-color-hover);
|
|
16
16
|
--rvc-drawer-content-bg-color: var(--rvc-dialog-content-bg-color);
|
|
17
|
+
--rvc-drawer-panel-bg-color: var(--rvc-drawer-content-bg-color);
|
|
17
18
|
--rvc-drawer-footer-bg-color: var(--rvc-dialog-footer-bg-color);
|
|
18
19
|
--rvc-drawer-footer-gap: var(--rvc-dialog-footer-gap);
|
|
19
20
|
--rvc-drawer-footer-justify-content: space-between;
|
|
@@ -71,6 +72,7 @@
|
|
|
71
72
|
display: flex;
|
|
72
73
|
flex-direction: column;
|
|
73
74
|
height: 100%;
|
|
75
|
+
background-color: var(--rvc-drawer-panel-bg-color);
|
|
74
76
|
box-shadow: 0 20px 25px -5px rgb(0 0 0 / 10%), 0 8px 10px -6px rgb(0 0 0 / 10%);
|
|
75
77
|
}
|
|
76
78
|
|