@xh/hoist 73.0.0-SNAPSHOT.1745445775316 → 73.0.0-SNAPSHOT.1745446457207

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
@@ -3,6 +3,7 @@
3
3
  ## v73.0.0-SNAPSHOT - unreleased
4
4
 
5
5
  ### 🐞 Bug Fixes
6
+ * Fixed drag-and-drop usability issues with the mobile `ColChooser`.
6
7
  * Made `GridModel.defaultGroupSortFn` null-safe and improved type signature.
7
8
 
8
9
  ### ⚙️ Typescript API Adjustments
@@ -1,15 +1,17 @@
1
1
  .xh-col-chooser {
2
2
  &__internal {
3
3
  height: 100%;
4
+ display: flex;
5
+ flex-direction: column;
4
6
  }
5
7
 
6
8
  &__section {
7
9
  &:first-child {
8
- height: 65% !important;
10
+ flex: 1 1 65% !important;
9
11
  }
10
12
 
11
13
  &:last-child {
12
- height: 35% !important;
14
+ flex: 1 1 35% !important;
13
15
  }
14
16
 
15
17
  .xh-panel__content {
@@ -73,6 +75,11 @@
73
75
  }
74
76
  }
75
77
 
78
+ .xh-checkbox-button {
79
+ border-radius: 0 !important;
80
+ border-width: 1px 0 !important;
81
+ }
82
+
76
83
  .hidden-columns .xh-col-chooser-row {
77
84
  color: var(--xh-text-color-muted);
78
85
  }
@@ -90,6 +90,7 @@ export const [ColChooser, colChooser] = hoistCmp.withFactory<ColChooserProps>({
90
90
  scrollable: true,
91
91
  item: droppable({
92
92
  droppableId: 'hidden-columns',
93
+ isDropDisabled: true,
93
94
  children: dndProps =>
94
95
  columnList({
95
96
  model: impl,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xh/hoist",
3
- "version": "73.0.0-SNAPSHOT.1745445775316",
3
+ "version": "73.0.0-SNAPSHOT.1745446457207",
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",