@xh/hoist 76.0.0-SNAPSHOT.1755397026376 → 76.0.0-SNAPSHOT.1755640263068
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
|
@@ -7,6 +7,11 @@
|
|
|
7
7
|
* Added new `extraConfirmText`, `extraConfirmLabel` properties to `MessageOptions`. Use this option
|
|
8
8
|
to require the specified text to be re-typed by a user when confirming a potentially destructive or disruptive action.
|
|
9
9
|
|
|
10
|
+
### ⚙️ Technical
|
|
11
|
+
* Provide support for triggering browser GC during development. Useful for troubleshooting memory
|
|
12
|
+
consumption issues. Requires running chromium-based browser with flag, e.g.
|
|
13
|
+
"start chrome --js-flags="--expose-gc"
|
|
14
|
+
|
|
10
15
|
## 75.0.1 - 2025-08-11
|
|
11
16
|
|
|
12
17
|
### 🎁 New Features
|
|
@@ -52,6 +52,12 @@ export const versionBar = hoistCmp.factory({
|
|
|
52
52
|
omit: isAdminApp || !XH.getUser().isHoistAdminReader,
|
|
53
53
|
title: 'Open Admin Console',
|
|
54
54
|
onClick: () => XH.appContainerModel.openAdmin()
|
|
55
|
+
}),
|
|
56
|
+
// Force GC, available via V8/chromium and "start chrome --js-flags="--expose-gc"
|
|
57
|
+
Icon.memory({
|
|
58
|
+
omit: !window['gc'],
|
|
59
|
+
title: 'Force GC',
|
|
60
|
+
onClick: () => window['gc']()
|
|
55
61
|
})
|
|
56
62
|
]
|
|
57
63
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xh/hoist",
|
|
3
|
-
"version": "76.0.0-SNAPSHOT.
|
|
3
|
+
"version": "76.0.0-SNAPSHOT.1755640263068",
|
|
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",
|