@xh/hoist 75.0.0-SNAPSHOT.1751496719940 → 75.0.0-SNAPSHOT.1751561286552
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
|
@@ -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
|
|
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.
|
|
3
|
+
"version": "75.0.0-SNAPSHOT.1751561286552",
|
|
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",
|