@xh/hoist 73.0.0-SNAPSHOT.1743512234296 → 73.0.0-SNAPSHOT.1743808100261
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 +6 -3
- package/data/Store.ts +3 -0
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,11 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
## v73.0.0-SNAPSHOT - unreleased
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
### 🎁 New Features
|
|
6
|
+
|
|
7
|
+
* Added the reported client app version as a column in the Admin Console WebSockets tab.
|
|
6
8
|
|
|
7
9
|
## v72.2.0 - 2025-03-13
|
|
8
10
|
|
|
9
11
|
### 🎁 New Features
|
|
12
|
+
|
|
10
13
|
* Modified `TabContainerModel` to make more methods `protected`, improving extensibility for
|
|
11
14
|
advanced use-cases.
|
|
12
15
|
* Enhanced `XH.reloadApp` with new argument to clear query parameters before loading.
|
|
@@ -19,8 +22,8 @@
|
|
|
19
22
|
|
|
20
23
|
### 🐞 Bug Fixes
|
|
21
24
|
|
|
22
|
-
*
|
|
23
|
-
|
|
25
|
+
* Prevented native browser context menu from showing on `DashCanvas` surfaces and obscuring the
|
|
26
|
+
`DashCanvas` custom context menu.
|
|
24
27
|
|
|
25
28
|
## v72.1.0 - 2025-02-13
|
|
26
29
|
|
package/data/Store.ts
CHANGED
|
@@ -18,6 +18,7 @@ import {
|
|
|
18
18
|
isEmpty,
|
|
19
19
|
isFunction,
|
|
20
20
|
isNil,
|
|
21
|
+
isNull,
|
|
21
22
|
isString,
|
|
22
23
|
values,
|
|
23
24
|
remove as lodashRemove,
|
|
@@ -692,6 +693,8 @@ export class Store extends HoistBase {
|
|
|
692
693
|
* for backwards compat with app code predating support for multiple {@link summaryRecords}.
|
|
693
694
|
*/
|
|
694
695
|
get summaryRecord(): StoreRecord {
|
|
696
|
+
if (isNull(this.summaryRecords)) return null;
|
|
697
|
+
|
|
695
698
|
throwIf(
|
|
696
699
|
this.summaryRecords.length > 1,
|
|
697
700
|
'Store has multiple summary records - must access via Store.summaryRecords.'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xh/hoist",
|
|
3
|
-
"version": "73.0.0-SNAPSHOT.
|
|
3
|
+
"version": "73.0.0-SNAPSHOT.1743808100261",
|
|
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",
|