@financial-times/o-private-foundation 1.0.2 → 1.0.3
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 +7 -0
- package/package.json +1 -1
- package/src/scss/o-typography/main.scss +2 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.0.3](https://github.com/Financial-Times/origami/compare/o-private-foundation-v1.0.2...o-private-foundation-v1.0.3) (2025-02-26)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* remove o-colors usages in o-private-foundation ([#1991](https://github.com/Financial-Times/origami/issues/1991)) ([700edef](https://github.com/Financial-Times/origami/commit/700edefb23d1a5b51a153ba053d65b6f2b057d75))
|
|
9
|
+
|
|
3
10
|
## [1.0.2](https://github.com/Financial-Times/origami/compare/o-private-foundation-v1.0.1...o-private-foundation-v1.0.2) (2025-02-25)
|
|
4
11
|
|
|
5
12
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@financial-times/o-private-foundation",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Foundation components for use in Origami components only.",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"homepage": "https://registry.origami.ft.com/components/o-private-foundation",
|
|
@@ -212,13 +212,11 @@
|
|
|
212
212
|
|
|
213
213
|
// Generate optional theme colours.
|
|
214
214
|
@if (not $decoration-color) {
|
|
215
|
-
|
|
216
|
-
$decoration-color: oColorsMix($base-color, $context-color, $percentage: 20);
|
|
215
|
+
$decoration-color: oPrivateColorsMix($base-color, $context-color, $percentage: 20);
|
|
217
216
|
}
|
|
218
217
|
|
|
219
218
|
@if (not $hover-decoration-color) {
|
|
220
|
-
|
|
221
|
-
$hover-decoration-color: oColorsMix(
|
|
219
|
+
$hover-decoration-color: oPrivateColorsMix(
|
|
222
220
|
$base-color,
|
|
223
221
|
$context-color,
|
|
224
222
|
$percentage: 40
|