@xh/hoist 79.0.0-SNAPSHOT.1764952554297 → 79.0.0-SNAPSHOT.1764968347393

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
  ## 79.0.0-SNAPSHOT - unreleased
4
4
 
5
+ ### 🐞 Bug Fixes
6
+
7
+ * Defaulted Highcharts font to Hoist default (--xh-font-family)
8
+
5
9
  ## 78.1.3 - 2025-12-04
6
10
 
7
11
  ### 🐞 Bug Fixes
@@ -15,6 +15,11 @@
15
15
  z-index: 9999 !important;
16
16
  }
17
17
 
18
+ // Default Highcharts font to match Hoist standard
19
+ svg.highcharts-root {
20
+ font-family: var(--xh-chart-font-family) !important;
21
+ }
22
+
18
23
  // Convenience class for optional use when specifying custom chart tooltips.
19
24
  // See Toolbox for example usage.
20
25
  .xh-chart-tooltip {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xh/hoist",
3
- "version": "79.0.0-SNAPSHOT.1764952554297",
3
+ "version": "79.0.0-SNAPSHOT.1764968347393",
4
4
  "description": "Hoist add-on for building and deploying React Applications.",
5
5
  "repository": "github:xh/hoist-react",
6
6
  "homepage": "https://xh.io",
package/styles/vars.scss CHANGED
@@ -358,6 +358,7 @@ body {
358
358
  // Charts
359
359
  //------------------------
360
360
  --xh-chart-bg: var(--chart-bg, var(--xh-bg));
361
+ --xh-chart-font-family: var(--chart-font-family, var(--xh-font-family));
361
362
 
362
363
 
363
364
  //------------------------