@xh/hoist 75.0.0-SNAPSHOT.1751496719940 → 75.0.0-SNAPSHOT.1751562280458

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
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## v74.1.2 - 2025-07-03
4
+
5
+ ### 🐞 Bug Fixes
6
+
7
+ * Fixed `GroupingChooser` layout issue, visible only when favorites are disabled.
8
+
3
9
  ## v74.1.1 - 2025-07-02
4
10
 
5
11
  ### 🎁 New Features
@@ -42,6 +42,12 @@
42
42
  width: 40%;
43
43
  }
44
44
  }
45
+
46
+ &--faves-disabled {
47
+ .xh-grouping-chooser__editor {
48
+ flex: 1;
49
+ }
50
+ }
45
51
  }
46
52
 
47
53
  &__list {
@@ -10,6 +10,7 @@ import {
10
10
  div,
11
11
  filler,
12
12
  fragment,
13
+ frame,
13
14
  hbox,
14
15
  hframe,
15
16
  placeholder,
@@ -176,7 +177,8 @@ const popoverCmp = hoistCmp.factory<Partial<GroupingChooserProps>>({
176
177
  popoverMinHeight,
177
178
  testId
178
179
  }) {
179
- const favesTB = isTB(favoritesSide),
180
+ const {persistFavorites} = model,
181
+ favesTB = isTB(favoritesSide),
180
182
  isFavesFirst = favoritesSide === 'left' || favoritesSide === 'top',
181
183
  items = [
182
184
  editor({
@@ -194,7 +196,7 @@ const popoverCmp = hoistCmp.factory<Partial<GroupingChooserProps>>({
194
196
  testId: getTestId(testId, 'favorites')
195
197
  })
196
198
  ],
197
- itemsContainer = favesTB ? vframe : hframe;
199
+ itemsContainer = !persistFavorites ? frame : favesTB ? vframe : hframe;
198
200
 
199
201
  if (isFavesFirst) {
200
202
  items.reverse();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xh/hoist",
3
- "version": "75.0.0-SNAPSHOT.1751496719940",
3
+ "version": "75.0.0-SNAPSHOT.1751562280458",
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",