@onehat/ui 0.3.232 → 0.3.233

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onehat/ui",
3
- "version": "0.3.232",
3
+ "version": "0.3.233",
4
4
  "description": "Base UI for OneHat apps",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -474,11 +474,12 @@ function GridComponent(props) {
474
474
  rowDragProps.isDragSource = true;
475
475
  rowDragProps.dragSourceType = rowDragSourceType;
476
476
  if (getRowDragSourceItem) {
477
- rowDragProps.dragSourceItem = getRowDragSourceItem(item, getIds);
477
+ rowDragProps.dragSourceItem = getRowDragSourceItem(item, getIds, rowDragSourceType);
478
478
  } else {
479
479
  rowDragProps.dragSourceItem = {
480
480
  id: item.id,
481
481
  getIds,
482
+ type: rowDragSourceType,
482
483
  };
483
484
  }
484
485
  }