@xh/hoist 79.0.0-SNAPSHOT.1766589539491 → 79.0.0-SNAPSHOT.1767027974015
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
|
@@ -44,6 +44,7 @@
|
|
|
44
44
|
* Restore previous behavior of Highcharts treemap labels with regard to visibility and positioning.
|
|
45
45
|
* Tweaked `GridFindField` to forward a provided `ref` to its underlying `TextInput`.
|
|
46
46
|
* Fixed bug where `SelectEditor` with `queryFn` would not commit on enter keydown.
|
|
47
|
+
* Supports deletion of large numbers of log files via POST (requires hoist-core v35.)
|
|
47
48
|
|
|
48
49
|
### ⚙️ Technical
|
|
49
50
|
|
|
@@ -55,8 +56,8 @@
|
|
|
55
56
|
* Improved the efficiency and logging of MsalClient.
|
|
56
57
|
|
|
57
58
|
### 📚 Libraries
|
|
58
|
-
|
|
59
59
|
* react-grid-layout `1.5.0 → 2.1.1`
|
|
60
|
+
* hoist-core `35.0.0`
|
|
60
61
|
|
|
61
62
|
## 78.1.4 - 2025-12-05
|
|
62
63
|
|
|
@@ -131,13 +131,14 @@ export class LogViewerModel extends BaseInstanceModel {
|
|
|
131
131
|
if (!confirmed) return;
|
|
132
132
|
|
|
133
133
|
const filenames = recs.map(r => r.data.filename);
|
|
134
|
-
await XH.
|
|
134
|
+
await XH.postJson({
|
|
135
135
|
url: 'logViewerAdmin/deleteFiles',
|
|
136
|
+
body: filenames,
|
|
136
137
|
params: {
|
|
137
138
|
filenames,
|
|
138
139
|
instance: this.instanceName
|
|
139
140
|
}
|
|
140
|
-
});
|
|
141
|
+
}).linkTo({observer: this.loadObserver, message: 'Deleting files'});
|
|
141
142
|
await this.refreshAsync();
|
|
142
143
|
} catch (e) {
|
|
143
144
|
XH.handleException(e);
|
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.1767027974015",
|
|
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",
|