@tap-payments/os-micro-frontend-shared 0.0.312 → 0.1.1-test.54
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/build/components/JSONViewer/JSONViewer.js +1 -1
- package/build/components/MultiSelectDropdownButton/MultiSelectDropdownButton.js +1 -1
- package/build/components/VirtualTables/SheetViewVirtualTable/SheetViewVirtualTable.js +87 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/components/LoadingState.d.ts +34 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/components/LoadingState.js +37 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/components/NoDataState.d.ts +34 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/components/NoDataState.js +21 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/components/PinnedColumnSection.d.ts +32 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/components/PinnedColumnSection.js +16 -0
- package/build/components/{VirtualTable/SheetView → VirtualTables/SheetViewVirtualTable}/components/SheetViewTableHeader/SheetViewTableHeader.d.ts +2 -1
- package/build/components/{VirtualTable/SheetView → VirtualTables/SheetViewVirtualTable}/components/SheetViewTableHeader/SheetViewTableHeader.js +2 -2
- package/build/components/{VirtualTable/SheetView → VirtualTables/SheetViewVirtualTable}/components/SheetViewTableHeader/TableCell.d.ts +2 -2
- package/build/components/{VirtualTable/SheetView → VirtualTables/SheetViewVirtualTable}/components/SheetViewTableHeader/TableCell.js +7 -15
- package/build/components/{VirtualTable/SheetView → VirtualTables/SheetViewVirtualTable}/components/SheetViewTableHeader/type.d.ts +2 -1
- package/build/components/{VirtualTable/SheetView → VirtualTables/SheetViewVirtualTable}/components/SheetViewTableNoData.js +1 -1
- package/build/components/VirtualTables/SheetViewVirtualTable/components/VirtualListContainer.d.ts +31 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/components/VirtualListContainer.js +71 -0
- package/build/components/{VirtualTable/SheetView → VirtualTables/SheetViewVirtualTable}/hooks/usePinnedColumns.d.ts +4 -0
- package/build/components/{VirtualTable/SheetView → VirtualTables/SheetViewVirtualTable}/hooks/usePinnedColumns.js +18 -8
- package/build/components/VirtualTables/SheetViewVirtualTable/hooks/useSelection.d.ts +6 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/hooks/useSelection.js +17 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/hooks/useTableDisplayState.d.ts +9 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/hooks/useTableDisplayState.js +20 -0
- package/build/components/{VirtualTable/SheetView → VirtualTables/SheetViewVirtualTable}/style.js +0 -1
- package/build/components/VirtualTables/SheetViewVirtualTable/utils.d.ts +2 -0
- package/build/components/VirtualTables/SheetViewVirtualTable/utils.js +6 -0
- package/build/components/{VirtualTable → VirtualTables/VirtualTable}/VirtualTable.d.ts +1 -1
- package/build/components/{VirtualTable → VirtualTables/VirtualTable}/VirtualTable.js +9 -9
- package/build/components/{VirtualTable → VirtualTables/VirtualTableWithCard}/VirtualTableWithCard.d.ts +1 -1
- package/build/components/{VirtualTable → VirtualTables/VirtualTableWithCard}/VirtualTableWithCard.js +7 -7
- package/build/components/{VirtualTable → VirtualTables}/components/ColumnSort/ColumnSort.js +1 -1
- package/build/components/{VirtualTable → VirtualTables}/components/TableHeader/components/TableCell/TableCell.d.ts +1 -1
- package/build/components/{VirtualTable → VirtualTables}/components/TableHeader/components/TableCell/TableCell.js +3 -3
- package/build/components/{VirtualTable → VirtualTables}/components/TableLoadingWithCard.d.ts +2 -3
- package/build/components/{VirtualTable → VirtualTables}/components/TableNoData.js +1 -1
- package/build/components/{VirtualTable → VirtualTables}/components/TableNoDataWithCard.d.ts +3 -4
- package/build/components/{VirtualTable → VirtualTables}/components/TableNoDataWithCard.js +1 -1
- package/build/components/{VirtualTable → VirtualTables}/components/TableRow.js +3 -3
- package/build/components/{VirtualTable → VirtualTables}/components/TableRowLoadingWithCard.d.ts +2 -3
- package/build/components/{VirtualTable → VirtualTables}/components/TableRowWithCard.d.ts +2 -3
- package/build/components/{VirtualTable → VirtualTables}/components/TableRowWithCard.js +1 -1
- package/build/components/{VirtualTable → VirtualTables/components}/style.js +9 -12
- package/build/components/{VirtualTable/utils/getSelectionStyles.d.ts → VirtualTables/components/utils.d.ts} +0 -11
- package/build/components/{VirtualTable/utils/getSelectionStyles.js → VirtualTables/components/utils.js} +1 -8
- package/build/components/{VirtualTable → VirtualTables}/components/virtualScroll/ListItemWrapper.js +2 -2
- package/build/components/VirtualTables/index.d.ts +6 -0
- package/build/components/VirtualTables/index.js +6 -0
- package/build/components/index.d.ts +2 -2
- package/build/components/index.js +2 -2
- package/build/types/table.d.ts +1 -1
- package/package.json +3 -3
- package/build/components/VirtualTable/SheetView/SheetViewVirtualTable.js +0 -194
- package/build/components/VirtualTable/index.d.ts +0 -6
- package/build/components/VirtualTable/index.js +0 -6
- package/build/playground/VTDemo.d.ts +0 -1
- package/build/playground/VTDemo.js +0 -58
- package/build/playground/index.d.ts +0 -1
- package/build/playground/index.js +0 -1
- /package/build/components/{VirtualTable/SheetView → VirtualTables/SheetViewVirtualTable}/SheetViewVirtualTable.d.ts +0 -0
- /package/build/components/{VirtualTable/SheetView → VirtualTables/SheetViewVirtualTable}/components/SheetViewTableHeader/index.d.ts +0 -0
- /package/build/components/{VirtualTable/SheetView → VirtualTables/SheetViewVirtualTable}/components/SheetViewTableHeader/index.js +0 -0
- /package/build/components/{VirtualTable/SheetView → VirtualTables/SheetViewVirtualTable}/components/SheetViewTableHeader/type.js +0 -0
- /package/build/components/{VirtualTable/SheetView → VirtualTables/SheetViewVirtualTable}/components/SheetViewTableLoading.d.ts +0 -0
- /package/build/components/{VirtualTable/SheetView → VirtualTables/SheetViewVirtualTable}/components/SheetViewTableLoading.js +0 -0
- /package/build/components/{VirtualTable/SheetView → VirtualTables/SheetViewVirtualTable}/components/SheetViewTableNoData.d.ts +0 -0
- /package/build/components/{VirtualTable/SheetView → VirtualTables/SheetViewVirtualTable}/components/SheetViewTableRowLoading.d.ts +0 -0
- /package/build/components/{VirtualTable/SheetView → VirtualTables/SheetViewVirtualTable}/components/SheetViewTableRowLoading.js +0 -0
- /package/build/components/{VirtualTable/SheetView → VirtualTables/SheetViewVirtualTable}/components/index.d.ts +0 -0
- /package/build/components/{VirtualTable/SheetView → VirtualTables/SheetViewVirtualTable}/components/index.js +0 -0
- /package/build/components/{VirtualTable/SheetView → VirtualTables/SheetViewVirtualTable}/hooks/useSynchronizedScroll.d.ts +0 -0
- /package/build/components/{VirtualTable/SheetView → VirtualTables/SheetViewVirtualTable}/hooks/useSynchronizedScroll.js +0 -0
- /package/build/components/{VirtualTable/SheetView → VirtualTables/SheetViewVirtualTable}/index.d.ts +0 -0
- /package/build/components/{VirtualTable/SheetView → VirtualTables/SheetViewVirtualTable}/index.js +0 -0
- /package/build/components/{VirtualTable/SheetView → VirtualTables/SheetViewVirtualTable}/style.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/ColumnFilter/ColumnFilter.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/ColumnFilter/ColumnFilter.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/ColumnFilter/Inputs/Inputs.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/ColumnFilter/Inputs/Inputs.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/ColumnFilter/Inputs/index.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/ColumnFilter/Inputs/index.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/ColumnFilter/Inputs/style.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/ColumnFilter/Inputs/style.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/ColumnFilter/List/List.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/ColumnFilter/List/List.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/ColumnFilter/List/index.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/ColumnFilter/List/index.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/ColumnFilter/index.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/ColumnFilter/index.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/ColumnFilter/style.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/ColumnFilter/style.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/ColumnFilter/type.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/ColumnFilter/type.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/ColumnSort/ColumnSort.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/ColumnSort/index.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/ColumnSort/index.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/ColumnSort/style.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/ColumnSort/style.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/EmptyList/EmptyList.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/EmptyList/EmptyList.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/EmptyList/index.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/EmptyList/index.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/EmptyList/styles.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/EmptyList/styles.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/ErrorList/ErrorList.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/ErrorList/ErrorList.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/ErrorList/index.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/ErrorList/index.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/ErrorList/styles.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/ErrorList/styles.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/RowErrorState.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/RowErrorState.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/TableError.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/TableError.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/TableFooter/TableFooter.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/TableFooter/TableFooter.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/TableFooter/index.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/TableFooter/index.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/TableFooter/style.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/TableFooter/style.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/TableHeader/TableHeader.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/TableHeader/TableHeader.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/TableHeader/components/TableCell/index.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/TableHeader/components/TableCell/index.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/TableHeader/components/index.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/TableHeader/components/index.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/TableHeader/constant.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/TableHeader/constant.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/TableHeader/index.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/TableHeader/index.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/TableHeader/style.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/TableHeader/style.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/TableHeader/type.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/TableHeader/type.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/TableLastItem.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/TableLastItem.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/TableLoading.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/TableLoading.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/TableLoadingWithCard.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/TableNoData.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/TableRow.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/TableRowLoading.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/TableRowLoading.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/TableRowLoadingWithCard.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/index.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/index.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables/components}/style.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/virtualScroll/ListItemWrapper.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/virtualScroll/ListItemWrapperWithCard.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/virtualScroll/ListItemWrapperWithCard.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/virtualScroll/VirtualScrollInner.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/virtualScroll/VirtualScrollInner.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/virtualScroll/VirtualScrollList.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/virtualScroll/VirtualScrollList.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/virtualScroll/VirtualScrollOuter.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/virtualScroll/VirtualScrollOuter.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/virtualScroll/index.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/components/virtualScroll/index.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/context/Provider.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/context/Provider.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/context/context.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/context/context.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/context/index.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/context/index.js +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/hooks/useScrollBackShadow.d.ts +0 -0
- /package/build/components/{VirtualTable → VirtualTables}/hooks/useScrollBackShadow.js +0 -0
|
@@ -1,194 +0,0 @@
|
|
|
1
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
2
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
3
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
4
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
5
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
6
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
7
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8
|
-
});
|
|
9
|
-
};
|
|
10
|
-
import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
|
|
11
|
-
import { useMemo, memo, useState, useCallback } from 'react';
|
|
12
|
-
import { useTheme } from '@mui/material/styles';
|
|
13
|
-
import memoize from 'memoize-one';
|
|
14
|
-
import InfiniteLoader from 'react-window-infinite-loader';
|
|
15
|
-
import AutoSizer from 'react-virtualized-auto-sizer';
|
|
16
|
-
import { TABLE_THRESHOLD, TABLE_LIST_OVER_SCAN } from '../../../constants/index.js';
|
|
17
|
-
import { useDelayToSetValue } from '../../../hooks/index.js';
|
|
18
|
-
import { isHeightNotFullyFilledByRows, isNotFoundError, isTimeoutError, hasError } from '../../../utils/index.js';
|
|
19
|
-
import TableFooter from '../components/TableFooter/TableFooter';
|
|
20
|
-
import TableNoData from '../components/TableNoData';
|
|
21
|
-
import { SheetViewTableNoData } from './components';
|
|
22
|
-
import ListItemWrapper from '../components/virtualScroll/ListItemWrapper';
|
|
23
|
-
import { StyledBox, StyledTableBox, StyledVirtualList, TableContainer, TableWrapper } from '../style';
|
|
24
|
-
import { SheetViewVirtualTableWrapper, PinnedStartColumnWrapper, PinnedEndColumnWrapper, MainTableWrapper, UnpinnedTableHeaderWrapper } from './style';
|
|
25
|
-
import SheetViewTableHeader from './components/SheetViewTableHeader';
|
|
26
|
-
import { usePinnedColumns } from './hooks/usePinnedColumns';
|
|
27
|
-
import { useSynchronizedScroll } from './hooks/useSynchronizedScroll';
|
|
28
|
-
const createItemData = memoize((columns, isLoading, rows, rowProps, scrollToIndex, lastItemIndex, totalCount, isError, areAllRowsLoaded, isPinned, selectedCell, selectedColumn, onCellClick, containerHeight, rowHeight) => ({
|
|
29
|
-
columns,
|
|
30
|
-
isLoading,
|
|
31
|
-
rows,
|
|
32
|
-
rowProps,
|
|
33
|
-
scrollToIndex,
|
|
34
|
-
totalCount,
|
|
35
|
-
lastItemIndex,
|
|
36
|
-
isError,
|
|
37
|
-
areAllRowsLoaded,
|
|
38
|
-
limit: totalCount,
|
|
39
|
-
newLoadedRowsEndIndex: lastItemIndex,
|
|
40
|
-
isSheetView: true,
|
|
41
|
-
isPinned,
|
|
42
|
-
selectedCell,
|
|
43
|
-
selectedColumn,
|
|
44
|
-
onCellClick,
|
|
45
|
-
containerHeight,
|
|
46
|
-
rowHeight,
|
|
47
|
-
}));
|
|
48
|
-
function SheetViewVirtualTable({ columns, rows, threshold = TABLE_THRESHOLD, showHeader, headerProps, rowProps, footerProps, rowHeight = 28, isLoading, error, columnsSorting, onColumnSort, loadMoreItems, isFetchingNextPage, triggerDataRefetch, scrollToIndex, showBackgroundColor, areAllRowsLoaded = false, tableBodyStyles, tableTitle, dragControls, onColumnPin, clearBackdropVisibilityTimeout = 100, isPinnable = false, tableMode, }) {
|
|
49
|
-
const theme = useTheme();
|
|
50
|
-
const { pinnedStartColumns, pinnedEndColumns, handleColumnPin, pinnedStartColumnsData, pinnedEndColumnsData, unpinnedColumnsData, orderedColumns, lastColumnId, } = usePinnedColumns(columns, isPinnable, onColumnPin);
|
|
51
|
-
const { pinnedStartVirtualListRef, scrollableVirtualListRef, pinnedEndVirtualListRef, handleScroll } = useSynchronizedScroll();
|
|
52
|
-
const [selectedCell, setSelectedCell] = useState(null);
|
|
53
|
-
const [selectedColumn, setSelectedColumn] = useState(null);
|
|
54
|
-
const handleCellClick = useCallback((rowIndex, columnId, event) => {
|
|
55
|
-
event.stopPropagation();
|
|
56
|
-
const cellKey = `${rowIndex}-${columnId}`;
|
|
57
|
-
setSelectedCell((prev) => (prev === cellKey ? null : cellKey));
|
|
58
|
-
setSelectedColumn(null);
|
|
59
|
-
}, []);
|
|
60
|
-
const handleColumnClick = useCallback((columnId, event) => {
|
|
61
|
-
event.stopPropagation();
|
|
62
|
-
setSelectedColumn((prev) => (prev === columnId ? null : columnId));
|
|
63
|
-
setSelectedCell(null);
|
|
64
|
-
}, []);
|
|
65
|
-
const onPointerDown = (e) => {
|
|
66
|
-
dragControls === null || dragControls === void 0 ? void 0 : dragControls.start(e);
|
|
67
|
-
};
|
|
68
|
-
const isDelayedFetchingNextPage = useDelayToSetValue({
|
|
69
|
-
value: isFetchingNextPage,
|
|
70
|
-
delay: 1000,
|
|
71
|
-
});
|
|
72
|
-
const [showBackDrop, setShowBackdrop] = useState(false);
|
|
73
|
-
const isError = hasError(error);
|
|
74
|
-
const tableLoading = isLoading !== null && isLoading !== void 0 ? isLoading : true;
|
|
75
|
-
const tableError = !isLoading && rows.length === 0 && isError && !isNotFoundError(error);
|
|
76
|
-
const tableEmpty = !isLoading && rows.length === 0;
|
|
77
|
-
const hasTimeoutError = isTimeoutError(error);
|
|
78
|
-
const lastItemIndex = rows.length - 1;
|
|
79
|
-
const areTotalRowsNotFillingHeight = isHeightNotFullyFilledByRows(rows.length) && !tableLoading;
|
|
80
|
-
const itemsCount = isDelayedFetchingNextPage || areAllRowsLoaded ? rows.length + 1 : rows.length;
|
|
81
|
-
const createVirtualTableContainer = useCallback((columnsToRender, containerKey, isPinned = false, fixedWidth) => {
|
|
82
|
-
const tableItemsCount = itemsCount;
|
|
83
|
-
const handleOnLoadMoreItems = () => __awaiter(this, void 0, void 0, function* () {
|
|
84
|
-
if (areAllRowsLoaded)
|
|
85
|
-
return;
|
|
86
|
-
yield (loadMoreItems === null || loadMoreItems === void 0 ? void 0 : loadMoreItems());
|
|
87
|
-
});
|
|
88
|
-
const listRef = containerKey === 'pinnedStart' ? pinnedStartVirtualListRef : containerKey === 'pinnedEnd' ? pinnedEndVirtualListRef : scrollableVirtualListRef;
|
|
89
|
-
const handleScrollCallback = (scrollProps) => {
|
|
90
|
-
const source = containerKey === 'pinnedStart' ? 'start' : containerKey === 'pinnedEnd' ? 'end' : 'scrollable';
|
|
91
|
-
handleScroll(scrollProps, source);
|
|
92
|
-
};
|
|
93
|
-
return (_jsx(InfiniteLoader, Object.assign({ isItemLoaded: (index) => index !== lastItemIndex, itemCount: tableItemsCount, loadMoreItems: handleOnLoadMoreItems, threshold: threshold }, { children: ({ onItemsRendered }) => (_jsx(AutoSizer, { children: ({ height, width }) => {
|
|
94
|
-
var _a;
|
|
95
|
-
const getItemSize = (index) => {
|
|
96
|
-
const isLastRow = areAllRowsLoaded && index === rows.length;
|
|
97
|
-
if (isLastRow) {
|
|
98
|
-
const usedHeight = rows.length * rowHeight;
|
|
99
|
-
const remainingHeight = height - usedHeight;
|
|
100
|
-
const minimumLastRowHeight = rowHeight * 2;
|
|
101
|
-
return Math.max(remainingHeight, minimumLastRowHeight);
|
|
102
|
-
}
|
|
103
|
-
return rowHeight;
|
|
104
|
-
};
|
|
105
|
-
const commonItemDataParams = [
|
|
106
|
-
isDelayedFetchingNextPage,
|
|
107
|
-
rows,
|
|
108
|
-
rowProps,
|
|
109
|
-
scrollToIndex,
|
|
110
|
-
lastItemIndex,
|
|
111
|
-
(_a = footerProps === null || footerProps === void 0 ? void 0 : footerProps.totalCount) !== null && _a !== void 0 ? _a : 0,
|
|
112
|
-
isError,
|
|
113
|
-
areAllRowsLoaded,
|
|
114
|
-
];
|
|
115
|
-
const commonItemDataSuffix = [selectedCell, selectedColumn, handleCellClick, height, rowHeight];
|
|
116
|
-
const getItemDataForContainer = (columnsData, isPinnedColumn) => createItemData(columnsData, ...commonItemDataParams, isPinnedColumn, ...commonItemDataSuffix);
|
|
117
|
-
const currentItemData = containerKey === 'pinnedStart'
|
|
118
|
-
? getItemDataForContainer(pinnedStartColumnsData, true)
|
|
119
|
-
: containerKey === 'pinnedEnd'
|
|
120
|
-
? getItemDataForContainer(pinnedEndColumnsData, true)
|
|
121
|
-
: getItemDataForContainer(unpinnedColumnsData, false);
|
|
122
|
-
return (_jsx(StyledVirtualList, Object.assign({ listRef: listRef, height: height, width: fixedWidth || width, itemCount: tableItemsCount, itemSize: getItemSize, itemData: currentItemData, onItemsRendered: onItemsRendered, overscanCount: TABLE_LIST_OVER_SCAN, setBackdropVisibility: setShowBackdrop, scrollToIndex: scrollToIndex, areTotalRowsNotFillingHeight: areTotalRowsNotFillingHeight, useIsScrolling: true, onScroll: handleScrollCallback, clearBackdropVisibilityTimeout: clearBackdropVisibilityTimeout, style: {
|
|
123
|
-
overflowX: isPinned ? 'hidden' : 'auto',
|
|
124
|
-
paddingBottom: isPinned ? '25px' : '13px',
|
|
125
|
-
backgroundColor: isPinned ? 'transparent' : '#F6F8FACC',
|
|
126
|
-
} }, { children: ListItemWrapper })));
|
|
127
|
-
} })) })));
|
|
128
|
-
}, [
|
|
129
|
-
itemsCount,
|
|
130
|
-
areAllRowsLoaded,
|
|
131
|
-
loadMoreItems,
|
|
132
|
-
threshold,
|
|
133
|
-
rowHeight,
|
|
134
|
-
rows,
|
|
135
|
-
pinnedStartColumnsData,
|
|
136
|
-
pinnedEndColumnsData,
|
|
137
|
-
unpinnedColumnsData,
|
|
138
|
-
isDelayedFetchingNextPage,
|
|
139
|
-
rowProps,
|
|
140
|
-
scrollToIndex,
|
|
141
|
-
lastItemIndex,
|
|
142
|
-
footerProps === null || footerProps === void 0 ? void 0 : footerProps.totalCount,
|
|
143
|
-
isError,
|
|
144
|
-
areTotalRowsNotFillingHeight,
|
|
145
|
-
selectedCell,
|
|
146
|
-
selectedColumn,
|
|
147
|
-
handleCellClick,
|
|
148
|
-
handleScroll,
|
|
149
|
-
clearBackdropVisibilityTimeout,
|
|
150
|
-
pinnedEndVirtualListRef,
|
|
151
|
-
pinnedStartVirtualListRef,
|
|
152
|
-
scrollableVirtualListRef,
|
|
153
|
-
theme.palette.background.default,
|
|
154
|
-
]);
|
|
155
|
-
const showNoDataView = tableLoading || tableError || tableEmpty || hasTimeoutError;
|
|
156
|
-
const pinnedStartColumnsWidth = useMemo(() => pinnedStartColumnsData.reduce((acc, col) => {
|
|
157
|
-
const width = typeof col.width === 'string' ? parseInt(col.width) : col.width || 100;
|
|
158
|
-
return acc + width;
|
|
159
|
-
}, 0.2), [pinnedStartColumnsData]);
|
|
160
|
-
const pinnedEndColumnsWidth = useMemo(() => pinnedEndColumnsData.reduce((acc, col) => {
|
|
161
|
-
const width = typeof col.width === 'string' ? parseInt(col.width) : col.width || 100;
|
|
162
|
-
return acc + width;
|
|
163
|
-
}, 0.2), [pinnedEndColumnsData]);
|
|
164
|
-
const renderPinnedColumn = (position, columnsData, columnsWidth, pinnedColumnsList) => {
|
|
165
|
-
const Wrapper = position === 'start' ? PinnedStartColumnWrapper : PinnedEndColumnWrapper;
|
|
166
|
-
const containerKey = position === 'start' ? 'pinnedStart' : 'pinnedEnd';
|
|
167
|
-
if (columnsData.length === 0)
|
|
168
|
-
return null;
|
|
169
|
-
return (_jsx(Wrapper, { children: _jsxs(StyledTableBox, Object.assign({ as: "main", id: "sheet-table-box-container", "aria-labelledby": "sheet-table-box-container", "data-testid": "SheetViewVirtualTable_StyledTableBox", "data-title": tableTitle, "data-direction": theme.direction, "data-are-all-rows-loaded": !!areAllRowsLoaded, "data-is-fetching-next-page": !!isFetchingNextPage, "data-scroll-to-index": scrollToIndex, "data-is-loading": !!isLoading, "data-is-error": !!isError, "data-is-error-timeout": !!hasTimeoutError, "data-show-background-color": !!showBackgroundColor, "data-table-mode": tableMode, height: "100%", dir: theme.direction, showBackgroundColor: showBackgroundColor, showNoDataView: showNoDataView }, { children: [showHeader && (_jsx(SheetViewTableHeader, { "data-testid": "SheetViewVirtualTable_PinnedTableHeader", columnsSorting: columnsSorting, onColumnSort: onColumnSort, columns: columnsData, headerProps: headerProps, showBackDrop: showBackDrop, pinnedColumns: pinnedColumnsList, onColumnPin: handleColumnPin, isPinnable: isPinnable, lastColumnId: lastColumnId, selectedColumn: selectedColumn, onColumnClick: handleColumnClick })), _jsx(TableWrapper, Object.assign({ "data-testid": "VirtualTable_TableWrapper", sx: {
|
|
170
|
-
width: '100%',
|
|
171
|
-
minWidth: 'fit-content',
|
|
172
|
-
overflowX: 'hidden',
|
|
173
|
-
} }, { children: _jsx(StyledBox, Object.assign({ "data-testid": "SheetViewVirtualTable_PinnedStyledBox", hidePadding: true, className: "list-wrapper" }, { children: createVirtualTableContainer(columnsData, containerKey, true, columnsWidth) })) }))] })) }));
|
|
174
|
-
};
|
|
175
|
-
return (_jsxs(_Fragment, { children: [_jsx(TableContainer, { children: showNoDataView ? (tableLoading ? (_jsx(StyledTableBox, Object.assign({ as: "main", id: "sheet-table-box-container", "aria-labelledby": "sheet-table-box-container", "data-testid": "SheetViewVirtualTable_StyledTableBox_Loading", "data-title": tableTitle, "data-direction": theme.direction, "data-are-all-rows-loaded": !!areAllRowsLoaded, "data-is-fetching-next-page": !!isFetchingNextPage, "data-scroll-to-index": scrollToIndex, "data-is-loading": !!isLoading, "data-is-error": !!isError, "data-is-error-timeout": !!hasTimeoutError, "data-show-background-color": !!showBackgroundColor, "data-table-mode": tableMode, height: "100%", dir: theme.direction, showBackgroundColor: showBackgroundColor, showNoDataView: showNoDataView, scrollable: true, sx: {
|
|
176
|
-
marginLeft: '28px',
|
|
177
|
-
maxHeight: 'calc(100vh - 300px)',
|
|
178
|
-
overflow: 'auto',
|
|
179
|
-
} }, { children: _jsxs(TableWrapper, Object.assign({ "data-testid": "SheetViewVirtualTable_LoadingTableWrapper", showNoDataView: showNoDataView, sx: Object.assign(Object.assign({}, tableBodyStyles), { display: 'flex', flexDirection: 'column', height: 'auto' }) }, { children: [showHeader && (_jsx(UnpinnedTableHeaderWrapper, { children: _jsx(SheetViewTableHeader, { "data-testid": "SheetViewVirtualTable_LoadingTableHeader", columnsSorting: columnsSorting, onColumnSort: onColumnSort, columns: orderedColumns, headerProps: headerProps, showBackDrop: showBackDrop, pinnedColumns: [], onColumnPin: handleColumnPin, isPinnable: false, lastColumnId: lastColumnId, selectedColumn: selectedColumn, onColumnClick: handleColumnClick }) })), _jsx(TableWrapper, Object.assign({ "data-testid": "VirtualTable_LoadingTableWrapper", sx: {
|
|
180
|
-
width: '100%',
|
|
181
|
-
minWidth: 'fit-content',
|
|
182
|
-
height: 'auto',
|
|
183
|
-
display: 'flex',
|
|
184
|
-
flexDirection: 'column',
|
|
185
|
-
} }, { children: _jsx(StyledBox, Object.assign({ "data-testid": "SheetViewVirtualTable_LoadingStyledBox", hidePadding: true, className: "list-wrapper", sx: {
|
|
186
|
-
height: 'auto',
|
|
187
|
-
display: 'flex',
|
|
188
|
-
flexDirection: 'column',
|
|
189
|
-
} }, { children: _jsx(SheetViewTableNoData, { error: error, tableEmpty: tableEmpty, isTimeoutError: hasTimeoutError, tableError: tableError, tableLoading: tableLoading, orderedColumns: orderedColumns, triggerDataRefetch: triggerDataRefetch, footerProps: footerProps }) })) }))] })) }))) : (_jsx(StyledTableBox, Object.assign({ as: "main", id: "sheet-table-box-container", "aria-labelledby": "sheet-table-box-container", "data-testid": "SheetViewVirtualTable_StyledTableBox", "data-title": tableTitle, "data-direction": theme.direction, "data-are-all-rows-loaded": !!areAllRowsLoaded, "data-is-fetching-next-page": !!isFetchingNextPage, "data-scroll-to-index": scrollToIndex, "data-is-loading": !!isLoading, "data-is-error": !!isError, "data-is-error-timeout": !!hasTimeoutError, "data-show-background-color": !!showBackgroundColor, "data-table-mode": tableMode, height: "100%", dir: theme.direction, showBackgroundColor: showBackgroundColor, showNoDataView: showNoDataView }, { children: _jsxs(TableWrapper, Object.assign({ isSheetView: true, "data-testid": "SheetViewVirtualTable_TableWrapper", showNoDataView: showNoDataView, sx: tableBodyStyles }, { children: [showHeader && (_jsx(UnpinnedTableHeaderWrapper, { children: _jsx(SheetViewTableHeader, { "data-testid": "SheetViewVirtualTable_LoadingTableHeader", columnsSorting: columnsSorting, onColumnSort: onColumnSort, columns: orderedColumns, headerProps: headerProps, showBackDrop: showBackDrop, pinnedColumns: [], onColumnPin: handleColumnPin, isPinnable: false, lastColumnId: lastColumnId, selectedColumn: selectedColumn, onColumnClick: handleColumnClick }) })), _jsx(TableNoData, { error: error, tableEmpty: tableEmpty, isTimeoutError: hasTimeoutError, tableError: tableError, tableLoading: tableLoading, orderedColumns: orderedColumns, triggerDataRefetch: triggerDataRefetch, footerProps: footerProps })] })) })))) : (_jsxs(SheetViewVirtualTableWrapper, { children: [renderPinnedColumn('start', pinnedStartColumnsData, pinnedStartColumnsWidth, pinnedStartColumns), _jsx(MainTableWrapper, Object.assign({ hasPinnedStart: pinnedStartColumnsData.length > 0, hasPinnedEnd: pinnedEndColumnsData.length > 0 }, { children: _jsx(StyledTableBox, Object.assign({ as: "main", id: "sheet-table-box-container", "aria-labelledby": "sheet-table-box-container", "data-testid": "SheetViewVirtualTable_StyledTableBox", "data-title": tableTitle, "data-direction": theme.direction, "data-are-all-rows-loaded": !!areAllRowsLoaded, "data-is-fetching-next-page": !!isFetchingNextPage, "data-scroll-to-index": scrollToIndex, "data-is-loading": !!isLoading, "data-is-error": !!isError, "data-is-error-timeout": !!hasTimeoutError, "data-show-background-color": !!showBackgroundColor, "data-table-mode": tableMode, height: "100%", dir: theme.direction, showBackgroundColor: showBackgroundColor, showNoDataView: showNoDataView, scrollable: true }, { children: _jsxs(TableWrapper, Object.assign({ "data-testid": "SheetViewVirtualTable_TableWrapper", showNoDataView: showNoDataView, sx: Object.assign(Object.assign({}, tableBodyStyles), { display: 'flex', flexDirection: 'column', height: '100%' }) }, { children: [showHeader && (_jsx(UnpinnedTableHeaderWrapper, { children: _jsx(SheetViewTableHeader, { "data-testid": "SheetViewVirtualTable_UnpinnedTableHeader", columnsSorting: columnsSorting, onColumnSort: onColumnSort, columns: unpinnedColumnsData, headerProps: headerProps, showBackDrop: showBackDrop, pinnedColumns: [...pinnedStartColumns, ...pinnedEndColumns], onColumnPin: handleColumnPin, isPinnable: isPinnable, lastColumnId: lastColumnId, selectedColumn: selectedColumn, onColumnClick: handleColumnClick }) })), _jsx(TableWrapper, Object.assign({ "data-testid": "VirtualTable_TableWrapper", sx: {
|
|
190
|
-
width: '100%',
|
|
191
|
-
minWidth: 'fit-content',
|
|
192
|
-
} }, { children: _jsx(StyledBox, Object.assign({ "data-testid": "SheetViewVirtualTable_ScrollableStyledBox", hidePadding: true, className: "list-wrapper" }, { children: createVirtualTableContainer(unpinnedColumnsData, 'scrollable', false) })) }))] })) })) })), renderPinnedColumn('end', pinnedEndColumnsData, pinnedEndColumnsWidth, [...pinnedStartColumns, ...pinnedEndColumns])] })) }), _jsx(TableFooter, Object.assign({ "data-testid": "SheetViewVirtualTable_TableFooter", showSeparator: true, showBackDrop: showBackDrop, onPointerDown: onPointerDown }, footerProps))] }));
|
|
193
|
-
}
|
|
194
|
-
export default memo(SheetViewVirtualTable);
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const VTDemo: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
-
import { useState } from 'react';
|
|
3
|
-
import { Button, VirtualTable } from '../components/index.js';
|
|
4
|
-
import { Box } from '@mui/material';
|
|
5
|
-
export const VTDemo = () => {
|
|
6
|
-
const [isSheetView, setIsSheetView] = useState(false);
|
|
7
|
-
const toggleView = () => {
|
|
8
|
-
setIsSheetView((prev) => !prev);
|
|
9
|
-
};
|
|
10
|
-
return (_jsx(Box, Object.assign({ sx: {
|
|
11
|
-
width: '100%',
|
|
12
|
-
height: '100vh',
|
|
13
|
-
overflow: 'auto',
|
|
14
|
-
flexDirection: 'row',
|
|
15
|
-
display: 'flex',
|
|
16
|
-
justifyContent: 'center',
|
|
17
|
-
p: 3,
|
|
18
|
-
backgroundColor: 'gray',
|
|
19
|
-
} }, { children: _jsxs(Box, Object.assign({ "data-testid": "ChargesList", sx: {
|
|
20
|
-
position: 'relative',
|
|
21
|
-
display: 'flex',
|
|
22
|
-
flexDirection: 'column',
|
|
23
|
-
width: '80%',
|
|
24
|
-
height: '100%',
|
|
25
|
-
} }, { children: [_jsx(Button, Object.assign({ onClick: toggleView }, { children: "Toggle" })), _jsx(VirtualTable, { showHeader: true, showFooter: true, footerProps: {
|
|
26
|
-
totalCount: 4,
|
|
27
|
-
sandboxMode: false,
|
|
28
|
-
maximized: false,
|
|
29
|
-
}, loadMoreItems: () => Promise.resolve(), isLoading: false, isFetchingNextPage: false, rows: [
|
|
30
|
-
{ index: '1', date: 'date', order: 'order' },
|
|
31
|
-
{ index: '2', date: 'date', order: 'order' },
|
|
32
|
-
{ index: '3', date: 'date', order: 'order' },
|
|
33
|
-
], areAllRowsLoaded: true, columnsSorting: { id: 'asc' }, onColumnSort: () => { }, columns: [
|
|
34
|
-
{ id: 'index', header: '', width: '28px' },
|
|
35
|
-
{
|
|
36
|
-
id: 'date',
|
|
37
|
-
header: 'Date',
|
|
38
|
-
width: '170px',
|
|
39
|
-
},
|
|
40
|
-
{
|
|
41
|
-
id: 'order',
|
|
42
|
-
header: 'Order',
|
|
43
|
-
width: '170px',
|
|
44
|
-
filter: {
|
|
45
|
-
onConfirm: undefined,
|
|
46
|
-
onClear: () => { },
|
|
47
|
-
type: 'inputs',
|
|
48
|
-
options: [
|
|
49
|
-
{
|
|
50
|
-
placeholder: 'Order',
|
|
51
|
-
apiKey: 'orderID',
|
|
52
|
-
},
|
|
53
|
-
],
|
|
54
|
-
data: {},
|
|
55
|
-
},
|
|
56
|
-
},
|
|
57
|
-
], error: null, triggerDataRefetch: () => Promise.resolve(), showBackgroundColor: false, tableTitle: "Acceptance-Charges", tableMode: 'sheet', dragControls: undefined, isSheetView: isSheetView })] })) })));
|
|
58
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { VTDemo } from './VTDemo';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { VTDemo } from './VTDemo';
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/build/components/{VirtualTable/SheetView → VirtualTables/SheetViewVirtualTable}/index.d.ts
RENAMED
|
File without changes
|
/package/build/components/{VirtualTable/SheetView → VirtualTables/SheetViewVirtualTable}/index.js
RENAMED
|
File without changes
|
/package/build/components/{VirtualTable/SheetView → VirtualTables/SheetViewVirtualTable}/style.d.ts
RENAMED
|
File without changes
|
/package/build/components/{VirtualTable → VirtualTables}/components/ColumnFilter/ColumnFilter.d.ts
RENAMED
|
File without changes
|
/package/build/components/{VirtualTable → VirtualTables}/components/ColumnFilter/ColumnFilter.js
RENAMED
|
File without changes
|
/package/build/components/{VirtualTable → VirtualTables}/components/ColumnFilter/Inputs/Inputs.d.ts
RENAMED
|
File without changes
|
/package/build/components/{VirtualTable → VirtualTables}/components/ColumnFilter/Inputs/Inputs.js
RENAMED
|
File without changes
|
/package/build/components/{VirtualTable → VirtualTables}/components/ColumnFilter/Inputs/index.d.ts
RENAMED
|
File without changes
|
/package/build/components/{VirtualTable → VirtualTables}/components/ColumnFilter/Inputs/index.js
RENAMED
|
File without changes
|
/package/build/components/{VirtualTable → VirtualTables}/components/ColumnFilter/Inputs/style.d.ts
RENAMED
|
File without changes
|
/package/build/components/{VirtualTable → VirtualTables}/components/ColumnFilter/Inputs/style.js
RENAMED
|
File without changes
|
/package/build/components/{VirtualTable → VirtualTables}/components/ColumnFilter/List/List.d.ts
RENAMED
|
File without changes
|
/package/build/components/{VirtualTable → VirtualTables}/components/ColumnFilter/List/List.js
RENAMED
|
File without changes
|
/package/build/components/{VirtualTable → VirtualTables}/components/ColumnFilter/List/index.d.ts
RENAMED
|
File without changes
|
/package/build/components/{VirtualTable → VirtualTables}/components/ColumnFilter/List/index.js
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/build/components/{VirtualTable → VirtualTables}/components/ColumnSort/ColumnSort.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/build/components/{VirtualTable → VirtualTables}/components/EmptyList/EmptyList.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/build/components/{VirtualTable → VirtualTables}/components/ErrorList/ErrorList.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/build/components/{VirtualTable → VirtualTables}/components/TableFooter/TableFooter.d.ts
RENAMED
|
File without changes
|
/package/build/components/{VirtualTable → VirtualTables}/components/TableFooter/TableFooter.js
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/build/components/{VirtualTable → VirtualTables}/components/TableHeader/TableHeader.d.ts
RENAMED
|
File without changes
|
/package/build/components/{VirtualTable → VirtualTables}/components/TableHeader/TableHeader.js
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/build/components/{VirtualTable → VirtualTables}/components/TableHeader/components/index.js
RENAMED
|
File without changes
|
/package/build/components/{VirtualTable → VirtualTables}/components/TableHeader/constant.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/build/components/{VirtualTable → VirtualTables}/components/TableRowLoadingWithCard.js
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/build/components/{VirtualTable → VirtualTables}/components/virtualScroll/index.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|