@trebired/frontend 5.0.0 → 5.0.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/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
All notable package changes are documented here.
|
|
4
4
|
|
|
5
|
+
## 5.0.1
|
|
6
|
+
|
|
7
|
+
- Kept icon-only package buttons aligned with the control text color instead of forcing `--tbf-button-icon-color`.
|
|
8
|
+
|
|
5
9
|
## 5.0.0
|
|
6
10
|
|
|
7
11
|
- Added `components.progress` tokens so top-level progress styling no longer depends on generic theme token overrides.
|
|
@@ -44,6 +44,10 @@
|
|
|
44
44
|
background: var(--tbf-action-control-hover-background, var(--tbf-button-hover-background, var(--tbf-button-background, transparent)));
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
+
.tbf-button.icon {
|
|
48
|
+
--tbf-action-control-current-icon-color: currentColor;
|
|
49
|
+
}
|
|
50
|
+
|
|
47
51
|
.tbf-button:disabled,
|
|
48
52
|
.tbf-button[disabled],
|
|
49
53
|
.tbf-button.disabled {
|
|
@@ -44,6 +44,10 @@
|
|
|
44
44
|
background: var(--tbf-surface-button-hover-background, var(--tbf-button-hover-background, var(--tbf-button-background, transparent)));
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
+
.tbf-button.icon {
|
|
48
|
+
--tbf-surface-button-current-icon-color: currentColor;
|
|
49
|
+
}
|
|
50
|
+
|
|
47
51
|
.tbf-button:disabled,
|
|
48
52
|
.tbf-button[disabled],
|
|
49
53
|
.tbf-button.disabled {
|