@trebired/frontend 4.0.1 → 4.0.2
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 +4 -0
- package/dist/flash/styles/index.scss +4 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
All notable package changes are documented here.
|
|
4
4
|
|
|
5
|
+
## 4.0.2
|
|
6
|
+
|
|
7
|
+
- Removed remaining flash type-color fallback variables so semantic flash colors apply only through icon color tokens.
|
|
8
|
+
|
|
5
9
|
## 4.0.1
|
|
6
10
|
|
|
7
11
|
- Changed flash defaults to render Remix Icon status glyphs and keep semantic flash coloring scoped to icons only.
|
|
@@ -55,19 +55,19 @@
|
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
.tbf-flash[data-tbf-flash-type="success"] .tbf-flash__icon {
|
|
58
|
-
color: var(--tbf-flash-success-icon-color, var(--tbf-flash-
|
|
58
|
+
color: var(--tbf-flash-success-icon-color, var(--tbf-flash-icon-color, currentColor));
|
|
59
59
|
}
|
|
60
60
|
|
|
61
61
|
.tbf-flash[data-tbf-flash-type="error"] .tbf-flash__icon {
|
|
62
|
-
color: var(--tbf-flash-error-icon-color, var(--tbf-flash-
|
|
62
|
+
color: var(--tbf-flash-error-icon-color, var(--tbf-flash-icon-color, currentColor));
|
|
63
63
|
}
|
|
64
64
|
|
|
65
65
|
.tbf-flash[data-tbf-flash-type="warn"] .tbf-flash__icon {
|
|
66
|
-
color: var(--tbf-flash-warn-icon-color, var(--tbf-flash-
|
|
66
|
+
color: var(--tbf-flash-warn-icon-color, var(--tbf-flash-icon-color, currentColor));
|
|
67
67
|
}
|
|
68
68
|
|
|
69
69
|
.tbf-flash[data-tbf-flash-type="info"] .tbf-flash__icon {
|
|
70
|
-
color: var(--tbf-flash-info-icon-color, var(--tbf-flash-
|
|
70
|
+
color: var(--tbf-flash-info-icon-color, var(--tbf-flash-icon-color, currentColor));
|
|
71
71
|
}
|
|
72
72
|
|
|
73
73
|
.tbf-flash__body,
|