@open-mercato/ui 0.6.3-develop.3709.1.0f15e09a5f → 0.6.3-develop.3753.1.29e9a20dde
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/dist/backend/DataTable.js +1 -1
- package/dist/backend/DataTable.js.map +2 -2
- package/dist/backend/FilterOverlay.js +6 -1
- package/dist/backend/FilterOverlay.js.map +2 -2
- package/package.json +3 -3
- package/src/backend/DataTable.tsx +1 -1
- package/src/backend/FilterOverlay.tsx +11 -1
- package/src/backend/__tests__/FilterOverlay.tooltip.test.tsx +97 -0
|
@@ -1073,7 +1073,7 @@ function DataTable({
|
|
|
1073
1073
|
if (!hasInjectedBulkActions) return baseInjectionContext;
|
|
1074
1074
|
const selectedIds = Object.keys(rowSelection).filter((key) => rowSelection[key]);
|
|
1075
1075
|
if (selectedIds.length === 0) return baseInjectionContext;
|
|
1076
|
-
return { ...baseInjectionContext,
|
|
1076
|
+
return { ...baseInjectionContext, selectedRowIds: selectedIds, selectedCount: selectedIds.length };
|
|
1077
1077
|
},
|
|
1078
1078
|
[baseInjectionContext, hasInjectedBulkActions, rowSelection]
|
|
1079
1079
|
);
|