@trebired/frontend 1.13.1 → 1.13.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/primitives/styles/_display.scss +16 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,10 @@ This project follows semantic versioning once published.
|
|
|
6
6
|
|
|
7
7
|
## Unreleased
|
|
8
8
|
|
|
9
|
+
## 1.13.2
|
|
10
|
+
|
|
11
|
+
- Added package-owned `.text-link` primitive styling so ecosystem apps can remove local text-link SCSS while keeping the shared class.
|
|
12
|
+
|
|
9
13
|
## 1.13.1
|
|
10
14
|
|
|
11
15
|
- Fixed the shell mobile navigation section prop type so JSX content slots are accepted by package consumers.
|
|
@@ -58,6 +58,22 @@
|
|
|
58
58
|
min-height: 0;
|
|
59
59
|
}
|
|
60
60
|
|
|
61
|
+
.text-link {
|
|
62
|
+
color: var(--text-color-muted, var(--tbf-text-muted, var(--tbf-text, currentColor)));
|
|
63
|
+
font-weight: inherit;
|
|
64
|
+
text-decoration-line: underline;
|
|
65
|
+
text-decoration-style: dotted;
|
|
66
|
+
text-decoration-thickness: 1px;
|
|
67
|
+
text-underline-offset: 3px;
|
|
68
|
+
transition: color var(--transition-fast, var(--tbf-transition-fast, 120ms ease));
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.text-link:hover,
|
|
72
|
+
.text-link:focus {
|
|
73
|
+
color: var(--text-color, var(--tbf-text, currentColor));
|
|
74
|
+
text-decoration-style: solid;
|
|
75
|
+
}
|
|
76
|
+
|
|
61
77
|
[data-tbf-table] {
|
|
62
78
|
width: 100%;
|
|
63
79
|
border-collapse: collapse;
|