@xh/hoist 71.0.0-SNAPSHOT.1735310060928 → 71.0.0-SNAPSHOT.1735311286067

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
@@ -14,6 +14,7 @@
14
14
  * `TreeMap` and `SplitTreeMap` are now cross-platform and can be used in mobile applications.
15
15
  Their import paths have changed from `@xh/hoist/desktop/cmp/treemap` to `@xh/hoist/cmp/treemap`.
16
16
  * The `RefreshButton` `model` prop has been renamed `target` for clarity and consistency.
17
+
17
18
  ### 🎁 New Features
18
19
 
19
20
  * Major Improvements to ViewManager component
@@ -27,6 +28,11 @@
27
28
  * Added support for `AuthZeroClientConfig.audience` to support improved configuration of Auth0 OAuth
28
29
  clients requesting access tokens, covering cases when third-party cookies are blocked.
29
30
 
31
+ ### 🐞 Bug Fixes
32
+
33
+ * Fixed sizing and position of mobile `TabContainer` switcher, particularly when the switcher is
34
+ positioned with `top` orientation.
35
+
30
36
  ### ⚙️ Technical
31
37
 
32
38
  * Added explicit `devDependencies` and `resolutions` blocks for `@types/react[-dom]` at v18.x.
@@ -26,6 +26,9 @@
26
26
  }
27
27
 
28
28
  .xh-tab-container {
29
+ // Override Onsen's tabbar height CSS var
30
+ --tabbar-height: var(--xh-tbar-min-size-px);
31
+
29
32
  position: relative;
30
33
  flex: auto;
31
34
 
@@ -49,10 +52,6 @@
49
52
  line-height: var(--xh-tbar-min-size-px);
50
53
  color: var(--xh-text-color);
51
54
  }
52
-
53
- &__content {
54
- bottom: var(--xh-tbar-min-size-px);
55
- }
56
55
  }
57
56
 
58
57
  // Tab visibility is managed via TabContainerModel.renderMode, rather than Onsen's internal state.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xh/hoist",
3
- "version": "71.0.0-SNAPSHOT.1735310060928",
3
+ "version": "71.0.0-SNAPSHOT.1735311286067",
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",