@xh/hoist 75.0.0-SNAPSHOT.1753727619217 → 75.0.0-SNAPSHOT.1753731626581

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
@@ -55,11 +55,20 @@
55
55
  * Removed deprecated `FetchService.setDefaultTimeout`
56
56
  * Removed deprecated `IdentityService.logoutAsync`
57
57
 
58
+ ### ✨ Styles
59
+
60
+ * Upgraded the version of Hoist's default Inter UI font to a new major version, now v4.1. Note
61
+ that this brings slight differences to the font's appearance, including tweaks to internal
62
+ spacing and letterforms for tabular numbers. The name of the font face has also changed, from
63
+ `Inter Var` to `InterVariable`. The default value of the `--xh-font-family` CSS variable has been
64
+ updated to match, making this change transparent for most applications.
65
+
58
66
  ### 📚 Libraries
59
67
 
60
68
  * @auth0/auth0-spa-js `2.1 → 2.3`
61
69
  * @azure/msal-browser `4.12 → 4.16`
62
70
  * filesize `6.4 → 11.0`
71
+ * inter-ui `3.19 → 4.1`
63
72
  * mobx-react-lite `4.0 → 4.1`
64
73
  * qs `6.13 → 6.14`
65
74
  * react-markdown `9.0 → 10.1`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xh/hoist",
3
- "version": "75.0.0-SNAPSHOT.1753727619217",
3
+ "version": "75.0.0-SNAPSHOT.1753731626581",
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",
@@ -54,7 +54,7 @@
54
54
  "filesize": "~11.0.2",
55
55
  "golden-layout": "~1.5.9",
56
56
  "http-status-codes": "~2.3.0",
57
- "inter-ui": "~3.19.3",
57
+ "inter-ui": "~4.1.1",
58
58
  "jwt-decode": "~4.0.0",
59
59
  "lodash": "~4.17.21",
60
60
  "lodash-inflection": "~1.5.0",
package/styles/XH.scss CHANGED
@@ -9,7 +9,7 @@
9
9
  @use 'helpers';
10
10
  @use '~inter-ui/variable' with (
11
11
  $inter-font-display: block,
12
- $inter-font-path: '~inter-ui/Inter (web)'
12
+ $inter-font-path: '~inter-ui/variable'
13
13
  );
14
14
 
15
15
  @include variable.all;
package/styles/vars.scss CHANGED
@@ -374,7 +374,7 @@ body {
374
374
  //------------------------
375
375
  // Fonts
376
376
  //------------------------
377
- --xh-font-family: var(--font-family, #{("Inter Var", system-ui, sans-serif)});
377
+ --xh-font-family: var(--font-family, #{("InterVariable", system-ui, sans-serif)});
378
378
  --xh-font-family-headings: var(--font-family-headings, var(--xh-font-family));
379
379
  --xh-font-family-mono: var(--font-family-mono, #{(Monaco, Consolas, monospace)});
380
380