@robuust-digital/vue-components 2.3.4 → 2.3.5

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 CHANGED
@@ -1,3 +1,13 @@
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
+
1
11
  ## 2.3.4 (25-03-2026)
2
12
 
3
13
  ### Fixed
@@ -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.3;
104
+ opacity: 0.5;
102
105
  }
103
106
  }
104
107
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@robuust-digital/vue-components",
3
- "version": "2.3.4",
3
+ "version": "2.3.5",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"