@algorithm-shift/design-system 1.2.73 → 1.2.74

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/index.mjs CHANGED
@@ -28701,7 +28701,10 @@ var Table4 = ({
28701
28701
  onSortChange: (col, dir) => onSortChange?.({ sort_by: col, sort_order: dir }),
28702
28702
  onFilterChange: (filters) => onFilterChange?.({ columnKey: filters.columnKey, columnTerm: filters.columnTerm }),
28703
28703
  onGlobalSearch: (term) => onGlobalSearch?.({ searchTerm: term }),
28704
- globalSearch
28704
+ globalSearch,
28705
+ onCellClick: (cell) => {
28706
+ props.onCellClick?.({ id: cell.id, column: cell });
28707
+ }
28705
28708
  }
28706
28709
  ) });
28707
28710
  };