@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.
- package/CHANGELOG.md +26 -18
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,35 +4,43 @@
|
|
|
4
4
|
|
|
5
5
|
### 💥 Breaking Changes
|
|
6
6
|
|
|
7
|
-
* `
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
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
|
-
|
|
16
|
-
*
|
|
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
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
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.
|
|
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",
|