@xh/hoist 73.0.0-SNAPSHOT.1746830066260 → 73.0.0-SNAPSHOT.1746837763745

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +15 -20
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -2,11 +2,6 @@
2
2
 
3
3
  ## v73.0.0-SNAPSHOT - unreleased
4
4
 
5
- ### 🎁 New Features
6
-
7
- * Added `PopoverFilterChooser`, which wraps `FilterChooser` in a `Popover` to allow it to expand
8
- vertically when used in a `Toolbar`.
9
-
10
5
  ### 💥 Breaking Changes (upgrade difficulty: 🟢 TRIVIAL - minor upgrade to Hoist Core)
11
6
 
12
7
  * Requires `hoist-core >= 30.1.0` with new APIs to support the consolidated Admin Console "Clients"
@@ -16,7 +11,7 @@
16
11
  applicable. This did not previously have any effect, but is required now for the superclass to
17
12
  initialize a new `ViewManagerModel`.
18
13
  * For clarity, [here is where Toolbox makes that call](https://github.com/xh/toolbox/blob/f15a8018ce36c2ae998b45724b48a16320b88e49/client-app/src/admin/AppModel.ts#L12).
19
-
14
+ * Requires call to `makeObservable(this)` in model constructors with `@bindable` (see below).
20
15
 
21
16
  ### 🎁 New Features
22
17
 
@@ -32,7 +27,8 @@
32
27
  the "skip weekends" option.
33
28
  * Client Error reports and user feedback have also been consolidated into the new tracking
34
29
  system for more integrated and powerful reporting.
35
-
30
+ * Added new `PopoverFilterChooser` component - wraps `FilterChooser` in a `Popover` to allow it to
31
+ expand vertically when used in a `Toolbar` or other space-constrained, single-line layout.
36
32
  * Updated `FormModel` to support `persistWith` for storing and recalling its values, including
37
33
  developer options to persist all or a provided subset of fields.
38
34
 
@@ -40,17 +36,13 @@
40
36
 
41
37
  * Fixed drag-and-drop usability issues with the mobile `ColChooser`.
42
38
  * Made `GridModel.defaultGroupSortFn` null-safe and improved type signature.
43
- * Disable `dashCanvasAddViewButton` if there are no `menuItems` to show.
44
- * Improvements to `@bindable` and `@persist` to handle lifecycle-related bugs. Note that previously
39
+ * Disabled `dashCanvasAddViewButton` if there are no `menuItems` to show.
40
+ * Hardened `@bindable` and `@persist` to handle lifecycle-related bugs. Note that previously
45
41
  `@bindable` would work even if `makeObservable()` was not called, but this is no longer the case.
46
- Please ensure that `makeObservable()` is called in your model's constructor when using `@bindable`.
47
-
48
- ### ⚙️ Typescript API Adjustments
49
-
50
- * Corrected `GridGroupSortFn` param types.
51
- * Corrected `StoreCountLabelProps` interface.
52
- * Corrected `textAlign` type in `DateInputProps`, `NumberInputProps` `SearchInputProps` and
53
- `TextInputProps`.
42
+ Please ensure you call `makeObservable(this)` in your model's constructor when using `@bindable`!
43
+ * Improved client `WebSocketService` heartbeat to check that it has been receiving inbound messages
44
+ from the server, not just successfully sending outbound heartbeats. Will auto-reconnect if needed
45
+ in a newly throttled/managed manner.
54
46
 
55
47
  ### ⚙️ Technical
56
48
 
@@ -64,9 +56,12 @@
64
56
  as the server - would result in a false positive for an upgrade. The two should always match.
65
57
  * Calls to `Promise.track()` that are rejected with an exception will be tracked with new
66
58
  severity level of `TrackSeverity.ERROR`.
67
- * Improved client `WebSocketService` heartbeat to check that it has been receiving inbound messages
68
- from the server, not just successfully sending outbound heartbeats.
69
- * Improved client `WebSocketService` to throttle its reconnect attempts.
59
+
60
+ ### ⚙️ Typescript API Adjustments
61
+
62
+ * Corrected `GridGroupSortFn` param types.
63
+ * Corrected `StoreCountLabelProps` interface.
64
+ * Corrected `textAlign` type across several `HoistInput` prop interfaces.
70
65
 
71
66
  ## v72.5.1 - 2025-04-15
72
67
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xh/hoist",
3
- "version": "73.0.0-SNAPSHOT.1746830066260",
3
+ "version": "73.0.0-SNAPSHOT.1746837763745",
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",