@tap-payments/os-micro-frontend-shared 0.1.103-test.108 → 0.1.103-test.110

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.
@@ -23,6 +23,7 @@ function VirtualTable({ columnsData, itemCount, lastItemIndex, areAllRowsLoaded,
23
23
  return (_jsx(InfiniteLoader, Object.assign({ isItemLoaded: (index) => index !== lastItemIndex, itemCount: itemCount, loadMoreItems: handleOnLoadMoreItems, threshold: threshold }, { children: ({ onItemsRendered, ref }) => (_jsx(AutoSizer, Object.assign({ ref: ref }, { children: ({ height, width }) => {
24
24
  const itemSize = (index) => getItemSize(index, height);
25
25
  const itemData = getItemData(columnsData, isPinned, height);
26
+ console.log('itemData', itemData);
26
27
  return (_jsx(StyledVirtualList, Object.assign({ listRef: listRef, height: height, width: fixedWidth || width, itemCount: itemCount, itemSize: itemSize, itemData: itemData, onItemsRendered: onItemsRendered, overscanCount: overscanCount, setBackdropVisibility: setBackdropVisibility, scrollToIndex: scrollToIndex, areTotalRowsNotFillingHeight: areTotalRowsNotFillingHeight, useIsScrolling: true, onScroll: onScroll, clearBackdropVisibilityTimeout: clearBackdropVisibilityTimeout, style: {
27
28
  overflowX: isPinned ? 'hidden' : 'auto',
28
29
  paddingBottom: isPinned ? '25px' : '13px',
@@ -23,7 +23,6 @@ function TableRow({ row, columns, index, rowProps, isSheetView, selectedCell = n
23
23
  selectionProps: { onClick: handleChipClick, rowIndex, colIndex, selectedId: selectedChip },
24
24
  })) : (_jsx(_Fragment, { children: formattedValue }));
25
25
  };
26
- console.log('selectedCell, selectedColumn, selectedRow,', selectedCell, selectedColumn, selectedRow);
27
26
  const content = useMemo(() => (_jsx(_Fragment, { children: columns.map((column, colIndex) => {
28
27
  var _a, _b;
29
28
  const cellKey = `${(_a = column.pinned) !== null && _a !== void 0 ? _a : 'default'}-${index}-${colIndex}`;
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@tap-payments/os-micro-frontend-shared",
3
3
  "description": "Shared components and utilities for Tap Payments micro frontends",
4
- "version": "0.1.103-test.108",
5
- "testVersion": 108,
4
+ "version": "0.1.103-test.110",
5
+ "testVersion": 110,
6
6
  "type": "module",
7
7
  "main": "build/index.js",
8
8
  "module": "build/index.js",