kelt-ui-kit-react 1.2.2 → 1.2.3

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "kelt-ui-kit-react",
3
3
  "type": "module",
4
- "version": "1.2.2",
4
+ "version": "1.2.3",
5
5
  "private": false,
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -231,6 +231,11 @@ export function DataTable<T>(props: DataTableProps<T>) {
231
231
  </table>
232
232
 
233
233
  {children}
234
+ {hasMore && (
235
+ <div ref={loaderRef} className="infinite-scroll-loader">
236
+ <Loader display={true} />
237
+ </div>
238
+ )}
234
239
  </div>
235
240
  );
236
241
  }
@@ -8,6 +8,7 @@
8
8
  margin-bottom: 1rem;
9
9
  position : sticky;
10
10
  top : 0;
11
+ background-color: #fff;
11
12
  th {
12
13
  color: #bdbaba;
13
14
  min-width: 100px;