@xh/hoist 71.0.0-SNAPSHOT.1735587357776 → 71.0.0-SNAPSHOT.1735588181793

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 +26 -18
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -4,35 +4,43 @@
4
4
 
5
5
  ### 💥 Breaking Changes
6
6
 
7
- * `ErrorMessage` is now cross-platform. Its import paths has changed from `@xh/hoist/desktop/cmp/error`
8
- and `@xh/hoist/mobile/cmp/error` to `@xh/hoist/cmp/error`.
9
- * `Mask` is now cross-platform. Its import paths has changed from `@xh/hoist/desktop/cmp/mask`
10
- and `@xh/hoist/mobile/cmp/mask` to `@xh/hoist/cmp/mask`.
11
- * `LoadingIndicator` is now cross-platform. Its import paths has changed from
12
- `@xh/hoist/desktop/cmp/loadingindicator` and `@xh/hoist/mobile/cmp/loadingindicator` to
7
+ * Requires `hoist-core >= 26.1` with new APIs to support `ViewManager`.
8
+ * `ErrorMessage` is now cross-platform - update imports from `@xh/hoist/desktop/cmp/error`
9
+ or `@xh/hoist/mobile/cmp/error` to `@xh/hoist/cmp/error`.
10
+ * `Mask` is now cross-platform - update imports from `@xh/hoist/desktop/cmp/mask` or
11
+ `@xh/hoist/mobile/cmp/mask` to `@xh/hoist/cmp/mask`.
12
+ * `LoadingIndicator` is now cross-platform - update imports from
13
+ `@xh/hoist/desktop/cmp/loadingindicator` or `@xh/hoist/mobile/cmp/loadingindicator` to
13
14
  `@xh/hoist/cmp/loadingindicator`.
14
15
  * `TreeMap` and `SplitTreeMap` are now cross-platform and can be used in mobile applications.
15
- Their import paths have changed from `@xh/hoist/desktop/cmp/treemap` to `@xh/hoist/cmp/treemap`.
16
- * The `RefreshButton` `model` prop has been renamed `target` for clarity and consistency.
16
+ Update imports from `@xh/hoist/desktop/cmp/treemap` to `@xh/hoist/cmp/treemap`.
17
+ * Renamed `RefreshButton.model` prop to `target` for clarity and consistency.
17
18
 
18
19
  ### 🎁 New Features
19
20
 
20
- * Major Improvements to ViewManager component
21
- * Support for persisting pending value.
22
- * Handle delete and update collisions more gracefully.
23
- * Support for `settleTime`,
24
- * Improved management UI Dialog.
25
- * Support for "global" views.
26
- * New `SessionStorageService` and associated persistence provider provides support for saving
27
- tab local data across reloads.
28
- * Added support for `AuthZeroClientConfig.audience` to support improved configuration of Auth0 OAuth
29
- clients requesting access tokens, covering cases when third-party cookies are blocked.
21
+ * Major improvements to ViewManager component, including:
22
+ * A clearer, better organized view management dialog.
23
+ * Support for persisting a view's pending value, to avoid users losing changes when e.g. an app
24
+ goes into idle mode and requires a page refresh to restore.
25
+ * Improved handling of delete / update collisions.
26
+ * New `ViewManagerModel.settleTime` config, to allow persisted components such as dashboards to
27
+ fully resolve their rendered state before capturing a baseline for dirty checks.
28
+ * Added `SessionStorageService` and associated persistence provider to support saving tab-local
29
+ data across reloads. Exact analog to `LocalStorageService`, but scoped to lifetime of current tab.
30
+ * Added `AuthZeroClientConfig.audience` config to support improved flow for Auth0 OAuth clients that
31
+ request access tokens. Specify your access token audience here to allow the client to fetch both
32
+ ID and access tokens in a single request and to use refresh tokens to maintain access without
33
+ relying on third-party cookies.
34
+ * Updated sorting on grouped grids to place ungrouped items at the bottom.
30
35
 
31
36
  ### 🐞 Bug Fixes
32
37
 
33
38
  * Fixed sizing and position of mobile `TabContainer` switcher, particularly when the switcher is
34
39
  positioned with `top` orientation.
35
40
  * Fixed styling of `ButtonGroup` in vertical orientations.
41
+ * Improved handling of calls to `DashContainerModel.loadStateAsync()` when the component has yet
42
+ to be rendered. Requested state updates are no longer dropped, and will be applied as soon as the
43
+ component is ready to do so.
36
44
 
37
45
  ### ⚙️ Technical
38
46
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xh/hoist",
3
- "version": "71.0.0-SNAPSHOT.1735587357776",
3
+ "version": "71.0.0-SNAPSHOT.1735588181793",
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",