@apexcura/ui-components 0.0.16-Beta569 → 0.0.16-Beta570

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.
@@ -1,7 +1,7 @@
1
1
  import { UploadFile } from 'antd';
2
2
  import { SizeType } from 'antd/es/config-provider/SizeContext';
3
3
  import { TooltipPlacement } from 'antd/es/tooltip';
4
- import { CSSProperties } from 'react';
4
+ import { CSSProperties, JSXElementConstructor, ReactElement } from 'react';
5
5
  type PaginationType = {
6
6
  page?: number;
7
7
  pageSize?: number;
@@ -205,5 +205,6 @@ export type ElementType = {
205
205
  isTextSelect?: boolean;
206
206
  autoSize?: boolean;
207
207
  rowClick?: boolean;
208
+ dropdownRender?: (menu: ReactElement<string | JSXElementConstructor<string>>) => ReactElement<string | JSXElementConstructor<string>>;
208
209
  };
209
210
  export {};