@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 +4 -0
- package/cmp/chart/Chart.scss +5 -0
- package/package.json +1 -1
- package/security/msal/MsalClient.ts +2 -2
- package/styles/vars.scss +1 -0
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
package/cmp/chart/Chart.scss
CHANGED
|
@@ -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.
|
|
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
|
|
415
|
+
const source = this.client?.constructor.name;
|
|
416
416
|
switch (level) {
|
|
417
417
|
case msal.LogLevel.Info:
|
|
418
418
|
return logInfo(message, source);
|