@digital-ai/dot-components 4.18.0 → 4.18.1
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/index.esm.js +3 -1
- package/package.json +1 -1
package/index.esm.js
CHANGED
|
@@ -17471,7 +17471,9 @@ const DotTable = ({
|
|
|
17471
17471
|
});
|
|
17472
17472
|
});
|
|
17473
17473
|
for (let i = 0; i < (rowsPerPage ? rowsPerPage : TABLE_DEFAULT_SKELETON_ROWS); i++) {
|
|
17474
|
-
skeletonData.push(
|
|
17474
|
+
skeletonData.push(Object.assign({
|
|
17475
|
+
id: `skeleton-row-${i}`
|
|
17476
|
+
}, skeletonRow));
|
|
17475
17477
|
}
|
|
17476
17478
|
return skeletonData;
|
|
17477
17479
|
};
|