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

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.1764973958182",
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",
@@ -393,7 +393,7 @@ export class MsalClient extends BaseOAuthClient<MsalClientConfig, MsalTokenSpec>
393
393
  },
394
394
  system: {
395
395
  loggerOptions: {
396
- loggerCallback: this.logFromMsal,
396
+ loggerCallback: (level, message) => this.logFromMsal(level, message),
397
397
  logLevel: msalLogLevel
398
398
  },
399
399
  iframeHashTimeout: 3000 // Prevent long pauses for sso failures.
@@ -412,7 +412,7 @@ export class MsalClient extends BaseOAuthClient<MsalClientConfig, MsalTokenSpec>
412
412
  }
413
413
 
414
414
  private logFromMsal(level: LogLevel, message: string) {
415
- const source = this.client.constructor.name;
415
+ const source = this.client?.constructor.name;
416
416
  switch (level) {
417
417
  case msal.LogLevel.Info:
418
418
  return logInfo(message, source);
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
  //------------------------