@prorobotech/openapi-k8s-toolkit 1.5.0-alpha.6 → 1.5.0-alpha.8

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.
@@ -20,6 +20,7 @@ export type TClusterListTableProps<T extends AnyObject = AnyObject> = {
20
20
  paginationPosition?: TablePaginationConfig['position'];
21
21
  isTotalLeft?: boolean;
22
22
  maxHeight?: number;
23
+ scroll?: TableProps<T>['scroll'];
23
24
  virtual?: boolean;
24
25
  disablePagination?: boolean;
25
26
  };
@@ -35,6 +35,7 @@ export type TEnrichedTableProps<T extends AnyObject = AnyObject> = {
35
35
  editIcon?: ReactNode;
36
36
  deleteIcon?: ReactNode;
37
37
  maxHeight?: number;
38
+ scroll?: TableProps<T>['scroll'];
38
39
  virtual?: boolean;
39
40
  disablePagination?: boolean;
40
41
  loadingMinHeight?: number | string;
@@ -0,0 +1,7 @@
1
+ import React, { FC } from 'react';
2
+ type TSyncedHorizontalScrollbarProps = {
3
+ tableContainerRef: React.RefObject<HTMLDivElement>;
4
+ disabled?: boolean;
5
+ };
6
+ export declare const SyncedHorizontalScrollbar: FC<TSyncedHorizontalScrollbarProps>;
7
+ export {};
@@ -0,0 +1 @@
1
+ export { SyncedHorizontalScrollbar } from './SyncedHorizontalScrollbar';
@@ -1,5 +1,5 @@
1
1
  import React, { FC, ReactNode } from 'react';
2
- import { TablePaginationConfig } from 'antd';
2
+ import { TablePaginationConfig, TableProps } from 'antd';
3
3
  import { TJSON } from '../../../../../localTypes/JSON';
4
4
  import { TAdditionalPrinterColumns } from '../../../../../localTypes/richTable';
5
5
  export type TEnrichedTableProviderProps = {
@@ -41,6 +41,7 @@ export type TEnrichedTableProviderProps = {
41
41
  editIcon?: ReactNode;
42
42
  deleteIcon?: ReactNode;
43
43
  maxHeight?: number;
44
+ scroll?: TableProps<TJSON>['scroll'];
44
45
  virtual?: boolean;
45
46
  disablePagination?: boolean;
46
47
  loadingMinHeight?: number | string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prorobotech/openapi-k8s-toolkit",
3
- "version": "1.5.0-alpha.6",
3
+ "version": "1.5.0-alpha.8",
4
4
  "description": "ProRobotech OpenAPI k8s tools",
5
5
  "main": "dist/openapi-k8s-toolkit.cjs.js",
6
6
  "module": "dist/openapi-k8s-toolkit.es.js",