@xh/hoist 76.0.0-SNAPSHOT.1758297294348 → 76.0.0-SNAPSHOT.1758565564006

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
@@ -5,6 +5,10 @@
5
5
  ### 💥 Breaking Changes (upgrade difficulty: 🟢 LOW - upgrade to Hoist Core, change to Tab constructor)
6
6
  * The constructor for `TabModel` has changed to take its owning container as a second argument.
7
7
  (Most applications do not create `TabModels` directly, but it is possible.)
8
+ * The `Exception` class and `HoistException` type have been moved from `@xh\hoist\core` to a new
9
+ lower level package `@xh\hoist\exception`. This new structure is not expected to effect most
10
+ applications, and was put in place to reduce the risk of circular dependencies between internal
11
+ hoist packages.
8
12
 
9
13
  ### 🎁 New Features
10
14
 
@@ -45,7 +49,13 @@
45
49
 
46
50
  ### ⚙️ Typescript API Adjustments
47
51
 
48
- * Corrected `ColChooserConfig` `width` and `height` types.
52
+ * Corrected `ColChooserConfig.width` and `height` types.
53
+
54
+ ### 📚 Libraries
55
+
56
+ * @auth0/auth0-spa-js `2.3 → 2.4`
57
+ * @azure/msal-browser `4.16 → 4.23`
58
+ * typescript `5.8 → 5.9`
49
59
 
50
60
  ## 75.0.1 - 2025-08-11
51
61
 
@@ -39,7 +39,7 @@
39
39
  vertical-align: top;
40
40
  width: 290px;
41
41
  max-width: 290px;
42
- word-wrap: break-word;
42
+ overflow-wrap: break-word;
43
43
 
44
44
  &.diff {
45
45
  color: var(--xh-green);
@@ -41,7 +41,7 @@
41
41
  max-width: 600px;
42
42
  min-width: 600px;
43
43
  padding: var(--xh-pad-half-px);
44
- word-wrap: break-word;
44
+ overflow-wrap: break-word;
45
45
  }
46
46
  }
47
47
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xh/hoist",
3
- "version": "76.0.0-SNAPSHOT.1758297294348",
3
+ "version": "76.0.0-SNAPSHOT.1758565564006",
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",
@@ -28,8 +28,8 @@
28
28
  ]
29
29
  },
30
30
  "dependencies": {
31
- "@auth0/auth0-spa-js": "~2.3.0",
32
- "@azure/msal-browser": "~4.16.0",
31
+ "@auth0/auth0-spa-js": "~2.4.1",
32
+ "@azure/msal-browser": "~4.23.0",
33
33
  "@blueprintjs/core": "^5.10.5",
34
34
  "@blueprintjs/datetime": "^5.3.7",
35
35
  "@blueprintjs/datetime2": "^2.3.7",
@@ -109,9 +109,9 @@
109
109
  "react": "~18.2.0",
110
110
  "react-dom": "~18.2.0",
111
111
  "stylelint": "16.x",
112
- "stylelint-config-standard-scss": "15.x",
112
+ "stylelint-config-standard-scss": "16.x",
113
113
  "type-fest": "4.x",
114
- "typescript": "~5.8.3"
114
+ "typescript": "~5.9.2"
115
115
  },
116
116
  "resolutions": {
117
117
  "core-js": "3.x",