pne-ui 3.0.93 → 3.0.94
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.
|
@@ -66,7 +66,7 @@ const AbstractTable = (props) => {
|
|
|
66
66
|
const skeletonTableHeight = showSkeleton && lastRowHeightRef.current
|
|
67
67
|
? lastHeaderHeightRef.current + lastRowHeightRef.current * skeletonRowCount
|
|
68
68
|
: undefined;
|
|
69
|
-
const SKELETON_COL_HIDDEN =
|
|
69
|
+
const SKELETON_COL_HIDDEN = 30;
|
|
70
70
|
const SKELETON_COL_NARROW = 120;
|
|
71
71
|
const skeletonCellContent = (row, col) => {
|
|
72
72
|
const colWidth = lastColumnWidthsRef.current[col];
|
|
@@ -63,7 +63,7 @@ const AbstractTable = (props) => {
|
|
|
63
63
|
const skeletonTableHeight = showSkeleton && lastRowHeightRef.current
|
|
64
64
|
? lastHeaderHeightRef.current + lastRowHeightRef.current * skeletonRowCount
|
|
65
65
|
: undefined;
|
|
66
|
-
const SKELETON_COL_HIDDEN =
|
|
66
|
+
const SKELETON_COL_HIDDEN = 30;
|
|
67
67
|
const SKELETON_COL_NARROW = 120;
|
|
68
68
|
const skeletonCellContent = (row, col) => {
|
|
69
69
|
const colWidth = lastColumnWidthsRef.current[col];
|