@robuust-digital/vue-components 2.4.0-beta.10 → 2.4.0-beta.12
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 +11 -0
- package/dist/core/table.css +4 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
## 2.3.5 (09-04-2026)
|
|
2
|
+
|
|
3
|
+
### Added
|
|
4
|
+
|
|
5
|
+
* `DataTable`: Added `--rvc-table-head-color` CSS variable to customize header text color
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
* `DataTable`: Increased sort icon hover hint visibility by changing `.rvc-table-sort-icon-invisible` opacity from `0.3` to `0.5`
|
|
10
|
+
* `Playground`: Updated `richtTextEditorFilledValue` to use `ref(...)` for reactive RichTextEditor demo state
|
|
11
|
+
|
|
1
12
|
## 2.3.4 (25-03-2026)
|
|
2
13
|
|
|
3
14
|
### Fixed
|
package/dist/core/table.css
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
--rvc-table-border-style: var(--rvc-base-border-style);
|
|
6
6
|
--rvc-table-border-width: var(--rvc-base-border-width);
|
|
7
7
|
--rvc-table-head-bg-color: var(--color-slate-200);
|
|
8
|
+
--rvc-table-head-color: inherit;
|
|
8
9
|
--rvc-table-bg-color: var(--color-slate-50);
|
|
9
10
|
--rvc-table-font-size: var(--text-sm);
|
|
10
11
|
--rvc-table-head-font-size: var(--text-sm);
|
|
@@ -62,6 +63,7 @@
|
|
|
62
63
|
|
|
63
64
|
th {
|
|
64
65
|
padding-block: var(--rvc-table-padding-y);
|
|
66
|
+
color: var(--rvc-table-head-color);
|
|
65
67
|
font-size: var(--rvc-table-head-font-size);
|
|
66
68
|
font-weight: var(--rvc-table-head-font-weight);
|
|
67
69
|
line-height: var(--rvc-table-line-height);
|
|
@@ -92,13 +94,14 @@
|
|
|
92
94
|
display: flex;
|
|
93
95
|
width: 100%;
|
|
94
96
|
column-gap: calc(var(--spacing) * 1.5);
|
|
97
|
+
color: inherit;
|
|
95
98
|
|
|
96
99
|
&:hover {
|
|
97
100
|
text-decoration: underline;
|
|
98
101
|
}
|
|
99
102
|
|
|
100
103
|
&:hover .rvc-table-sort-icon-invisible {
|
|
101
|
-
opacity: 0.
|
|
104
|
+
opacity: 0.5;
|
|
102
105
|
}
|
|
103
106
|
}
|
|
104
107
|
|